Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to connect with WebService that in case of error return the same SOAP envelope as in case of normal operation, but sets HTTP status to "500 Internal Server Error". Then I got exception:

java.lang.IllegalArgumentException: The MessageContext does not have an associated SOAPFault.
    at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:455)
    at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:371)
    at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:417)
    at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
    at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)

When I change (on my emulator) HTTP status to 200 OK then all works fine. My InFlow and InFaultFlow are the same.

How can I set axis2 to ignore HTTP status or use normal InFlow for responses with HTTP status 5xx?

share|improve this question
Duplicate of stackoverflow.com/questions/5551705/… !! – snowflake Apr 5 '11 at 13:05
Yes, it was duplicated. I deleted one copy of my question. – Michał Niklas Apr 5 '11 at 20:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.