Нераспознанное значение HTTP-заголовка SOAPAction с SOAP-WS - PullRequest
0 голосов
/ 24 мая 2018

Я пытаюсь использовать веб-сервис SOAP, связанный со сторонним сервером бронирования.

Вот рабочий запрос (протестирован с SOAPUI):

    <?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Header>
  <OGHeader transactionID="SomeID" primaryLangID="E"
   timeStamp="SomeTimeStamp" channelValidation="false"
   timeStampSpecified="true" xmlns="http://webservices.****">
   <Origin entityID="****" systemType="****" />
   <Destination entityID="***" systemType="**" />
   <Authentication>
    <UserCredentials>
     <UserName>*****</UserName>
     <UserPassword>*****</UserPassword>
     <Domain>***</Domain>
    </UserCredentials>
   </Authentication>
  </OGHeader>
 </soapenv:Header>
 <soapenv:Body>
  <FutureBookingSummaryRequest
   canHandleVaultedCreditCard="true"
   xmlns="*****.wsdl">
   <AdditionalFilters GetList="true"
    IncludePseudoRoom="false" ReservationDisposition="***"
    ReservationStatus="RESERVED">
    <ns1:HotelReference hotelCode="******"
     xmlns:ns1="http://webservices.****" />
   </AdditionalFilters>
  </FutureBookingSummaryRequest>
 </soapenv:Body>
</soapenv:Envelope>

После генерациинеобходимые пакеты из WSDL. Я создал SOAP-клиент следующим образом:

public class GloriaWClient {
    private static final Logger log = LoggerFactory.getLogger(GloriaWClient.class);

    public void getFutureBooking() {
        FutureBookingSummaryRequest futurebookingrequest = new FutureBookingSummaryRequest();
        /********** Setting the BookingFilters ****************************/
        FetchBookingFilters booking_filters = new FetchBookingFilters();
        booking_filters.setGetList(true);
        booking_filters.setIncludePseudoRoom(false);
        booking_filters.setReservationDisposition(ReservationDispositionType.***);
        booking_filters.setReservationStatus(ReservationStatusType.***);
        /************************** HotelReference ****************************/
        HotelReference hotelReference = new HotelReference();
        hotelReference.setHotelCode("***");
        booking_filters.setHotelReference(hotelReference);
        /****************************** REQUEST ********************************/
        futurebookingrequest.setCanHandleVaultedCreditCard(true);
        futurebookingrequest.setAdditionalFilters(booking_filters);

        log.info("Requesting future booking");


        try {
            SaajSoapMessageFactory messageFactory = new SaajSoapMessageFactory(MessageFactory.newInstance());

                /******* Adding the SOAP Header ****/

            messageFactory.afterPropertiesSet();
            WebServiceTemplate webServiceTemplate = new WebServiceTemplate(messageFactory);
            Jaxb2Marshaller marshaller = new Jaxb2Marshaller();

            marshaller.setContextPath("com.GeneratedPackage's name");
            marshaller.afterPropertiesSet();

            webServiceTemplate.setMarshaller(marshaller);
            webServiceTemplate.setUnmarshaller(marshaller);
            webServiceTemplate.afterPropertiesSet();

            FutureBookingSummaryResponse response = (FutureBookingSummaryResponse) webServiceTemplate
                    .marshalSendAndReceive("https://***********.asmx",
                            futurebookingrequest, new WebServiceMessageCallback() {
                                @Override
                                public void doWithMessage(WebServiceMessage message) throws IOException, TransformerException{
                                    try {
                                        // Setting header values
                                        OGHeader ogHeader = new OGHeader();
                                        ogHeader.setTransactionID("****");
                                        ogHeader.setPrimaryLangID("**");     
                                       ogHeader.setChannelValidation(false);        
                                        log.debug("Created ogHeader");
                                        OGHeaderAuthentication ogHeaderAuth = new OGHeaderAuthentication();
                                        OGHeaderAuthenticationUserCredentials ogHeaderAuthUserCredentials = new OGHeaderAuthenticationUserCredentials();
                                        ogHeaderAuthUserCredentials.setUserName("******");
                                        ogHeaderAuthUserCredentials.setUserPassword("****");
                                        ogHeaderAuthUserCredentials.setDomain("***");
                                        ogHeaderAuth.setUserCredentials(ogHeaderAuthUserCredentials);
                                        ogHeader.setAuthentication(ogHeaderAuth);
                                        // get the header from the SOAP message
                                        SoapHeader soapHeader = ((SoapMessage) message).getSoapHeader();
                                        log.debug("Got header from the SOAP message");

                                        // create the header element
                                        ObjectFactory factory = new ObjectFactory();
                                        OGHeader futureBookingsummarySoapHeaders = factory.createOGHeader();                                    futureBookingsummarySoapHeaders.setAuthentication(ogHeaderAuth);
                                        JAXBElement<OGHeader> headers = factory                                         .createOGHeader(futureBookingsummarySoapHeaders);
                                        log.debug("Header element created");
                                        // create a marshaller
                                        JAXBContext context = JAXBContext.newInstance(OGHeader.class);
                                        Marshaller marshaller = context.createMarshaller();
                                        log.debug("Marshaller created");
                                        // marshal the headers into the specified result
                                        marshaller.marshal(headers, soapHeader.getResult());
                                    } catch (Exception e) {
                                        log.error("error during marshalling of the SOAP headers", e);
                                    }
                                }
                            });
            FutureBookingSummaryResponse msg = (FutureBookingSummaryResponse) response; 
        } catch (Exception s) {
            s.printStackTrace();
        }
    }
}

Обратите внимание, что я обязательно установил соответствующие атрибуты Body & header.

выполнение этого клиента выдает это :

org.springframework.ws.soap.client.SoapFaultClientException: Сервер не распознал значение HTTP-заголовка SOAPAction: в org.springframework.ws.soap.client.core...client.core.WebServiceTemplate.(WebServiceTemplate.java:390) на com.lbc.migration.GloriaClient.GloriaWClient.getFutureBooking (GloriaWClient.java:104) на com.lbc.migration.main.main (main.java:16)

Любая ИДЕЯ?или Любой связанный пример создания SOAP-клиента Spring boot с таким заголовком ??

1 Ответ

0 голосов
/ 25 мая 2018

Вам не хватает заголовка SOAPAction, как показано в вашей ошибке.

SOAPAction - заголовок HTTP и отличается от заголовка SOAPEnvelope.

WSDL должен иметь определение SOAPAction что-тонапример,

<soap1:operation style="document" soapAction="petition"

Идет в заголовке HTTP, не в заголовке SOAPEnvelope, как вы упомянули в конверте запроса.

Заголовок HTTP будет выглядеть примерно такниже в TCPMONitor

POST /StockQuote HTTP/1.1
Content-Type: text/xml; charset="utf-8"
Content-Length: nnnn
SOAPAction: "petition"

Должно быть установлено что-то вроде -

 webServiceTemplate.marshalSendAndReceive(o, new WebServiceMessageCallback() {

public void doWithMessage(WebServiceMessage message) {
    ((SoapMessage)message).setSoapAction("http://tempuri.org/Action");
}});
...