tags:

views:

362

answers:

1

I'm having some problems regarding the SoapActionEndpointMapping and are wondering if it could be related to the format of the property. The API says that the mapping is

SOAP_ACTION=ENDPOINT_BEAN_NAME

with the example

http://www.springframework.org/spring-ws/samples/airline/GetFlights=getFlightsEndpoint

Am I correct assuming that "http://www.springframework.org/spring-ws/samples/airline/" is the namespace and "GetFligths" is the soapAction?

A: 

No, SOAP actions are just URI strings, so you need to populate the handler mapping with a propertyset of URI keys to endpoint beans/names.

skaffman