Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
14k views

How do I mix message encoding types (Text/MTOM) in the Request & Response of a Web Service client application using WCF (or WSE 3)?

Here is my problem. I am hitting a web service (hosted on a Java based server) that will only accept text encoded Requests, but it returns MTOM Responses. What I've found is that if I set the web ...
4
votes
1answer
2k views

How does MTOM work?

MTOM is the W3C Message Transmission Optimization Mechanism, a method of efficiently sending binary data to and from web services. How does it work in general?
3
votes
6answers
287 views

Adding an attachment to SOAP request

I am at a loose end as to how to add an attachment in my SOAP request. We have to consume a thrid party web service, built in java, which is the most convoluted thing I have ever come across. Any ...
3
votes
1answer
509 views

JAXB2 Mtom attachment broken by BOM

I'm using JAXB2 to to do OXM in a Spring-WS. The XSD I've specified requires a large XML file to be attached to the soap message so I'm using MTOM to transfer the file and have enabled MTOM on my ...
3
votes
2answers
763 views

WCF: (MTOM) is there any way to change the scheme used in xop:Content reference uris generated by WCF?

WCF uses http://tempuri/1/number for Content-ID uri references when handling streamed MTOM requests. Is there any way how to force WCF to use a different Content-ID references for the xop:Include? ...
3
votes
1answer
3k views

Stream MTOM Web Services in Spring Web Services Framework

I would like to send large files from the server to the client using MTOM and Spring WS. I realize that this isn't the best approach for this type of thing, but it's a requirement. I have MTOM set up ...
3
votes
2answers
2k views

What is the best way to send large data from WCF service to Client?

I have a particular service which returns large amount of data. What' is the best practice and options available in WCF to handle this? These large data is returned after doing all the filtering, so ...
2
votes
0answers
127 views

WCF MTOM message encoding with MessageContract

The requirement is to be able to upload a big file(~2GB) using a WCF service and I have created a messageContract class as follows [MessageContract] public class TestMessageContract { ...
2
votes
2answers
179 views

WCF Exists and partially working but for some calls returns “no endpoint listening - (404) Not Found.”

We have service that's working with small to large sets of data (document generation), and it's working fine for some calls, but for some specific requests (exact same method, different arguments) it ...
2
votes
0answers
394 views

Powershell: Error consuming WCF services with MTOM message encoding

I'm currently exploring powershell capabilities, but I have encountered a problem that I have not been able to solve. Any quick tips would be greatly appreciated =) My goal: Invoke methods from a ...
2
votes
1answer
453 views

Axis2/Axiom handling SOAP MTOM/non-MTOM attachments

After looking around and trying different suggested solutions, I’m writing this. The 2 most common solutions suggested to extract binary data from a MTOM/non-MTOM SOAP message are: Retrieve ...
2
votes
1answer
1k views

Axis2 MTOM Webservice and a .NET Client to consume it

So i have this new Axis2 MTOM Webservice serving correctly to a java based webservice client. The problem comes around when i try to add the service (or web) reference to the vs2008 and consume it ...
2
votes
0answers
463 views

How to get the mime data from the DataHandler

I send a soap message using MTOM by Axis2, and i monitor the soap get the message below: --MIMEBoundaryurn_uuid_5C5747FDE5329B8CEB1280130156514 Content-Type: application/xop+xml; charset=UTF-8; ...
2
votes
2answers
2k views

How to transfer a large zip file(50MB) using a WCF Service thorugh SOAP to aby client?

I have a WCF Service that returns a byte array with a ZIP file (50MB) to any client that requests it. If the zip is very small (say 1MB), the soap response is coming from WCF with the byte array ...
2
votes
0answers
272 views

Are there any libraries that support MTOM encryption in Python

I am using Python Suds to connect to a webservice and I am wanting to use MTOM encrpytion to send an XML message. I have looked around the web and seen libraries for PHP etc. but not for Python. Can ...
2
votes
1answer
3k views

How does MTOM work + sample code

I am trying to make a very simple web-service which does the following: The client hits the web service requesting a file. The web service's service class queries a hashtable which has the key ...
2
votes
1answer
552 views

Tomcat 6 XFire MTOM web service problem

I'm using XFire 1.2.6 on tomcat as web services implementation. Service is created using XFireProxyFactory and @EnableMTOM annotation. Client is also XFire and is using MTOM. It all worked fine in ...
2
votes
2answers
2k views

Building large MTOM/XOP messages with JAX-WS

I have a question about using MTOM/XOP with JAX-WS. I'm writing a web service which sends large amounts of binary data. The client requests a number of files and the server returns the files in the ...
2
votes
1answer
792 views

How can I use DIME with WSE 3.0?

I need to make calls to a legacy SOAP API that only supports DIME, but DIME is not supported in WSE 3.0. Unfortunately, WSE 2.0, which supports DIME, is not supported in conjunction with Visual ...
1
vote
1answer
34 views

WSE 3.0 - Byte array being encoded as Base64 and not “MTOM-ing” to binary

I have a couple of other questions on here surrounding this area but they are a bit redundant now. Any answers to them would also be appreciated but this question is my main concern at the minute. I ...
1
vote
0answers
33 views

How Can I Modify Content-ID on mtom WCF

Is there any way to change the mtom href from xop:Include href="cid:http%3A%2F%2Ftempuri.org%2F1%2F634599683683634580" xmlns:xop="http://www.w3.org/2004/08/xop/include" to, for example: xop:Include ...
1
vote
0answers
64 views

SOAP MTOM/XOP Support in PHP

I want to create a Web Service in PHP, which can support MTOM/XOP. My Webservice Processing function shpuld be able to extract the attachment. As I googled I could find only WSF(Web Service Framework) ...
1
vote
1answer
178 views

System.ServiceModel.ProtocolException with two 'parallel' proxies

My web services have been working perfectly, It's hard to tell what I did do that resulted in them crashing from time to time. I added HTTP Basic Authentication and swapped database providers, from ...
1
vote
0answers
186 views

Unmarshalling MTOM message using Camel Spring-WS and JAXB dataformat

1) Is there a way to unmarshall MTOM message using Camel Spring-WS component? 2) I tried with Camel JAXB dataformat. It didn't work. Datahandler doesn't have any content. Does JAXB dataformat support ...
1
vote
0answers
314 views

