| At line 26 added 41 lines. |
| !!Sample - WSDL deploy and NameService |
| In this example the binding component is deployed using the WSDL file and the localizationType is NameService. |
| {{{ |
| <wsdl:binding name="EchoWSDLJBIPortBinding" type="tns:EchoWSDLPortType"> |
| <imolacorba:binding> |
| <imolacorba:idl> |
| ... the idl file content. |
| </imolacorba:idl> |
| </imolacorba:binding> |
| [...] |
| </wsdl:binding> |
| <wsdl:service name="EchoWSDL"> |
| <wsdl:port binding="tns:EchoWSDLJBIPortBinding" name="EchoWSDLJBIPort"> |
| <imolacorba:address name="ServantTestSimpleWsdl" localizationType="NameService"> |
| <imolacorba:orb> |
| <imolacorba:property name="org.omg.CORBA.ORBInitialPort" value="1050"/> |
| <imolacorba:property name="org.omg.CORBA.ORBInitialHost" value="localhost"/> |
| </imolacorba:orb> |
| </imolacorba:address> |
| </wsdl:port> |
| </wsdl:service> |
| }}} |
| !!Sample - WSDL deploy and IOR |
| In this example the binding component is deployed using the WSDL file and the localizationType is IOR. (The servant can avoid the registration in the NameService) |
| {{{ |
| [...] |
| <wsdl:service name="EchoIorWSDL"> |
| <wsdl:port binding="tns:EchoIorWSDLJBIPortBinding" name="EchoIorWSDLJBIPort"> |
| <imolacorba:address localizationType="IOR" name="c:/wolv/EchoIorWsdlImpl.txt" /> |
| </wsdl:port> |
| </wsdl:service> |
| }}} |