Message Transmission Optimization Mechanism (MTOM) is a method to efficiently send binary data to and from Web services, it is a W3C Recommendation.
Questions tagged [mtom]
366 questions
0
votes
1 answer
Angular-CLI for file downloads using MTOM
Is there any way to implement a file download request in Angular-CLI from a SOAP Web Service that uses MTOM?
At first glance it seems that it should be supported and pretty simple to implement (on the server side it's very simple) but after…

Bill
- 11
- 3
0
votes
2 answers
Spring Boot, Apache CXF 3.2.5 with MTOM sends empty attachment
I'm having a weird issue with Apache CXF and large (375MB) MTOM attachments are empty.
Running it locally in Eclipse produces the desired results, but deploying it to our server just gives an empty attachment.
The server is written in .NET and…

Jimmy Selgen Nielsen
- 311
- 1
- 10
0
votes
2 answers
Regex to get MTOM binary content
I am trying to get the MTOM binary content using a extended class of SoapClient, the response is something like that:
--uuid:8c73f23e-47d9-49fb-a61c-c1df7b19a306+id=2
Content-ID:
Content-Transfer-Encoding:…

celsowm
- 846
- 9
- 34
- 59
0
votes
0 answers
Web Service encoding incorrect for attachment
I'm calling a Java web service using C#. The service requires me to send an attachment along with the payload.
What I was given from the client:
1) WSDL and schema file
2) Two certificates
I initially used SOAP UI to send the request just to see…

MindGame
- 1,211
- 6
- 29
- 50
0
votes
0 answers
How do I extract a Gzip attachment in a SOAP MTOM webservice using NiFi?
How do I extract a Gzip attachment in a SOAP MTOM webservice using NiFi? What are the processors to use to do that.

AnthonyBisong
- 1
- 2
0
votes
2 answers
Attachment missing in MTOM response from Citrus SOAP server simulation
I have built a sample Citrus testcase to simulate a SOAP server that responds with an MTOM attachment.
runner.soap(action -> action.server("simulationServer")
.receive()
...[validation etc]
);
runner.soap(action ->…

burki
- 6,741
- 1
- 15
- 31
0
votes
1 answer
Citrus-Framework: Possible to send SOAP attachment from server simulation with Java DSL?
For a component test with Citrus Framework I simulate a backend system that is called through SOAP.

burki
- 6,741
- 1
- 15
- 31
0
votes
1 answer
Weblogic 10.3.6 JAX-WS Webservice Temporary copies of MTOM attachments are not being deleted from FileSystem
I have developed a JAX-WS webservice to deal with large file (upload / download). MTOM Attachment + Streaming feature is enabled on the webservice and the client both. Deployed in Weblogic 10.3.6 JDK 1.7
// Enable attachment streaming feature
// dir…

Rakesh Prajapati
- 1,078
- 8
- 17
0
votes
0 answers
Sending file with SOAP MTOM using PowerShell
I am attempting to send a SOAP message with PowerShell that uses MTOM to attach an XML file. MTOM is the method specified by the web service so I don't have the option to include the XML file inline.
I'm getting confused when it comes to actually…

gerard
- 835
- 11
- 27
0
votes
1 answer
JAX-WS MTOM or BindingType annotation
I am bit confuse in understanding the concept of MTOM in JAX-WS service .
I have a webservice exposing a method that returns an Image .
Below is the SIB and publisher code
//@MTOM
@WebService(endpointInterface=…

summary
- 125
- 1
- 14
0
votes
1 answer
JAX-WS fault changes in mtom service when logging is enabled through SOAPHandler
I have a jax-ws service published in a standalone server application. This service uses mtom to receive documents
As advised in the answer to this question:
Tracing XML request/responses with JAX-WS
I use a handler for soap message logging for the…

simpleusr
- 354
- 4
- 23
0
votes
1 answer
Unable to decrypt MTOM/XOP attachment using SUDS (python)
I have a SOAP client that downloads a file from a server. The request has its body and attachment (the file) encrypted using two separate keys. Both keys are included in respective tags. I can decrypt the body no problem using…

ierdna
- 5,753
- 7
- 50
- 84
0
votes
0 answers
How to read SOAP parameters from XML wsdl:definitions
i try to call a SOAP function with PHP.
But I always get back "Authentication parameter(s) missing." and "looks like we got no XML document".
So I guess I'm doing something wrong with the parameters.
This ist what i'm doing:
PHP:

Fabian
- 177
- 1
- 14
0
votes
0 answers
C# parsing MTOM response from web-service
The vendor Web service has a response type (MTOM):
--uuid: 5251c679-2917-1111-bbbf-44a5963ee0ac
Content-Type: application/xop+xml;Encoding=UTF-8;Type="text/XML"
Content-Transfer-Encoding: binary code
Content-ID:

Free Dark Knight
- 1
- 1
- 2
0
votes
0 answers
Does PostgreSQL support streaming to save byte array data?
I have the following task:
pass a file through SOAP
save the file in a PostgreSQL database
The file should be passed as a stream.
For the first part of the task I used MTOM mechanism. It works fine. For the second part I tried to use…

DrDecay
- 59
- 1
- 10