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 question is because I have literally come to a dead end. I'm sort of back to the start, ie. the first link, because the third party handling the web service say they can't accept the file without an <xop:Include> element so I'm back to square one.

The internet has proved fruitless in my efforts to get documentation on how to add attachments that conform to MTOM/XOP specification in WSE 3.0. Any links I have found require access to the server, as it seems there should be a method there for file attachment, but this is not possible as it is a third party web service.

I have tried everything mentioned in each of the above, linked, questions and have pulled out all of my hair over this.

So is there a definitive example of how we should be adding XOP attachments in it's own MIME part within a SOAP request?

EDIT: I have looked at the BinaryDataMTOM sample within the WSE 3.0 installation and when I run it it encodes the data inline in base64 rather than with an <xop:Include> element and associated MIME part with binary encoding. Watching a video it seems that it should encode with XOP and the MIME part, but my sample isn't. Is there some environment variable I am missing here that is stopping the encoding with XOP?

EDIT 2: Having looked at another example at http://www.codeproject.com/KB/XML/MTOMWebServices.aspx this DOES encode data within the XOP element and as binary in the MIME part. Can anyone explain the difference between this, the BinaryDataMTOM sample and my previous 2 questions?

Supposedly MTOM automatically encodes in binary, but is this done on the service side? Because there is no method provided to upload the bytes. How do we manually add the XOP element and MIME parts?

EDIT 3: Ok the previous example I listed in EDIT 2 was working with XOP and MIME parts. But I made changes to test some things and decided to delete the project and redownload from the above link. Now when I run it it is encode in Base64 inline, as in my previous 2 examples. All I changed was updating the webservice and correcting the port number, and setting the Soap Version to 1.2.

Can anyone help, none of this is making any sense, I don't kno0w what I have done different from Edit 2 to Edit 3 to get rid of the XOP implementation.

EDIT 4: Ok, I realised what the problem was with the MTOM Chunked Transfer project, I forgot to change the Inherits from System.Web.Services.Protocols.SoapHttpClientProtocol to Microsoft.Web.Services3.WebServicesClientProtocol.

However, this change has already been made in my own project and not changed anything.

EDIT 5: Changing the inheriting class from System.Web.Services.Protocols.SoapHttpClientProtocol to Microsoft.Web.Services3.WebServicesClientProtocol in the BinaryDataMTOM sample also makes this automatically work with MTOM/XOP. What do I need to do to get my code to work?!!

link|improve this question

Answer can be found in another question I raised. stackoverflow.com/questions/8574938/… – anothershrubery Jan 26 at 16:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.