How to programatically create a Custom Binding with TransportWithMessageCredential?










1














I need to programatically create a wsHttpBinding (Custom Binding) and for this I need the following configuration:



 <binding name="ws_IMembershipService_TransportWithMessageCredential_Username" messageEncoding="Text" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="true" maxBufferPoolSize="524288" maxReceivedMessageSize="10000000">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" />
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
</binding>


What is the equivalent to this config in C#?










share|improve this question





















  • Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
    – mahlatse
    Nov 13 '18 at 18:31















1














I need to programatically create a wsHttpBinding (Custom Binding) and for this I need the following configuration:



 <binding name="ws_IMembershipService_TransportWithMessageCredential_Username" messageEncoding="Text" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="true" maxBufferPoolSize="524288" maxReceivedMessageSize="10000000">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" />
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
</binding>


What is the equivalent to this config in C#?










share|improve this question





















  • Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
    – mahlatse
    Nov 13 '18 at 18:31













1












1








1







I need to programatically create a wsHttpBinding (Custom Binding) and for this I need the following configuration:



 <binding name="ws_IMembershipService_TransportWithMessageCredential_Username" messageEncoding="Text" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="true" maxBufferPoolSize="524288" maxReceivedMessageSize="10000000">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" />
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
</binding>


What is the equivalent to this config in C#?










share|improve this question













I need to programatically create a wsHttpBinding (Custom Binding) and for this I need the following configuration:



 <binding name="ws_IMembershipService_TransportWithMessageCredential_Username" messageEncoding="Text" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="true" maxBufferPoolSize="524288" maxReceivedMessageSize="10000000">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="None" />
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
</binding>


What is the equivalent to this config in C#?







wcf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 12 '18 at 20:54









DAG

92711235




92711235











  • Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
    – mahlatse
    Nov 13 '18 at 18:31
















  • Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
    – mahlatse
    Nov 13 '18 at 18:31















Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
– mahlatse
Nov 13 '18 at 18:31




Or you can just serialize some random classes to have the same configuration as what you are tring tp achieve
– mahlatse
Nov 13 '18 at 18:31












1 Answer
1






active

oldest

votes


















0














Should be something like this:



EDIT: Still not sure if this will get you what you need, but maybe a good starting point. If not let me know I will delete.



 CustomBinding cb = new CustomBinding()

SendTimeout = System.TimeSpan.FromMinutes(1),
ReceiveTimeout = System.TimeSpan.FromMinutes(1),
CloseTimeout = System.TimeSpan.FromMinutes(1),
OpenTimeout = System.TimeSpan.FromMinutes(1),
;
HttpsTransportBindingElement a = new HttpsTransportBindingElement();
a.MaxReceivedMessageSize = 10000000;
a.MaxBufferSize = 524288;
a.BypassProxyOnLocal = true;
a.AuthenticationScheme = AuthenticationSchemes.None;
SymmetricSecurityBindingElement b = SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
TextMessageEncodingBindingElement c = new TextMessageEncodingBindingElement(MessageVersion.Soap11, System.Text.Encoding.UTF8);
SecurityBindingElement d = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
d.MessageSecurityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
c.ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas() MaxDepth = 32, MaxStringContentLength = 8192, MaxArrayLength = 16384, MaxBytesPerRead = 4096, MaxNameTableCharCount = 16384 ;
cb.CreateBindingElements();
cb.Elements.Add(a);
cb.Elements.Add(b);
cb.Elements.Add(c);
cb.Elements.Add(d);





share|improve this answer






















  • There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
    – DAG
    Nov 12 '18 at 22:00










  • @DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
    – Popo
    Nov 12 '18 at 23:09










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269943%2fhow-to-programatically-create-a-custom-binding-with-transportwithmessagecredenti%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Should be something like this:



EDIT: Still not sure if this will get you what you need, but maybe a good starting point. If not let me know I will delete.



 CustomBinding cb = new CustomBinding()

SendTimeout = System.TimeSpan.FromMinutes(1),
ReceiveTimeout = System.TimeSpan.FromMinutes(1),
CloseTimeout = System.TimeSpan.FromMinutes(1),
OpenTimeout = System.TimeSpan.FromMinutes(1),
;
HttpsTransportBindingElement a = new HttpsTransportBindingElement();
a.MaxReceivedMessageSize = 10000000;
a.MaxBufferSize = 524288;
a.BypassProxyOnLocal = true;
a.AuthenticationScheme = AuthenticationSchemes.None;
SymmetricSecurityBindingElement b = SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
TextMessageEncodingBindingElement c = new TextMessageEncodingBindingElement(MessageVersion.Soap11, System.Text.Encoding.UTF8);
SecurityBindingElement d = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
d.MessageSecurityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
c.ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas() MaxDepth = 32, MaxStringContentLength = 8192, MaxArrayLength = 16384, MaxBytesPerRead = 4096, MaxNameTableCharCount = 16384 ;
cb.CreateBindingElements();
cb.Elements.Add(a);
cb.Elements.Add(b);
cb.Elements.Add(c);
cb.Elements.Add(d);





share|improve this answer






















  • There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
    – DAG
    Nov 12 '18 at 22:00










  • @DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
    – Popo
    Nov 12 '18 at 23:09















0














Should be something like this:



EDIT: Still not sure if this will get you what you need, but maybe a good starting point. If not let me know I will delete.



 CustomBinding cb = new CustomBinding()

