webwise
webwise

Reputation: 627

SOAP with Attachment (SwA) in C#

I need to use .NET in order to consume a JAVA written SOAP service which expects simple MIME attachments on some of its method.

Does anybody know how to accomplish it? I could not find any information about using WCF or even WSE clients with such attachments.

Thanks!

Upvotes: 8

Views: 6408

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

This is not supported by .NET clients natively. You might take a look at the following discussion on MSDN forums. If you install WSE 2.0 there is an example at the following location: C:\Program Files\Microsoft WSE\v2.0\Samples\CS\QuickStart\Attachments\AttachmentsClient

Upvotes: 7

Related Questions