7

数年前に開始したプロジェクトに再び取り組み始めました (コードはここで入手できます: http://code.google.com/p/mipnp/ )。メディアを xbox 360 にストリーミングできる UPnP メディアサーバーです。

UPnP の SOAP 部分には、Apache CXF を使用しました。CXF バージョン 2.4.8 では、すべて正常に動作します。しかし、CXF バージョン 2.4.9 (またはそれ以降) に更新しようとすると、次の例外が発生します。

WARNING: Interceptor for {urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1}MediaReceiverRegistrarService#{urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1}IsAuthorized has thrown exception, unwinding now
org.apache.cxf.interceptor.Fault: The given SOAPAction urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1#IsAuthorized does not match an operation.
  at org.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor$SoapActionInAttemptTwoInterceptor.handleMessage(SoapActionInInterceptor.java:188)
  at org.apache.cxf.binding.soap.interceptor.SoapActionInInterceptor$SoapActionInAttemptTwoInterceptor.handleMessage(SoapActionInInterceptor.java:162)
  at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:263)
  at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121)
  at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:207)
  at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:209)
  at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:191)
  at org.apache.cxf.transport.servlet.CXFNonSpringServlet.invoke(CXFNonSpringServlet.java:114)
  at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:185)
  at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doPost(AbstractHTTPServlet.java:108)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:755)
  at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:164)
  at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:669)
  at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1336)
  at com.googlecode.mipnp.upnp.ServerHeaderFilter.doFilter(ServerHeaderFilter.java:60)
  at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1307)
  at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:453)
  at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:229)
  at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1072)
  at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:382)
  at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
  at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1006)
  at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
  at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
  at org.eclipse.jetty.server.Server.handle(Server.java:365)
  at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:485)
  at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:937)
  at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:998)
  at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:856)
  at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
  at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
  at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:628)
  at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
  at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
  at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
  at java.lang.Thread.run(Thread.java:722)

SOAP リクエストは次のようになります。

POST /control/x_ms_mediareceiverregistrar HTTP/1.1
User-Agent: Xbox/2.0.16202.0 UPnP/1.0 Xbox/2.0.16202.0
Connection: Keep-alive
Host:192.168.1.11:34331
SOAPACTION: "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1#IsAuthorized"
CONTENT-TYPE: text/xml; charset="utf-8"
Content-Length: 304

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
   <s:Body>
      <u:IsAuthorized xmlns:u="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1">
         <DeviceID></DeviceID>
      </u:IsAuthorized>
   </s:Body>
</s:Envelope>

「u」名前空間にない「DeviceID」パラメーターに関係があると思います。しかし、私は修正や回避策を見つけることができないようです.

これは私がWebサービスを作成する方法です:

/*
 * MediaReceiverRegistrar.java
 * Created on Jun 30, 2011, 4:00:45 PM
 */
package com.googlecode.mipnp.mediaserver;

import com.googlecode.mipnp.upnp.ServiceImpl;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.xml.ws.Holder;

@WebService(
        portName="X_MS_MediaReceiverRegistrar",
        targetNamespace="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1")
public class MediaReceiverRegistrar extends ServiceImpl {

    @WebMethod(operationName="IsAuthorized")
    public void isAuthorized(
            @WebParam(name="DeviceID")
            String deviceId,
            @WebParam(name="Result", mode=WebParam.Mode.OUT)
            Holder<Integer> result) {

        result.value = 1;
    }
}

(ここで完全なコードを見つけることができます)

wsdl は次のようになります。

<?xml version='1.0' encoding='UTF-8'?><wsdl:definitions name="MediaReceiverRegistrarService" targetNamespace="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <wsdl:types>
<xs:schema elementFormDefault="unqualified" targetNamespace="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1" version="1.0" xmlns:tns="urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="IsAuthorized" type="tns:IsAuthorized"/>
<xs:element name="IsAuthorizedResponse" type="tns:IsAuthorizedResponse"/>
<xs:element name="IsValidated" type="tns:IsValidated"/>
<xs:element name="IsValidatedResponse" type="tns:IsValidatedResponse"/>
<xs:element name="RegisterDevice" type="tns:RegisterDevice"/>
<xs:element name="RegisterDeviceResponse" type="tns:RegisterDeviceResponse"/>
<xs:element name="getIdAsUrn" type="tns:getIdAsUrn"/>
<xs:element name="getIdAsUrnResponse" type="tns:getIdAsUrnResponse"/>
<xs:element name="getTypeAsUrn" type="tns:getTypeAsUrn"/>
<xs:element name="getTypeAsUrnResponse" type="tns:getTypeAsUrnResponse"/>
<xs:complexType name="getTypeAsUrn">
    <xs:sequence/>
  </xs:complexType>
