The xop tag has no wiki summary.
3
votes
2answers
808 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?
...
2
votes
1answer
219 views
HTTP POST request and headers with MIME attachments multipart/related and xop?
I'm trying to upload a bulk data exchange call to eBay using their FileTransfer API.
In order to do this, I've got to POST an xml request string to the eBay server but the xml
request contains a ...
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 ...
1
vote
1answer
85 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
92 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
74 views
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 ...
1
vote
0answers
189 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 ...
0
votes
0answers
19 views
MTOM/XOP via WCF. Is it possible to force the MTOM Encoder to write the <XOP:Include> element's href: attribute without URL encoding?
First question here. I am forced to do this because my reputation apparently is not high enough to allow me to comment on an answer on this question
. I have run into the same issue that this answer ...
0
votes
0answers
110 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
40 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
0answers
25 views
how to seprate binary data contain in xop packet?
I receive a mime packet with binary data,it use xop:include to separate binary data, now i want to separate binary data from this packet and store this data to a file. how can i fetch value of ...
0
votes
0answers
196 views
How to read data from SOAP message with large XOP attachment using Spring WS and Axiom
I'm trying to build a web-service, which will receive large files and save them with the name specified in SOAP message.
Here is an example request message
<soapenv:Envelope ...
0
votes
1answer
292 views
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 ...
0
votes
1answer
108 views
Remove XOP gunk from WS Response in Silverlight 3
I have a Silverlight client that I need to call a web service. The web service is built in Java and uses XOP encoding to attach binary messages to some of its calls. However, the Silverlight service ...
0
votes
2answers
387 views
rest + xop / binary data embedded in xml response
I've been given the task to embed binary data (like pictures, music, thumbnails etc) into a xml metadata container in order to publish the whole package via REST interface. Currently we're using ...