2
votes
2answers
270 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
1answer
283 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
3answers
50 views
XmlMtomReader reading strategy
Consider the following code:
Stream stream = GetStreamFromSomewhere();
XmlDictionaryReader mtomReader =XmlDictionaryReader.CreateMtomReader
(
stream,
Encoding.UTF8,
XmlDictionaryReaderQuoatas.Max
…
1
vote
0answers
467 views
Sending attachments from Axis webservice to .NET client?
Trying to provide a web service capable of sending files to a client on request, I run into the following problem:
On the server side, the service is written in Java, using Axis 1 v1.4.1 (I know, …
1
vote
3answers
4k 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 …
0
votes
0answers
24 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 …
0
votes
1answer
48 views
Find if InputStream of DataHandler is empty
In my application I develop web service that get attached file.
The file is mapped to DataHandler object via JaxB,
and I have access to the file via DataHandler.getInputStream()
My problem is this:
…
0
votes
1answer
48 views
C# client of Axis2 web service complains “but expected ‘text/xml’”
My C# sample client ASP.NET program successfully runs a call in my Axis2 server but the client does not seem to like the response.
I get:
Client found response content type of 'multipart/related; …
0
votes
1answer
48 views
Performance implications of turning MTOM on for a WCF service
Would there be any noticeable performance hit if MTOM is turned on for a WCF service that isn't actually transferring any binary over the wire?
0
votes
1answer
45 views
Does XmlMtomReader cache binary data from the input stream internally?
Actually i'd like to know if XmlMtomReader reads mime binary parts from the input stream directly? Or does it store them internally before i call ReadContentAsBase64() method?
0
votes
1answer
41 views
Web Services using J2ME and Java Version 1.4
Howdy,
We are trying to program an MFP (Multi-function-printer) to communicate to our backend using Web Services. We are sending large images so using MTOM is important. Since we are dealing with a …
0
votes
4answers
154 views
MTOM/XOP implementation for .net remoting
My customer asked me to implement MTOM/XOP for .NET Remoting via HTTP/SOAP for remote stream access (for example, file uploading). WCF web services in not an option.
So, what I have to do is modify …
0
votes
0answers
116 views
Send additional data with attachment in axis2 MTOM implementation
Hi All,
I have designed a service to upload a file, based upon the MTOM - Axis-2 support
And it works currectly. But now I have to send one more parameter [string data type] to the service but not …
0
votes
1answer
734 views
jax-ws mtom sample code (service + Client) need.. SIMPLE one
hi All,
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 …
0
votes
0answers
248 views
WSDL validation error when using MTOM
I am experiencing an issue with WSDL schema validation failing when my web service response contains an MTOM attachment. After searching the web I see I'm not the only one with this problem but have …