<xs:complexType name="getTypeAsUrnResponse">
    <xs:sequence>
      <xs:element minOccurs="0" name="return" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="IsValidated">
    <xs:sequence>
      <xs:element minOccurs="0" name="DeviceID" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="IsValidatedResponse">
    <xs:sequence>
      <xs:element minOccurs="0" name="Result" type="xs:int"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="IsAuthorized">
    <xs:sequence>
      <xs:element minOccurs="0" name="DeviceID" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="IsAuthorizedResponse">
    <xs:sequence>
      <xs:element minOccurs="0" name="Result" type="xs:int"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="getIdAsUrn">
    <xs:sequence/>
  </xs:complexType>
<xs:complexType name="getIdAsUrnResponse">
    <xs:sequence>
      <xs:element minOccurs="0" name="return" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="RegisterDevice">
    <xs:sequence>
      <xs:element minOccurs="0" name="RegistrationReqMsg" type="xs:base64Binary"/>
    </xs:sequence>
  </xs:complexType>
<xs:complexType name="RegisterDeviceResponse">
    <xs:sequence>
      <xs:element minOccurs="0" name="RegistrationRespMsg" type="xs:base64Binary"/>
    </xs:sequence>
  </xs:complexType>
</xs:schema>
  </wsdl:types>
  <wsdl:message name="RegisterDeviceResponse">
    <wsdl:part element="tns:RegisterDeviceResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="getTypeAsUrnResponse">
    <wsdl:part element="tns:getTypeAsUrnResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="IsValidatedResponse">
    <wsdl:part element="tns:IsValidatedResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="getIdAsUrnResponse">
    <wsdl:part element="tns:getIdAsUrnResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="getIdAsUrn">
    <wsdl:part element="tns:getIdAsUrn" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="getTypeAsUrn">
    <wsdl:part element="tns:getTypeAsUrn" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="RegisterDevice">
    <wsdl:part element="tns:RegisterDevice" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="IsValidated">
    <wsdl:part element="tns:IsValidated" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="IsAuthorizedResponse">
    <wsdl:part element="tns:IsAuthorizedResponse" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="IsAuthorized">
    <wsdl:part element="tns:IsAuthorized" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:portType name="MediaReceiverRegistrar">
    <wsdl:operation name="getTypeAsUrn">
      <wsdl:input message="tns:getTypeAsUrn" name="getTypeAsUrn">
    </wsdl:input>
      <wsdl:output message="tns:getTypeAsUrnResponse" name="getTypeAsUrnResponse">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="IsValidated">
      <wsdl:input message="tns:IsValidated" name="IsValidated">
    </wsdl:input>
      <wsdl:output message="tns:IsValidatedResponse" name="IsValidatedResponse">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="IsAuthorized">
      <wsdl:input message="tns:IsAuthorized" name="IsAuthorized">
    </wsdl:input>
      <wsdl:output message="tns:IsAuthorizedResponse" name="IsAuthorizedResponse">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getIdAsUrn">
      <wsdl:input message="tns:getIdAsUrn" name="getIdAsUrn">
    </wsdl:input>
      <wsdl:output message="tns:getIdAsUrnResponse" name="getIdAsUrnResponse">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="RegisterDevice">
      <wsdl:input message="tns:RegisterDevice" name="RegisterDevice">
    </wsdl:input>
      <wsdl:output message="tns:RegisterDeviceResponse" name="RegisterDeviceResponse">
    </wsdl:output>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="MediaReceiverRegistrarServiceSoapBinding" type="tns:MediaReceiverRegistrar">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="getTypeAsUrn">
      <soap:operation soapAction="" style="document"/>
      <wsdl:input name="getTypeAsUrn">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="getTypeAsUrnResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="IsValidated">
      <soap:operation soapAction="" style="document"/>
      <wsdl:input name="IsValidated">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="IsValidatedResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="IsAuthorized">
      <soap:operation soapAction="" style="document"/>
      <wsdl:input name="IsAuthorized">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="IsAuthorizedResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="getIdAsUrn">
      <soap:operation soapAction="" style="document"/>
      <wsdl:input name="getIdAsUrn">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="getIdAsUrnResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="RegisterDevice">
      <soap:operation soapAction="" style="document"/>
      <wsdl:input name="RegisterDevice">
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output name="RegisterDeviceResponse">
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="MediaReceiverRegistrarService">
    <wsdl:port binding="tns:MediaReceiverRegistrarServiceSoapBinding" name="X_MS_MediaReceiverRegistrar">
      <soap:address location="http://192.168.1.11:54802/control/x_ms_mediareceiverregistrar"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

