SOAP Fault Element is not qualified with the SOAP Envelope namespace
--------------------------------------------------------------------

         Key: JUDDI-58
         URL: http://issues.apache.org/jira/browse/JUDDI-58
     Project: jUDDI
        Type: Bug
    Versions: 0.9rc1, 0.9rc2, 0.9rc3, 0.9    
    Reporter: Steve Viens
 Assigned to: Steve Viens 
     Fix For: 0.9


Okay, so you solved the problem from the jUDDI perspective -- thanks!

But the original JAXR Unmarshal exception still needs to be dealt with. jUDDI 
returned an invalid SOAP Fault -- the <Fault> element wasn't qualified. A SOAP 
Fault element must be  in the SOAP envelope namespace, and child elements 
within the fault must be unqualified.

The fault returned was:

<soapenv:Body>
        <Fault>
            <faultstring>
                ORA-01401: inserted value too large for column
            </faultstring>
        </Fault>
    </soapenv:Body>
</soapenv:Envelope>

but it should be:

<soapenv:Body>
        <soapenv:Fault>
            <faultstring>
                ORA-01401: inserted value too large for column
            </faultstring>
        </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

- Anne

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira

Reply via email to