You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juddi.apache.org by "Steve Viens (JIRA)" <ju...@ws.apache.org> on 2005/03/01 04:45:48 UTC

[jira] Created: (JUDDI-58) SOAP Fault Element is not qualified with the SOAP Envelope namespace

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


[jira] Commented: (JUDDI-58) SOAP Fault Element is not qualified with the SOAP Envelope namespace

Posted by "Steve Viens (JIRA)" <ju...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/JUDDI-58?page=comments#action_59927 ]
     
Steve Viens commented on JUDDI-58:
----------------------------------

Generation of SOAP Fault when an exception was thrown was messy. To be perfectly honest exception handling in general was messy and had a few holes.  The fix posted today should clear this issue up and likely a half-dozen other issues that haven't been detected or reported yet.

> 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
>     Assignee: 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


[jira] Closed: (JUDDI-58) SOAP Fault Element is not qualified with the SOAP Envelope namespace

Posted by "Steve Viens (JIRA)" <ju...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/JUDDI-58?page=history ]
     
Steve Viens closed JUDDI-58:
----------------------------


Closed.

> 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
>     Assignee: 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


[jira] Resolved: (JUDDI-58) SOAP Fault Element is not qualified with the SOAP Envelope namespace

Posted by "Steve Viens (JIRA)" <ju...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/JUDDI-58?page=history ]
     
Steve Viens resolved JUDDI-58:
------------------------------

    Resolution: Fixed

Fixed.

> 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
>     Assignee: 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