JAX-WS always sends MTOM attachments inline

Basically I want to create a web services client to send a mtom soap message via the proxy method. I have created my service artifacts fine from the web service wsdl. The message is created correctly, ...
1
vote
1answer
207 views

MTOM, Axis2, WS-Security and signed attachements

I am working on a bug we have encountered in one of our web services. We are using Axis2 1.4.1 running on OC4J. The issues is that when sending multiple signed binary attachments to the service with ...
1
vote
1answer
387 views

Custom MTOM Binding in WCF 4

Since WPF 4 provides default configuration out of the box, I'm having difficulty trying to create a custom MTOM binding for my service. In short, my WCF library hosts several services that are using ...
1
vote
2answers
373 views

Problems with Spring WS Streaming Attachments with Security Interceptor

I'm having problems getting Spring WS to receive a request which has a file attached and use streaming. The problem is I get the following exception whenever I try to use a security interceptor: ...
1
vote
0answers
178 views

MTOM/XOP support in BizTalk 2006 R2?

We are currently working on an BizTalk solution that should return binary data as a XOP attachement through an webservice request. BizTalk have MTOM support through WCF adapters, but I can't figure ...
1
vote
1answer
388 views

JAX-WS MTOM delete attachment after sending to client

I am using the reference implementation of JAX-WS with Java 1.6. On my server I have Web Service method which returns a response with an attachment as a javax.activation.DataHandler. File myFile = ...
1
vote
1answer
361 views

Custom MTOM binding and Max upload size

I'm using the binding configuration below for my upload service, <binding name="FileUploadSTSBinding"> <security authenticationMode="UserNameOverTransport" ...
1
vote
1answer
667 views

MTOM Encoding and Custom binding

How do I configure custom binding and MTOM encoding? I have a custom binding like given below, <customBinding> <binding name="stsBinding"> <security ...
1
vote
1answer
462 views

Using Metro, adding a MTOMFeature to client side causes a MIMEParsingException, why?

