-
Notifications
You must be signed in to change notification settings - Fork 379
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
feat(wsdl-meta): allow to customize message names for operation #1044
feat(wsdl-meta): allow to customize message names for operation #1044
Conversation
I'm thinking that this should be used in MetaWCFBodyWriter also. Thoughts? |
Yep, definitely someone might want to customize it for WCF. |
As far as I can tell it's the same? SoapCore/src/SoapCore/Meta/MetaWCFBodyWriter.cs Lines 990 to 1037 in dbc8525
BindingType is confusingly named. It's set to service.GeneralContract.Name in the constructor |
Added support for MetaWCFBodyWriter |
Looks good! Thank you! |
I have several SOAP services and they generate different message names for operations.
This PR extends SoapCore so users can customize the input/output messages in whatever way they want.