CXF バージョン 2.4.9 からセキュリティ対策が強化されたとどこかで読んだので、次の行を追加してみました。

@EndpointProperty(key="soap.no.validate.parts", value="true")

しかし、それは違いはありません。

4

3 に答える 3

12

問題は、wsdl に次のものがあることです。

<soap:operation soapAction="" style="document"/>

しかし、リクエストは送信しています:

SOAPACTION: "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1#IsAuthorized"

いくつかのオプションがあります。

1) WSDL を更新して、その文字列を soapAction として含め、すべてのコードなどを再生成することができます。

2) 要求ヘッダーから soapAction を削除する (または wsdl 状態のように "" に設定する) CXF インターセプターを作成できます。

于 2012-12-17T17:28:03.387 に答える
0

私はずっと前に同じ問題を抱えていました、私は追加しようとしました

@EndpointProperty(key="soap.no.validate.parts", value="true")

しかし、それは役に立ちません。私の場合、消費していたWebサービスを所有しておらず、そのWebサービスの応答がWSDLのルールに従っていないため、このようなインターセプターで応答を変更して終了しました1:

/*インターセプタークラス*/

public class MyInterceptor extends AbstractPhaseInterceptor {

private static final Logger logger = Logger.getLogger(MyInterceptor.class);

public MyInterceptor() {
    super(Phase.RECEIVE);
}

@Override
public void handleMessage(Message message) throws Fault {
    logger.info("TCP-InterceptandoMensaje");
    message.put(Message.ENCODING, "UTF-8");
    InputStream is = message.getContent(InputStream.class);

    if(is!=null){
        CachedOutputStream bos = new CachedOutputStream();
        try{
            IOUtils.copy(is, bos);
            String soapMessage = new String(bos.getBytes());
            logger.info("-------------------------------------------");
            logger.info("TCP-SoapMsgRecibido[" + soapMessage +"]");
            logger.info("-------------------------------------------");
            bos.flush();
            message.setContent(InputStream.class, is);

            is.close();
            InputStream inputStream = new ByteArrayInputStream(removeBody(soapMessage).getBytes());
            message.setContent(InputStream.class, inputStream);
            bos.close();
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }
    }
}

private String removeBody(String msg) {
    StringBuffer soapMsg = new StringBuffer();
    if (msg.contains("Reason")) {
        if (msg.contains("TarjetaCreditoConsultaDetalle_Req")) {
            soapMsg.append(msg.substring(0, msg.indexOf("<NS1:Body>")));
            soapMsg.append("<NS1:Body>");
            soapMsg.append("<NS2:TarjetaCreditoConsultaDetalle_Resp xmlns:NS2=\"http://www.bi.com.gt/esb/services/TarjetaCredito\">");
            soapMsg.append("<InfoTrx>");
            soapMsg.append("<IdTrx>000000000000000000000000</IdTrx>");
            soapMsg.append("<Canal>000</Canal>");
            soapMsg.append("<PaisOperacion>000</PaisOperacion>");
            soapMsg.append("<BancoOperacion>0</BancoOperacion>");
            soapMsg.append("<PaisDestino>000</PaisDestino>");
            soapMsg.append("<BancoDestino>0</BancoDestino>");
            soapMsg.append("<FechaTrx>00000000</FechaTrx>");
            soapMsg.append("<HoraTrx>000000</HoraTrx>");
            soapMsg.append("<IdCliente/>");
            soapMsg.append("<CodOpWeb/>");
            soapMsg.append("<CodEmpresa/>");
            soapMsg.append("<TotPags>000</TotPags>");
            soapMsg.append("<CodRetorno>000</CodRetorno>");
            soapMsg.append("</InfoTrx>");
            soapMsg.append("<Datos>");
            soapMsg.append("<Producto>0</Producto>");
            soapMsg.append("<NumProducto>0000000000000000</NumProducto>");
            soapMsg.append("<NombreCuenta> </NombreCuenta>");
            soapMsg.append("<Moneda>USD</Moneda>");
            soapMsg.append("<Estado>00000000</Estado>");
            soapMsg.append("<SaldoLocal>0.00</SaldoLocal>");
            soapMsg.append("<SaldoDispLocal>0.00</SaldoDispLocal>");
            soapMsg.append("<SaldoInter>0.00</SaldoInter>");
            soapMsg.append("<SaldoDispInter>0.00</SaldoDispInter>");
            soapMsg.append("<DirCorrespond> </DirCorrespond>");
            soapMsg.append("<FechaCorte>00000000</FechaCorte>");
            soapMsg.append("<FechaProxPago>00000000</FechaProxPago>");
            soapMsg.append("<SobreGiroAutLocal>0.00</SobreGiroAutLocal>");
            soapMsg.append("<SobreGiroAutInter>0.00</SobreGiroAutInter>");
            soapMsg.append("<FecUltCambioEstado>00000000</FecUltCambioEstado>");
            soapMsg.append("<FecUltMov>00000000</FecUltMov>");
            soapMsg.append("<FecUltAbono>00000000</FecUltAbono>");
            soapMsg.append("<PagoMinLocal>0.00</PagoMinLocal>");
            soapMsg.append("<PagoContLocal>0.00</PagoContLocal>");
            soapMsg.append("<PagoMinInter>0.00</PagoMinInter>");
            soapMsg.append("<PagoContInter>0.00</PagoContInter>");
            soapMsg.append("<LimiteAutLocal>0.00</LimiteAutLocal>");
            soapMsg.append("<LimiteAutInter>0.00</LimiteAutInter>");
            soapMsg.append("<Seguros>");
            soapMsg.append("<SegTCSalva>1</SegTCSalva>");
            soapMsg.append("<SegCobInt/>");
            soapMsg.append("<SegVida/>");
            soapMsg.append("<SegFourSeason/>");
            soapMsg.append("</Seguros>");
            soapMsg.append("<MontoTrxLocalDeb>0.00</MontoTrxLocalDeb>");
            soapMsg.append("<MontoTrxLocalCred>0.00</MontoTrxLocalCred>");
            soapMsg.append("<SaldoMaxVenc>0.00</SaldoMaxVenc>");
            soapMsg.append("<MontoExtrafAutLocal>0.00</MontoExtrafAutLocal>");
            soapMsg.append("<MontoExtrafAutInter>0.00</MontoExtrafAutInter>");
            soapMsg.append("<MontoTrxInterDeb>0.00</MontoTrxInterDeb>");
            soapMsg.append("<MontoTrxInterCred>0.00</MontoTrxInterCred>");
            soapMsg.append("</Datos>");
            soapMsg.append("</NS2:TarjetaCreditoConsultaDetalle_Resp>");
            soapMsg.append("</NS1:Body>");
            soapMsg.append("</NS1:Envelope>");            
        } else
            soapMsg.append(msg);
    } else
        soapMsg.append(msg);
    logger.info("EditedSoapMsg["+soapMsg+"]");
    return soapMsg.toString();
}`

私の春の設定は次のようになります:

<bean id="tcPaymentServiceInterceptor" class="com.foo.bar.ws.interceptors.TcPaymentServiceInterceptor"/>

<bean id="cxf" class="org.apache.cxf.bus.spring.SpringBus">
    <property name="inInterceptors">
        <list>
            <ref bean="tcPaymentServiceInterceptor"/>
        </list>
    </property>
</bean>

これが同じ問題を抱えている人に役立つことを願っています。

于 2013-11-24T00:24:08.960 に答える