-
Notifications
You must be signed in to change notification settings - Fork 564
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
Why WSHttpBinding convert to CustomBinding ? #1370
Comments
WsHttpBinding isn't currently supported, see issue #31. They are probably not completely compatible, but I've found I can make at least basic calls to WS-* based services. |
Hi @gzpbx, as @StrangeWill explained it is because the WS* bindings are not currently supported in .NET Core. Please let us know if you run into any issues. |
cc @StrangeWill |
Ouch, yeah you'll need to wait for WsHttpBinding support then @bc3tech :( |
@zhenlan @StrangeWill the CustomBinding working fine for me when the wcf server only support WsHttpBinding binding , I think if there is no security demand CustomBinding works fine. |
Hi @gzpbx -- what is the latest status on this issue? Is using a CustomBinding without asking for security an adequate workaround for you? Thanks. |
@roncain, it's OK for me. And our product is running online. Just weird ... |
Closing. Thanks for the update @gzpbx! |
so.... this is closed because it works now? my error above should no longer happen? |
Sorry for my brevity @bc3tech. Please let me explain. This issue is about "why WSHttpBinding convert to CustomBinding" in the code generated by WCF Connected Service. The answer to that is because WSHttpBinding is currently not supported. I understand CustomBinding may not work for all scenarios as an alternative solution. To ultimately solve this issue, it requires the support of WS*Binding, which is tracked in #31. There is nothing more for this issue to track and thus closed. Does this make sense to you? |
Is there any workarounds? I tried creating custom bindings, but there is a mismatch between Soap 1.1 and 1.2. |
I am using WCF Connected Service to generate the WCF client code , I see some code like this --
Why when endpointConfiguration = WSHttpBinding then create a CustomBinding, are they total compatible ?
The text was updated successfully, but these errors were encountered: