XML-binary Optimized Packaging - convention for serialization of XML Infosets.
Questions tagged [xop]
44 questions
2
votes
0 answers
Extract PDF file from soap response string
Problem: Extract PDF file from soap response string.
Description: I have the following response returned by webservice and converted using
response = client.UploadData(ClientUrl, Data);
string s =…

user3889193
- 53
- 1
- 5
2
votes
1 answer
Unmarshalling XOP with JAXB
I have a data source that has switched from base64 embedded image data to XOP image data. I'm using Java/JAXB to unmarshal the data and can't find any good sources describing how it's done. All references seem to describe doing this with SOAP…

Nerdfest
- 1,675
- 13
- 20
1
vote
0 answers
Getting xop include object using nodejs
I need to download the xop include object which is coming in response of one SOAP service using NodeJS.
I am able to get the response using soap library, but need to understand how to download the file

stackjohnny
- 645
- 3
- 7
- 22
1
vote
1 answer
Send file attachment as base64Binary in SoapUI
There is an element, which is defined as base64Binary in WSDL. I attached file with ContentID ref1 and added it to SOAP request as follows:
I got…

plaidshirt
- 5,189
- 19
- 91
- 181
1
vote
1 answer
WCF MTOM/XOP Client Deserialization Error
This is one of those SO 'questions' that i've already answered, but am posting b/c there seems to be next to zero information out there based on a week of Googling.
TL;DR: WCF MTOM encoded BasicHttpBinding client to external/3rd part, non-.NET web…

isandburn
- 134
- 5
1
vote
1 answer
Replacing XopDocument class in .NET 4.0
With migration to .NET 4.0, we got rid of a lot of WSE libraries, including the XopDocument class. What is the recommended class to replace XopDocument class, which represents an XOP package that is part of an MTOM-encoded SOAP message

codingbear
- 14,773
- 20
- 48
- 64
1
vote
1 answer
VPERMIL2PS and VPERMIL2PD All PERMIL2 instructions are gone - Replacement of missing instructions
How can I replace a missing VPERMIL2PS instruction, using equivalent instructions in AVX2?
VPERMIL2PS ymm1, ymm2, ymm3, ymm4/m256, imz2
Permute single-precision floatingpoint values in ymm2 and ymm3 using controls from ymm4/mem, the results are…

KingBugmenot
- 13
- 3
1
vote
1 answer
node.js soap attachments files/ cid href
i'm using node-soap to consume laposte web service which is suppose to send me a response with a PDF attachment.
But what I get is not a file but a href such as the following
href: 'cid:c482ea77-cc5b-406f-8596-295470ce8049-100134@cxf.apache.org'
In…

Arnaud Derbey
- 31
- 1
- 5
1
vote
1 answer
What Standard Specifies how MTOM / XOP support should be indicated in a WSDL?
I'm adding MTOM attachment support into existing webservice support in a Home Grown appserver. The webservice framework follows a similar pattern to JavaEE5, annotated services & objects being automatically exposed as a WebService with automatic…

EdC
- 2,309
- 1
- 17
- 30
1
vote
1 answer
Set EXPAND_XOP_INCLUDE for WSS4JOutInterceptor in apache cxf 3.0.X
i want to avoid the automatic generation of the xop included from apache cxf (version 3.0.4) when set MTOM ENABLE to true how can i do that? for example, i have a soap service . it support the mtom but not the xop include annotation , so it refused…

4535992
- 418
- 9
- 29
1
vote
0 answers
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 out if BizTalk also supports XOP?
(I found an blog…

geiralund
- 21
- 7
1
vote
1 answer
Manually Parse MTOM Message
I have below mtom response as string
--uuid:6b6fab3b-c481-4648-9eb5-8690096eb54d
Content-Type: application/xop+xml; charset=UTF-8; type="application/soap+xml";
Content-Transfer-Encoding: binary
Content-ID:…

Winston
- 1,800
- 2
- 20
- 30
1
vote
0 answers
How to attach documents to a SOAP with XOP using Spring?
I had a WSDL with MTOM and we could handle it properly: there was documentation available. This is what we ended up with. Not much testing was done on it, except that we saw it working.
byte[] document = ... ;
DataSource dataSource = new…

Olivier Grégoire
- 33,839
- 23
- 96
- 137
1
vote
1 answer
eBay LMS uploadFile - Cannot specify file with valid format
I am attempting to use the eBay Large Merchant Services API to upload calls in bulk. This API and documentation are notoriously bad (I found a blog post that explains it and rails against it here). The closest I can find to a working Python solution…

Nelluk
- 1,171
- 2
- 12
- 23
1
vote
0 answers
Client found response content type of 'multipart/related; type="application/xop+xml"
When I am calling Web service method, and getting this error,
"Client found response content type of 'multipart/related;
type="application/xop+xml";
boundary="uuid:8507df24-4a53-4943-9728-3297e243ddce"; …

Turgay Gençer
- 121
- 1
- 4
- 11