We have an MTOM-enabled web service that is published with Grails and the Metro 1.0.2 plugin: @MTOM @WebService(targetNamespace="http://com.domain") class TestService { @WebMethod int ...
1
vote
1answer
622 views

How to access a MTOM payload when using document oriented SOAP?

I need to integrate an external SOAP Service into my system. I have only the wsdl and no test server so far. I figured out how to generate stubs for the server using CXF in order to build a mocking ...
1
vote
1answer
249 views

Using MTOM on Mono

Looking to port an ASMX web service application to run on Mono under Apache. The web services use WSE 3.0 to add MTOM capability for messages that contain binary. From my research so far, I ...
1
vote
1answer
3k views

how do I test an MTOM webservice with soapUI?

I've built a webservice that wraps Apache FOP. You send it XML, and it gives you an MTOM stream that contains the rendered PDF. Now that its working, I'd like to run some performance tests on it. ...
1
vote
1answer
398 views

Does MTOM require a messageContract in WCF?

Is there any way use datacontracts while using Mtom?
1
vote
3answers
364 views

XmlMtomReader reading strategy

Consider the following code: Stream stream = GetStreamFromSomewhere(); XmlDictionaryReader mtomReader =XmlDictionaryReader.CreateMtomReader ( stream, Encoding.UTF8, XmlDictionaryReaderQuoatas.Max ...
1
vote
1answer
6k views

jax-ws mtom sample code (service + Client) need.. SIMPLE one

I looking for a simple , working sample mtom sample code (service + Client) either using jax-ws RI or Axis 2 based. I googled the world only to find snippets and codes that dont simply work ! ...
1
vote
2answers
362 views

mtom serving word doc

has anyone been able to serve a word doc using metro (webservices) as a mtom stream? Does anyone have example, or know where there is example code please for client and server? Many thanks!
0
votes
1answer
33 views

MTOM enabled, getting “Maximum request length exceeded.” still

This is getting Frustrating ... I am semi-new to web services, and I dont really understand why I can't figure out how to use Microsoft WSE 3.0 to enable MTOM encoding for SOAP on my web service. I ...
0
votes
0answers
69 views

Getting MTOM/XOP attachments to work in WSE, see Edit 3 - 5

I have 2 other questions on here surrounding this area, namely Adding an attachment to SOAP request and Soap response, not well formed XML, no XOP parts located, using WSE. The reason for this ...
0
votes
0answers
26 views

How can I get the data having xop Include from a non-wcf service into a wcf client

I have a non-wcf service with a method public Attachment GetData(); In WCF client he Attachment has the following structure. public partial class Attachment { public Include include; ...
0
votes
1answer
57 views

What does parseEagerly mean in MTOM's @StreamingAttachment (Metro)

Somebody please explain the behavior of @StreamingAttachment(parseEagerly=true). What are the advantages/disadvantages when its enabled/disabled? Couldn't find any detailed documentation.
0
votes
1answer
35 views

How can I specify message encoding for incoming messages in a WCF client based on the message encoding in the response message from the server?

How can I specify message encoding for incoming messages in a WCF client based on the message encoding in the response message from the server? The server can send the response with text message ...
0
votes
0answers
34 views

Issue in SOAP, when i use MTOM in my webservices

I have problem in expose method to webservices, where i am using Jbossws as webservices stack and i have used MTOM in webserives,my webservices method as follows: @MTOM(enabled = true) @WebService ...
0
votes
0answers
64 views

File Upload Using Apache Axis 2 MTOM

I want to create one Service with Apache Axis2. The Service will upload a file, using MTOM. My problem is the references are very less on this topic, i'm a newbie to this. I tried the tutorials ...
0
votes
0answers
75 views

Android and MTOM webservice

I have implemented a proof of concept WCF service (VS2010) that allows users to upload images to a server. I managed to create a test service that utilises MTOM encoding and this works as expected ...
0
votes
1answer
48 views

Recommended way to load data from SQL and convert it into Binary

I have data on a SQL Server 2008 database and need to load it and send it via a WCF web service based on the MTOM encoding. QUESTION 1: I wonder if I need to prepare and compress the DataTable (or ...
0
votes
0answers
161 views

Apache CXF+MTOM sending multiple attachments

I have developed a web-service which receives multiple attachments from a remote web-service via an CXF JAXB client (the client is called from the service), the attachment from the remote service are, ...

1 2