Use IOR supplied in SOAP request to get Corba object
----------------------------------------------------
Key: AXIS2-4452
URL: https://issues.apache.org/jira/browse/AXIS2-4452
Project: Axis 2.0 (Axis2)
Issue Type: New Feature
Components: corba
Affects Versions: 1.5
Reporter: Bas Claessen
Currently the corba module is always looking up the Corba object using the name
service when executing a Corba method.
It would be very nice when you can also supply the IOR of the Corba object in
the SOAP request.
When this IOR is present, the Corba service is not using the name service to
get a Corba object, but will use the Corba object identified by the IOR.
Pseudo code:
if (iorStringInSoapMessage == null)
{
obj=CorbaUtil.resolveObject(service, orb);
}
else
{
obj=orb.string_to_object(iorStringInSoapMessage);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.