Advertisement
andidegn

Untitled

Nov 18th, 2012
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <service name="WS Customer"> // the name of your web service (you decide here what it's called)
  2.     <description>WS Customer</description> // just a description, this is fine
  3.     <parameter name="idlFile">bank.idl</parameter> // the idl filename
  4.     <parameter name="interfaceName">bank::CustomerWS</parameter> // the syntax is >module_name::interface_name< from your idl file
  5.    <parameter name="namingServiceUrl">corbaloc::localhost:900/NameService</parameter> // the url for the naming servise, only change the port number if needed
  6.     <parameter name="objectName">bank.ctx/customerWS.service</parameter> // the complete context + servise path of your naming servise from corba if you're using naming service. otherwise you have to use the bind you make for the NS_Ref file
  7. </service>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement