我再次开始从事几年前开始的项目(此处提供代码:http://code.google.com/p/mipnp/)。 它是一个 UPnP 媒体服务器,可以将媒体流式传输到 xbox 360。
对于 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”参数有关。 但我似乎找不到修复或解决方法。
这就是我创建网络服务的方式:
/*
* 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;
}
}
(你可以找到完整的代码 here )
这就是 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")
但这并没有什么不同。
最佳答案
问题是 wsdl 有:
<soap:operation soapAction="" style="document"/>
但是请求正在发送:
SOAPACTION: "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1#IsAuthorized"
有几个选项:
1) 您可以更新 WSDL 以将该字符串包含为 soapAction 并重新生成所有代码等。
2) 您可以编写一个 CXF 拦截器,从请求 header 中删除 soapAction(或将其设置为“”,如 wsdl 状态)
关于java - Apache CXF - 给定的 SOAPAction 与操作不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13902874/
在我的应用程序中,我需要能够找到所有数字子字符串,然后扫描每个子字符串,找到第一个匹配范围(例如5到15之间)的子字符串,并将该实例替换为另一个字符串“X”。我的测试字符串s="1foo100bar10gee1"我的初始模式是1个或多个数字的任何字符串,例如,re=Regexp.new(/\d+/)matches=s.scan(re)给出["1","100","10","1"]如果我想用“X”替换第N个匹配项,并且只替换第N个匹配项,我该怎么做?例如,如果我想替换第三个匹配项“10”(匹配项[2]),我不能只说s[matches[2]]="X"因为它做了两次替换“1fooX0barXg
如何匹配未被反斜杠转义的平衡定界符对(其本身未被反斜杠转义)(无需考虑嵌套)?例如对于反引号,我试过了,但是转义的反引号没有像转义那样工作。regex=/(?!$1:"how\\"#expected"how\\`are"上面的正则表达式不考虑由反斜杠转义并位于反引号前面的反斜杠,但我愿意考虑。StackOverflow如何做到这一点?这样做的目的并不复杂。我有文档文本,其中包括内联代码的反引号,就像StackOverflow一样,我想在HTML文件中显示它,内联代码用一些spanMaterial装饰。不会有嵌套,但转义反引号或转义反斜杠可能出现在任何地方。
我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/
我有一个驼峰式字符串,例如:JustAString。我想按照以下规则形成长度为4的字符串:抓取所有大写字母;如果超过4个大写字母,只保留前4个;如果少于4个大写字母,则将最后大写字母后的字母大写并添加字母,直到长度变为4。以下是可能发生的3种情况:ThisIsMyString将产生TIMS(大写字母);ThisIsOneVeryLongString将产生TIOV(前4个大写字母);MyString将生成MSTR(大写字母+tr大写)。我设法用这个片段解决了前两种情况:str.scan(/[A-Z]/).first(4).join但是,我不太确定如何最好地修改上面的代码片段以处理最后一种
我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www
我真的为这个而疯狂。我一直在搜索答案并尝试我找到的所有内容,包括相关问题和stackoverflow上的答案,但仍然无法正常工作。我正在使用嵌套资源,但无法使表单正常工作。我总是遇到错误,例如没有路线匹配[PUT]"/galleries/1/photos"表格在这里:/galleries/1/photos/1/edit路线.rbresources:galleriesdoresources:photosendresources:galleriesresources:photos照片Controller.rbdefnew@gallery=Gallery.find(params[:galle
我只想对我一直在思考的这个问题有其他意见,例如我有classuser_controller和classuserclassUserattr_accessor:name,:usernameendclassUserController//dosomethingaboutanythingaboutusersend问题是我的User类中是否应该有逻辑user=User.newuser.do_something(user1)oritshouldbeuser_controller=UserController.newuser_controller.do_something(user1,user2)我
什么是ruby的rack或python的Java的wsgi?还有一个路由库。 最佳答案 来自Python标准PEP333:Bycontrast,althoughJavahasjustasmanywebapplicationframeworksavailable,Java's"servlet"APImakesitpossibleforapplicationswrittenwithanyJavawebapplicationframeworktoruninanywebserverthatsupportstheservletAPI.ht
这篇文章是继上一篇文章“Observability:从零开始创建Java微服务并监控它(一)”的续篇。在上一篇文章中,我们讲述了如何创建一个Javaweb应用,并使用Filebeat来收集应用所生成的日志。在今天的文章中,我来详述如何收集应用的指标,使用APM来监控应用并监督web服务的在线情况。源码可以在地址 https://github.com/liu-xiao-guo/java_observability 进行下载。摄入指标指标被视为可以随时更改的时间点值。当前请求的数量可以改变任何毫秒。你可能有1000个请求的峰值,然后一切都回到一个请求。这也意味着这些指标可能不准确,你还想提取最小/
HashMap中为什么引入红黑树,而不是AVL树呢1.概述开始学习这个知识点之前我们需要知道,在JDK1.8以及之前,针对HashMap有什么不同。JDK1.7的时候,HashMap的底层实现是数组+链表JDK1.8的时候,HashMap的底层实现是数组+链表+红黑树我们要思考一个问题,为什么要从链表转为红黑树呢。首先先让我们了解下链表有什么不好???2.链表上述的截图其实就是链表的结构,我们来看下链表的增删改查的时间复杂度增:因为链表不是线性结构,所以每次添加的时候,只需要移动一个节点,所以可以理解为复杂度是N(1)删:算法时间复杂度跟增保持一致查:既然是非线性结构,所以查询某一个节点的时候