This seems to be caused by the Sun StubBase class is casting the response 
message to com.sun.xml.messaging.saaj.soap.MessageImpl as per the decomiled 
code snippet below:

MessageImpl response = (MessageImpl)state.getResponse().getMessage();
        if(!useFastInfoset() && response.isFastInfoset())
            _properties.put("com.sun.xml.rpc.client.ContentNegotiation", 
"optimistic");

Since JBoss uses an axis message factory the response message is in fact not an 
instance of MessageImpl but rather org.jboss.axis.Message. Seems to be a very 
presumptuous cast and all itisdoing isattempting to use FastInfoSet.

I've yet to find a work around, as this code is part of Sun'sJAX-RPC 
implementation and the stubs are generated by the developers kit.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3935332#3935332

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3935332


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to