2017-10-04 3 views
0

웹 서버가 HTTP 400 (잘못된 요청)을 반환할지 아니면 단순히 SOAP 오류 메시지를 반환할지 여부를 지정하는 특정 사양이 있습니까? SOAP 요청.SOAP 오류 대 HTTP 400

<namespace:elem ..... 

답변

0
이 같은 XML 요소와 대신 직접

<soapenv:Envelope>.... 
<soapenv:Header>... 
<soapenv:Body>... 

을하지만 :이 경우에 "나쁜 SOAP 요청은"SOAP 요소의 일반적인 트리플로 시작하지 않는 유효한 XML 문서를 의미

현재로서는 공식을 찾을 수 없습니다. XML에 이상이있을 경우 경험에 따라 400 HTTP가 표시되고 SOAP 메시지에 올바른 값이없는 경우 SOAP 오류 메시지가 표시됩니다.

HTTP를 기억하는 한 가지 사실은 SOAP 서비스에서 사용되는 하나의 프로토콜입니다. 원하는 경우 STMP (전자 메일) 또는 다른 프로토콜을 통해 SOAP 서비스를 실행할 수 있습니다. HTTP는 단지 전송 일뿐입니다. 따라서 이러한 특정 HTTP를 표준 문서에 포함시키는 것은 필요하지 않습니다. HTTP 400 in SOAP 용어는 정말 나쁜 메시지 전달이 불가능하다는 것을 의미합니다.

예를 들어 다음과 같은 잘못된 XML이 HTTP 400 주어야한다 : 내 메시지 아래의 예에서

<nonsense> <!-- opening tag with no closing tag--> 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ecol="http://www.blahblahablha"> 
<soapenv:Header/> 
    <soapenv:Body> 
     <ecol:GetDatabaseConnectionInfo/> 
    </soapenv:Body> 
</soapenv:Envelope> 

하면 XML이 제대로 형성되기 때문에 결함 그러나입니다 ?의 값을 갖는 GUID를 가지고 SOAP 오류 메시지에 메시지가 반환됩니다.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ec="http://www.blahablha.au/foo" xmlns:irix="http://www.blahblah/IRIX_Headers_V1" xmlns:irix1="http://schemas.datacontract.org/2004/07/IRIXContract.MsgHeaderBase"> 
    <soapenv:Header/> 
    <soapenv:Body> 
     <ec:GetAccountActiveArrangement> 
     <ec:GetAccountActiveArrangementReq> 
     <irix:MsgReqHdr> 
      <!--Optional:--> 
      <irix:MsgGUID>?</irix:MsgGUID> 
      <!--Optional:--> 
      <irix:MsgDateTime>?</irix:MsgDateTime> 
      <!--Optional:--> 
      <irix:SecCredInfo> 
       <!--Optional:--> 
       <irix:IRIXUserID>?</irix:IRIXUserID> 
       <!--Optional:--> 
       <irix:IRIXPassword>?</irix:IRIXPassword> 
       <!--Optional:--> 
       <irix:AuthToken>?</irix:AuthToken> 
       <!--Optional:--> 
       <irix:ConsumerSystemID>?</irix:ConsumerSystemID> 
      </irix:SecCredInfo> 
     </irix:MsgReqHdr> 
     <ec:accountNumber>70001</ecol:accountNumber> 

    </ec:GetAccountActiveArrangement> 
    </soapenv:Body> 
</soapenv:Envelope> 

전송 중이 다음과 같은 오류가 발생합니다

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> 
    <s:Body> 
    <s:Fault> 
     <faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:DeserializationFailed</faultcode> 
     <faultstring xml:lang="en-AU">The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://www.blah blah/ECollNXDB_V1:GetAccountActiveArrangementReq. The InnerException message was 'There was an error deserializing the object of type IRIXNXSoapServices.Message.Operations.Account.Get.GetAccountActiveArrangementReqV1. The value '?' cannot be parsed as the type 'Guid'.'. Please see InnerException for more details.</faultstring> 
    <detail> 
     <ExceptionDetail xmlns="http://schemas.datacontract.org/2004/07/System.ServiceModel" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> 
      <HelpLink i:nil="true"/> 
      <InnerException> 
       <HelpLink i:nil="true"/> 
       <InnerException> 
       <HelpLink i:nil="true"/> 
       <InnerException> 
        <HelpLink i:nil="true"/> 
        <InnerException i:nil="true"/> 
        <Message>Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).</Message> 

이 표준 동작입니다.