Regarding the following code snippet in org.apache.axis.message.RPCElement:
protected void outputImpl(SerializationContext context) throws Exception
{
MessageContext msgContext = context.getMessageContext();
boolean isRPC = true;
if (msgContext != null &&
(msgContext.getOperationStyle() != Style.RPC) &&
(msgContext.getOperationStyle() != Style.WRAPPED)) {
isRPC = false;
}
Should that be:
if (msgContext != null &&
(msgContext.getOperationStyle() != Style.RPC) &&
(msgContext.getOperationStyle() != Style.DOCUMENT) &&
(msgContext.getOperationStyle() != Style.WRAPPED)) {
??
*******************************************
Richard A. Sitze [EMAIL PROTECTED]
CORBA Interoperability & WebServices
IBM WebSphere Development
- RE: [axis] isRPC Richard Sitze
- RE: [axis] isRPC Tom Jordahl