View difference between Paste ID: THs4EtMZ and KfbNuacn
SHOW: | | - or go back to the newest paste.
1-
<service name="WS Customer">
1+
<service name="WS Customer"> // the name of your web service (you decide here what it's called)
2-
    <description>WS Customer</description>
2+
    <description>WS Customer</description> // just a description, this is fine
3-
    <parameter name="idlFile">bank.idl</parameter>
3+
    <parameter name="idlFile">bank.idl</parameter> // the idl filename
4-
    <parameter name="interfaceName">bank::CustomerWS</parameter>
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>
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>