SendTimeout = System.TimeSpan.FromMinutes(1),
ReceiveTimeout = System.TimeSpan.FromMinutes(1),
CloseTimeout = System.TimeSpan.FromMinutes(1),
OpenTimeout = System.TimeSpan.FromMinutes(1),
;
HttpsTransportBindingElement a = new HttpsTransportBindingElement();
a.MaxReceivedMessageSize = 10000000;
a.MaxBufferSize = 524288;
a.BypassProxyOnLocal = true;
a.AuthenticationScheme = AuthenticationSchemes.None;
SymmetricSecurityBindingElement b = SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
TextMessageEncodingBindingElement c = new TextMessageEncodingBindingElement(MessageVersion.Soap11, System.Text.Encoding.UTF8);
SecurityBindingElement d = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
d.MessageSecurityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
c.ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas() MaxDepth = 32, MaxStringContentLength = 8192, MaxArrayLength = 16384, MaxBytesPerRead = 4096, MaxNameTableCharCount = 16384 ;
cb.CreateBindingElements();
cb.Elements.Add(a);
cb.Elements.Add(b);
cb.Elements.Add(c);
cb.Elements.Add(d);





share|improve this answer






















  • There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
    – DAG
    Nov 12 '18 at 22:00










  • @DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
    – Popo
    Nov 12 '18 at 23:09













0












0








0






Should be something like this:



EDIT: Still not sure if this will get you what you need, but maybe a good starting point. If not let me know I will delete.



 CustomBinding cb = new CustomBinding()

SendTimeout = System.TimeSpan.FromMinutes(1),
ReceiveTimeout = System.TimeSpan.FromMinutes(1),
CloseTimeout = System.TimeSpan.FromMinutes(1),
OpenTimeout = System.TimeSpan.FromMinutes(1),
;
HttpsTransportBindingElement a = new HttpsTransportBindingElement();
a.MaxReceivedMessageSize = 10000000;
a.MaxBufferSize = 524288;
a.BypassProxyOnLocal = true;
a.AuthenticationScheme = AuthenticationSchemes.None;
SymmetricSecurityBindingElement b = SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
TextMessageEncodingBindingElement c = new TextMessageEncodingBindingElement(MessageVersion.Soap11, System.Text.Encoding.UTF8);
SecurityBindingElement d = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
d.MessageSecurityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
c.ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas() MaxDepth = 32, MaxStringContentLength = 8192, MaxArrayLength = 16384, MaxBytesPerRead = 4096, MaxNameTableCharCount = 16384 ;
cb.CreateBindingElements();
cb.Elements.Add(a);
cb.Elements.Add(b);
cb.Elements.Add(c);
cb.Elements.Add(d);





share|improve this answer














Should be something like this:



EDIT: Still not sure if this will get you what you need, but maybe a good starting point. If not let me know I will delete.



 CustomBinding cb = new CustomBinding()

SendTimeout = System.TimeSpan.FromMinutes(1),
ReceiveTimeout = System.TimeSpan.FromMinutes(1),
CloseTimeout = System.TimeSpan.FromMinutes(1),
OpenTimeout = System.TimeSpan.FromMinutes(1),
;
HttpsTransportBindingElement a = new HttpsTransportBindingElement();
a.MaxReceivedMessageSize = 10000000;
a.MaxBufferSize = 524288;
a.BypassProxyOnLocal = true;
a.AuthenticationScheme = AuthenticationSchemes.None;
SymmetricSecurityBindingElement b = SecurityBindingElement.CreateSspiNegotiationBindingElement(true);
TextMessageEncodingBindingElement c = new TextMessageEncodingBindingElement(MessageVersion.Soap11, System.Text.Encoding.UTF8);
SecurityBindingElement d = SecurityBindingElement.CreateUserNameOverTransportBindingElement();
d.MessageSecurityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
c.ReaderQuotas = new System.Xml.XmlDictionaryReaderQuotas() MaxDepth = 32, MaxStringContentLength = 8192, MaxArrayLength = 16384, MaxBytesPerRead = 4096, MaxNameTableCharCount = 16384 ;
cb.CreateBindingElements();
cb.Elements.Add(a);
cb.Elements.Add(b);
cb.Elements.Add(c);
cb.Elements.Add(d);






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 12 '18 at 23:08

























answered Nov 12 '18 at 21:58









Popo

1,93842143




1,93842143











  • There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
    – DAG
    Nov 12 '18 at 22:00










  • @DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
    – Popo
    Nov 12 '18 at 23:09
















  • There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
    – DAG
    Nov 12 '18 at 22:00










  • @DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
    – Popo
    Nov 12 '18 at 23:09















There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
– DAG
Nov 12 '18 at 22:00




There s no WSHttpBinding anymore. At least I cannot see it. I use netcore and apparently there is a bug when setting SecurityMode: github.com/dotnet/wcf/issues/8
– DAG
Nov 12 '18 at 22:00












@DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
– Popo
Nov 12 '18 at 23:09




@DAG ah okay, did not quite understand the question there. I made an update to the answer, not sure how applicable it is for you, if it is far off I will just delete it. good luck.
– Popo
Nov 12 '18 at 23:09

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269943%2fhow-to-programatically-create-a-custom-binding-with-transportwithmessagecredenti%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3