-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support MessageVersion Soap12WSAddressingAugust2004 (in System.ServiceModel.Channels) #2096
Comments
@zhenlan, I did I quick analysis of what this would take and there doesn't look to be any functionality that Soap12WSAddressingAugust2014 would need in WCF that the other existing MessageVersion's don't use. This version simply uses a slightly different addressing convention. This task should simply be a case of adding the message version and corresponding addressing version and fixing up a dozen places where we handle reading or writing the address to a SOAP message.
Items 1 & 2 need to be done at the same time otherwise the build breaks. If you are wanting to help out, those should be doable without being super familiar with the code base. Item 3 is a bit trickier as the references are in many places, some of which aren't applicable on .Net Core and could end up trying to pull in more code than is needed without context. Having said that, if you want to give item 3 a go you're welcome to and I can help through the code review. If you want to do items 1 & 2 and leave the rest to us, that would be fine too. |
@mconnew, thx for the analysis. I am done with 1 & 2 already and will create a pull request shortly. I may also have some time for 3 or 4 later today, will let you know ;) |
@davidreher, are you able to use a non-release build of this as it will be a while until our next release date where this will be available to .Net Core. |
sure, this will work for me, thx 👍 |
@mconnew, I just tried to use a preview build, but I do get an exception when trying to call the service ... I added
I am getting:
Any ideas? Edit: I tried adding Edit 2: Forget about it ... I had some other libraries which were still depending on 4.1.3 ... |
We are relying on a software which still provides old asmx services which require me to use Soap12WSAddressingAugust2014, which is available in .NET, but not in .NET Core.
Please provide this if possible. I am also happy to contribute, but I don't know which parts to change exactly ...
Currently only Soap12WSAddressing10, Soap12WSAddressing10, Soap11 and Soap12 are supported.
The text was updated successfully, but these errors were encountered: