- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 MTOM 的 CXF2.7.7 构建一个 WSDL-first java web 服务。我的目的是能够通过此网络服务上传大(多个千兆字节)文件下面是我的 WSDL 的片段
<!-- WSDL for MTOM service -->
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://objectstoreservice.example.com/" attributeFormDefault="unqualified"
elementFormDefault="unqualified" targetNamespace="http://objectstoreservice.example.com/">
<xs:element name="objectReqParam" type="tns:objectReqParam"/>
<xs:element name="objectRespParam" type="tns:objectRespParam"/>
<xs:complexType name="objectReqParam">
<xs:sequence>
<xs:element minOccurs="0" name="objName" type="xs:string"/>
<xs:element minOccurs="0" maxOccurs="1" name="ObjData"
type="xs:base64Binary" xmime:expectedContentTypes="application/octet-stream"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="objectRespParam">
<xs:sequence>
<xs:element minOccurs="0" name="respCode" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="objectUploadRequest">
<wsdl:part name="objectReqParam" element="tns:objectReqParam">
</wsdl:part>
</wsdl:message>
<wsdl:message name="objectUploadResponse">
<wsdl:part name="objectRespParam" element="tns:objectRespParam">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="ObjectStoreService">
<wsdl:operation name="uploadObject">
<wsdl:input name="objectUploadRequest" message="tns:objectUploadRequest"/>
<wsdl:output name="objectUploadResponse" message="tns:objectUploadResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="ObjectStoreServiceServiceSoapBinding" type="tns:ObjectStoreService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="uploadObject">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="objectUploadRequest">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="objectUploadResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="ObjectStoreServiceService">
<wsdl:port name="ObjectStoreServicePort"
binding="tns:ObjectStoreServiceServiceSoapBinding">
<soap:address location="http://localhost:9090/ObjectStoreServicePort"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
我的目的是使用 MTOM(从元素 type="xs:base64Binary"xmime:expectedContentTypes="application/octet-stream 可以明显看出)通过此服务上传对象。
我还配置了我的 jax WS 端点以使用 MTOM,如下面的服务器端 Spring 配置文件片段所示
<beans xmlns="http://www.springframework.org/schema/beans"
... />
<jaxws:endpoint xmlns:objectstore="http://objectstoreservice.example.com/"
id="ObjectStoreServiceHTTP" address="http://localhost:9090/ObjectStoreServicePort"
serviceName="objectstore:ObjectStoreServiceService"
endpointName="objectstore:ObjectStoreServiceEndpoint"
implementor="com.example.objectstoreservice.server.ObjectStoreServiceImpl">
<jaxws:properties>
<!-- MTOM properties -->
<entry key="mtom-enabled" value="true"/>
<entry key="attachment-directory" value="/tmp/mtomattachments"/>
<entry key="attachment-memory-threshold" value="100000"/>
</jaxws:properties>
</jaxws:endpoint>
</beans>
同样,我也将我的 jax-ws 客户端配置为使用 MTOM,如下面的客户端 spring 配置文件所示
<beans xmlns="http://www.springframework.org/schema/beans ..../>
<jaxws:client id="objectStoreService"
serviceName="objectstore:ObjectStoreServiceService"
endpointName="objectstore:ObjectStoreServiceEndpoint"
address="http://localhost:9090/ObjectStoreServicePort"
serviceClass="com.example.objectstoreservice.ObjectStoreService">
<jaxws:properties>
<!-- MTOM properties -->
<entry key="mtom-enabled" value="true"/>
<entry key="attachment-memory-threshold" value="100000"/>
<entry key="attachment-directory" value="/tmp/mtomattachments"/>
<entry key="javax.xml.ws.client.connectionTimeout"
value="10000000" />
<entry key="javax.xml.ws.client.requestTimeout"
value="10000000" />
<jaxws:properties>
</jaxws:client>
我还在下面为客户端提供了我的 Java 代码的相关片段
/* --- Web-service client
*************************************************************************** */
package com.example.objectstoreservice.client;
import java.util.List;
import java.awt.Image;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.InputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.activation.DataHandler;
import javax.activation.FileDataSource;
import javax.xml.namespace.QName;
import com.example.objectstoreservice.ObjectStoreService;
import com.example.objectstoreservice.ObjectReqParam;
import com.example.objectstoreservice.ObjectRespParam;
import javax.xml.ws.Binding;
import javax.xml.ws.BindingProvider;
public final class ObjectStoreServiceTester {
ObjectStoreService objectStoreService;
Binding binding ;
public ObjectStoreService getObjectStoreService() {
return objectStoreService;
}
// I haven't shown the code that sets the port object - objectStoreService
// Take my worrd for it - I have the right port object
public void setObjectStoreService(ObjectStoreService objectStoreService) {
this.objectStoreService = objectStoreService;
}
public void enableMTOM () {
binding = ((BindingProvider)objectStoreService).getBinding();
((SOAPBinding)binding).setMTOMEnabled(true);
}
public void testObjectStoreService()
{
enableMTOM();
System.out.println("Now uploading a data file to service");
ObjectReqParam objReqParam = new ObjectReqParam() ;
objReqParam.setObjName("File");
String fileName="C:/root/opt/files/ToSend.jpg";
FileDataSource inFileDataSource=new FileDataSource(fileName);
DataHandler dataHandler = new DataHandler(inFileDataSource);
System.out.println("Check content-type from dataHandler : " + dataHandler.getContentType());
System.out.println("Check obj signature from dataSource : " + dataHandler.getDataSource());
System.out.println("Check file-name from dataSource : " + dataHandler.getDataSource().getName());
objReqParam.setObjData(dataHandler);
System.out.println("Now uploading file:" + fileName);
objectStoreService.uploadObject(objReqParam);
System.out.println("Object upload successful");
}
}
运行时 - 该客户端对于小附件运行良好,但对于大附件会出现以下错误(基于我分配的 JVM 堆空间)
** 执行 Java 类时发生异常。 null:InvokingTargetException:Java 堆空间 **
下面是完整的堆栈跟踪。 *如果您发现问题或我是否应该做一些不同的事情,请告诉我**- 顺便说一句,我看过其他一些有类似问题的帖子,想知道是否有人对大文件做过 MTOM。有没有一种方法可以显式强制它流式传输文件或强制它以小块形式发送?
*
MTOM: An exception occured while executing the Java class. null
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:217)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu
ild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl
eStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
cher.java:290)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
a:230)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
uncher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
352)
Caused by: org.apache.maven.plugin.MojoExecutionException: An exception occured
while executing the Java class. null
at org.codehaus.mojo.exec.ExecJavaMojo.execute(ExecJavaMojo.java:346)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
BuildPluginManager.java:101)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:209)
... 19 more
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:291)
at java.lang.Thread.run(Thread.java:744)
Caused by: java.lang.OutOfMemoryError: Java heap space
at com.sun.xml.bind.v2.util.ByteArrayOutputStreamEx.readFrom(ByteArrayOu
tputStreamEx.java:75)
at com.sun.xml.bind.v2.runtime.unmarshaller.Base64Data.get(Base64Data.ja
va:196)
at com.sun.xml.bind.v2.runtime.unmarshaller.Base64Data.writeTo(Base64Dat
a.java:312)
at com.sun.xml.bind.v2.runtime.output.UTF8XmlOutput.text(UTF8XmlOutput.j
ava:312)
at com.sun.xml.bind.v2.runtime.XMLSerializer.leafElement(XMLSerializer.j
ava:356)
at com.sun.xml.bind.v2.model.impl.RuntimeBuiltinLeafInfoImpl$PcdataImpl.
writeLeafElement(RuntimeBuiltinLeafInfoImpl.java:183)
at com.sun.xml.bind.v2.runtime.MimeTypedTransducer.writeLeafElement(Mime
TypedTransducer.java:96)
at com.sun.xml.bind.v2.runtime.reflect.TransducedAccessor$CompositeTrans
ducedAccessorImpl.writeLeafElement(TransducedAccessor.java:256)
at com.sun.xml.bind.v2.runtime.property.SingleElementLeafProperty.serial
izeBody(SingleElementLeafProperty.java:130)
at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(ClassBean
InfoImpl.java:361)
at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerialize
r.java:696)
at com.sun.xml.bind.v2.runtime.property.SingleElementNodeProperty.serial
izeBody(SingleElementNodeProperty.java:158)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(Eleme
ntBeanInfoImpl.java:161)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(Eleme
ntBeanInfoImpl.java:131)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeBody(Element
BeanInfoImpl.java:333)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(Element
BeanInfoImpl.java:340)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(Element
BeanInfoImpl.java:76)
at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.j
ava:494)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:
323)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.jav
a:251)
at javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshal
lerImpl.java:95)
at org.apache.cxf.jaxb.JAXBEncoderDecoder.writeObject(JAXBEncoderDecoder
.java:612)
at org.apache.cxf.jaxb.JAXBEncoderDecoder.marshall(JAXBEncoderDecoder.ja
va:240)
at org.apache.cxf.jaxb.io.DataWriterImpl.write(DataWriterImpl.java:169)
at org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor.writePar
ts(AbstractOutDatabindingInterceptor.java:114)
at org.apache.cxf.interceptor.BareOutInterceptor.handleMessage(BareOutIn
terceptor.java:68)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseIntercept
orChain.java:272)
at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:565)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:474)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:377)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:330)
at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:96)
还有一件奇怪的事情如果我检查 SOAP 消息,我仍然看到附件“内联”为 base64 编码,而不是作为单独的部分...至少 CXF 日志记录向我表明了这一点...
最佳答案
这个问题是由于一些奇怪的原因,与 MTOM 相关的 spring 配置没有被拾取的结果 - 虽然我还没有弄清楚为什么 - 我可以通过以编程方式添加设置 MTOM 相关属性到我的绑定(bind)类来缓解这个问题 - 然后 MTOM 工作正常。但有一点需要注意 - 我现在取消了 https 传输(正在使用纯 http 传输)
// In My Web-service client code ....
import javax.xml.ws.Binding;
import javax.xml.ws.BindingProvider;
import javax.xml.ws.soap.SOAPBinding;
import com.sun.xml.ws.developer.JAXWSProperties;
// ... REST of my code
// After I create my Port - - did following for Enabling MTOM");
Binding binding = ((BindingProvider)port).getBinding();
if (binding == null) {
System.out.println("port .getBinding failed!!");
System.exit(-1);
}
((SOAPBinding) binding).setMTOMEnabled(true);
if (debugFlag)
System.out.println(" Port - setting chunking and other properties");
//Map contextMap=((BindingProvider)port).getRequestContext();
((BindingProvider)port).getRequestContext().put(JAXWSProperties.HTTP_CLIENT_STREAMING_CHUNK_SIZE,32768);
((BindingProvider)port).getRequestContext().put(JAXWSProperties.MTOM_THRESHOLOD_VALUE,16000);
((BindingProvider)port).getRequestContext().put(JAXWSProperties.REQUEST_TIMEOUT,0);
((BindingProvider)port).getRequestContext().put(JAXWSProperties.CONNECT_TIMEOUT ,0);
关于java - WSDL 第一个启用 MTOM 的 cxf 2.7 Web 服务客户端导致大型附件出现 Java 堆空间错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20995472/
我们正在创建一个 n 层 Silverlight LOB 应用程序,并且正在考虑使用 .NET RIA 服务。我们不清楚这与我们当前的 WCF 服务 API 的关系在哪里。我们当前的架构是: 银光
上下文:我在celery + rabbitmq堆栈上有一个主工作系统。 系统已docker化(此处未提供worker服务) version: '2' services: rabbit:
我是 Windows Azure 新手,我正在尝试将我的 Web 应用程序部署到 Windows Azure。在我的应用程序中,我使用了一些 Web 服务,现在我想知道如何在 Windows Azur
因此,根据我对服务的了解,自定义对象似乎是写入服务以返回数据的方式。如果我正在编写将用于 1) 填充数据库或 2) 为网站提供信息的服务,是否有返回数据集/数据表而不是包含所有这些的自定义对象列表的用
我在 google 和 stackoverflow 上都找过答案,但似乎找不到。我正在尝试将 azure 实验的输出获取到应用程序。我使用 ibuildapp 和谷歌表单制作了该应用程序。如何使用 g
我不小心删除了 kubernetes svc: service "kubernetes" deleted 使用: kubectl delete svc --all 我该怎么办?我只是想删除服务,以便
我正在努力确定解决网络服务问题的最有效方法。 我的情况:我正在开发一个 Android 应用程序,它通过 Web 服务从 mysql 数据库(在我自己的服务器 PC 上)存储和检索数据。用户按下提交按
我一直在翻阅 Android 文档,我很好奇。什么时候绑定(bind)服务而不是不绑定(bind)服务?它提供了哪些优点/限制? 最佳答案 When would you bind a service
我试图从架构的角度理解 hive,我指的是 Tom White 关于 Hadoop 的书。 我遇到了以下关于配置单元的术语:Hive Services、hiveserver2、metastore 等。
我的问题:安装服务后我无法导航到基地址,因为服务不会继续运行(立即停止)。我需要在服务器或我的机器上做些什么才能使 baseAddress 有效吗? 背景:我正在尝试学习如何使用 Windows 服务
我正在努力就 Web 服务的正确组织做出决定。我应该有多个 ASMX 来代表 Web 服务中的不同功能,还是应该有一个 ASMX? 如果我有多个 ASMX,这不构成多个 Web 服务吗? 如果我只有一
我正在从事一个在 azure 平台上提供休息服务的项目。该服务由 iPhone 客户端使用,这是选择其余方法的重要原因之一。 我们希望通过 AccessControlService(ACS) 并使用
我是 Ionic 新手,正在使用 Ionic 3.9.2 我有几个终端命令来为我的 ionic 应用程序提供服务,但是,我没有发现这两个命令之间有任何区别。 ionic serve 和 ionic s
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
作为项目的一部分,我期待着问这个问题。我过去有开发和使用 Web 服务的经验,并且非常熟悉这些服务。但是,有人告诉我,作为下一个项目的一部分,我将需要使用“安全”的 Web 服务。您能否提供一些见解,
我浏览了很多关于这个问题的信息,但找不到解决方案。这里的问题是,我想使用 Apache Cordova 和 Visual Studio 连接到 wcf。因此,如果有人找到合适的工作解决方案,请发布链接
我在 Windows 服务中托管了一个 WCF(从 MS 网站示例中选取),我可以使用 SOAP UI 访问和调用方法。但是,当我尝试使用 jquery 从 Web 应用程序调用相同的方法时,我不断收
我们构建了一个 Android 应用程序,它从 Android 向我的 PHP 服务器发送 HTTP 请求。作为响应,Web 服务将 JSON 对象发送到 Android 应用程序以显示结果。 就像其
我想在 android 应用程序中调用 soap web 服务,它需要一个枚举值作为参数,它是一个标志枚举。如何从 Android 应用程序将一些值作为标志枚举传递给此 Web 服务方法? 我使用 K
我尝试在模拟器上安装 Google Play。我已按照 Google Dev Site 中的说明进行操作. 使用 ADV 管理器似乎没问题,设备的目标是 Google API 版本 22,但是当我运行
我是一名优秀的程序员,十分优秀!