How to fix soapenv:Envelope issue in XSD schema while validating with SOAP request/response

前端 未结 3 1648
隐瞒了意图╮
隐瞒了意图╮ 2020-12-10 15:12

I have a SOAP request :-



        
3条回答
  •  时光说笑
    2020-12-10 16:18

    The SOAP request and response don't validate against your schema, but the SOAP schema. You can use your XSD to validate your request and response if you import the SOAP XSD into it:

    
    
        
    
    ...
    

    You don't have to do that if your instance declares a schemaLocation attribute mapping the namespaces of both schemas (yours and the SOAP schema) to their locations:

    
        
            
                The Data retrieved from the Database
                58
                fdfdf
                44
                sse
            
        
    
    

提交回复
热议问题