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 gave and was wondering if anyone had an idea for a workaround.
I am having the same problem as indicated in the answer above. The problem is I have a third party webservice that I need to send attached files to using MTOM/XOP to send as one transmission. I cannot change this third party webservice at all. Unfortunately, this third party webservice requires the xop:Include element to look like this:
<xop:Include href="cid:http://tempuri.org/1/634644692655321441" xmlns:xop="http://www.w3.org/2004/08/xop/include"/>
But it ends up looking like this when sent via WCF MTOM message encoding:
<xop:Include href="cid:http%3A%2F%2Ftempuri.org%2F1%2F634644692655321441" xmlns:xop="http://www.w3.org/2004/08/xop/include"/>
My first attempt was to use the standard basicHTTPBinding with messageencoding = "mtom". However, that is where the above problem pops up. The file is sent with a custom XML Datacontract that has the file as a Byte() element in the XML. When the client is created and passes the information it seems to do everything correctly except for the above noted issue. It correctly replaces the file in the XML with a xop:Include element and moves the file down to a seperate MIME part. However, the xop:Include href="cid..." has been URLEncoded.
As far as I can tell, the MTOM element itself does not seem to have any extensibility that allows changing the format of the xop:Include element. It appears that the only solution is to write a custom MessageEncodingBindingElement, MessageEncoderFactory, and finally MessageEncoder to actually trap when the message is about to be sent over the transport layer, encode the message via XmlDictionaryWriter.CreateMtomWriter, format the xop:Include element manually in the WriteMessage function, and then send return the formatted MTOM message to the wire to be sent on to the service.
So far I have run into all sorts of issues with implementing the custom message encoder. The latest error being a HTTP Error 500 when transmitting the file. This is without manipulating the file at all except to just write it out with the default mtomwriter. I am not modifying the xop:Include at all yet. This should be returning the SOAP Fault I am getting when I send this file via the basicHTTPBinding with messageencoding = "mtom", but it is not.
I am just wondering if I am overly complicating this and there is another way to do this or any recommendations on the best way to write custom message encoders. I've used numerous examples from the web to build my custom encoder as this is my first time trying to do this.