Hi,
SoapActionEndpointMapping receive empty SOAP header.
I send following requestCode:<bean id="endpointMapping" class="org.springframework.ws.soap.server.endpoint.mapping.SoapActionEndpointMapping"> <property name="mappings"> <props> <prop key="CreateUser">createUserEndpoint</prop> </property> </bean>
What could be a problem?Code:<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsc="http://custom/common" xmlns:ws="http://custom/user"> <soapenv:Header> <wsc:auth> <wsc:App>DFL</wsc:App> <wsc:Version>5</wsc:Version> </wsc:AutHeader> </soapenv:Header> <soapenv:Body> <ws:CreateUserInputArgs> <ws:UserData> <ws:Id>1</ws:Id> <ws:UserType>F</ws:UserType> </ws:UserDataId> </ws:UserData> </ws:CreateUserInputArgs> </soapenv:Body> </soapenv:Envelope>
I use spring-ws 1.5.9


Reply With Quote