WcfCoreMtomEncoder icon indicating copy to clipboard operation
WcfCoreMtomEncoder copied to clipboard

MTOM message encoder for .NET Core WCF

Results 12 WcfCoreMtomEncoder issues
Sort by recently updated
recently updated
newest added

Hello, The default hard-coded value of 'maxSizeOfheaders' is 1024 (MtomMessageEncoder.cs). Please make this configurable because of error "The size necessary to buffer the XML content exceeded the buffer quota"

add in MtomMessageEncoder.cs, line 5: `using System.Net;` change in MtomMessageEncoder.cs, line 111/112: `return WebUtility.UrlDecode(href.Groups["uri"].Value) == WebUtility.UrlDecode(partId.Groups["uri"].Value);`

Hi, thanks for making it possible to support MTOM for dotnet 5. I am experiencing the following Exception: ``` System.ArgumentNullException: Value cannot be null. (Parameter 'input') at System.Text.RegularExpressions.ThrowHelper.ThrowArgumentNullException(ExceptionArgument arg) at...

The old Mtom Soap Service we need to use in our .net core project returns as Content-Type this value: Content-Type: application/xop+xml; type=\"application/soap+xml\"; charset=\"utf-8\" Error Message: Encoding is not supported ""utf-8""...

I am consuming one of our third party vendor's soap and they are using MTOM encoding. My application is using .net core 2.2 and here is the code i am...

Hi, @lennykean! Is there a reason why the maxSizeOfHeaders is set to 1024 in the MtomMessageEncoder? And can it be a larger value? When receiving large amounts of data over...

porting from a legacy app to .netCore is it possible to use binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Certificate;

Any chance you could sign the assembly (strongname) and publish a new version of the nuget package?

While using your library, I noticed that several of my SOAP messages do not specify `Content-Id` or `Content-Transfer-Encoding` for the XML part of the multipart message. This caused an `ArgumentNullException`...