Results 1 to 2 of 2

Thread: Weblogic(10.3.3) - Soap Fault Problem (Maybe SAAJ)

  1. #1
    Join Date
    Jan 2006
    Posts
    15

    Default Weblogic(10.3.3) - Soap Fault Problem (Maybe SAAJ)

    Hi to everyone,

    I am using spring web services on client side. When I run my code on development env(only with main class, or jetty), SoapFault includes every detail.
    (SoapFaultClientException)e.getSoapFault().getFaul tCode().getLocalPart() = BUS001

    But on test env (Weblogic 10.3.3), FaultCode is null.
    (SoapFaultClientException)e.getSoapFault().getFaul tCode() = null

    I have tested with same response message by using soapui on dev env. I think this is looks like SAAJ problem. What I have to do? Please help me.

    Thnks.
    Ramazan

  2. #2
    Join Date
    Jan 2006
    Posts
    15

    Default

    Hi,

    for further help,

    I have solved this problem by using new version of SAAJ (saaj-impl-1.3.2.jar), I have defined this version at weblogic-application.xml document.

    Code:
    <wls:prefer-application-packages>
    	<wls:package-name>com.sun.xml.messaging.saaj.*</wls:package-name>
    </wls:prefer-application-packages>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •