![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | Message Security usage Hi There, I have a scenario where in , i need to use wsHttpBinding binding , so the default is message security and client credential type is Windows . my service app.config looks like this : <system.serviceModel> <bindings /> <behaviors> <serviceBehaviors> <behavior name="NewBehavior"> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> <services> <service behaviorConfiguration="NewBehavior" name="SampleService.Service"> <endpoint address="SampleService" binding="wsHttpBinding" bindingConfiguration="" contract="SampleService.IService" /> <endpoint address="Mex" binding="mexHttpBinding" bindingConfiguration="" contract="IMetadataExchange" /> <host> <baseAddresses> <add baseAddress="http://localhost:2000/" /> </baseAddresses> </host> </service> </services> </system.serviceModel> and now when i generate the proxy and clients app.config , app.config of client is shown below <system.serviceModel> <bindings> <wsHttpBinding> <binding name="WSHttpBinding_IService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"> <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /> <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /> <security mode="Message"> <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /> <message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true" /> </security> </binding> </wsHttpBinding> </bindings> <client> <endpoint address="http://localhost:2000/SampleService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService" contract="SampleClient.ServiceReference.IService" name="WSHttpBinding_IService"> </endpoint> </client> </system.serviceModel> NOW , the question is when the security mode is " Message " , what is the reason behind having transport tags and configuring it to windows . could anybody throw some light on it. Thanks in Advance |
My System Specs![]() |
| | #2 (permalink) |
| | Security Advice HI There, my scenerio: Client : winform client , the client should prompt a LOGIN form service : WCF with WSHTTPBINDING ( i am planning to use "message" Security mode, with windows as client credentials) Deployment scenerio : 1. only users with windows account are authenticated. 2. may or may not have domain controllers (all m/c may be in workgroup) given the above , i am slightly confussed on how to get a common config settings for point 2. Could anybody suggest . Thanks in Advance |
My System Specs![]() |
| | #3 (permalink) |
| | Re: Message Security usage If security is set to Message, the transport tag is ignored. However, if the security is set to TransportWithMessageCredential, both tags are used. Why? Encrytion and Signature is done at transport (HTTP) and credentials travel through the rich WS-Security/WS-Trust/WS-Policy model with Security Tokens of your choosing like SAML, Kerberos, Username, X.509. Tiago Halm "DEE" <tsdeepak@xxxxxx> wrote in message news:c2ac321a-a13a-4d55-a34b-5fa646e1b60c@xxxxxx Quote: > Hi There, > > I have a scenario where in , i need to use wsHttpBinding binding , > so the default is message security and client credential type is > Windows . my service app.config looks like this : > > <system.serviceModel> > <bindings /> > <behaviors> > <serviceBehaviors> > <behavior name="NewBehavior"> > <serviceMetadata httpGetEnabled="true" /> > </behavior> > </serviceBehaviors> > </behaviors> > <services> > <service behaviorConfiguration="NewBehavior" > name="SampleService.Service"> > <endpoint address="SampleService" > binding="wsHttpBinding" bindingConfiguration="" > contract="SampleService.IService" /> > <endpoint address="Mex" binding="mexHttpBinding" > bindingConfiguration="" > contract="IMetadataExchange" /> > <host> > <baseAddresses> > <add baseAddress="http://localhost:2000/" /> > </baseAddresses> > </host> > </service> > </services> > </system.serviceModel> > > > and now when i generate the proxy and clients app.config , app.config > of client is shown below > > > <system.serviceModel> > <bindings> > <wsHttpBinding> > <binding name="WSHttpBinding_IService" > closeTimeout="00:01:00" > openTimeout="00:01:00" receiveTimeout="00:10:00" > sendTimeout="00:01:00" > bypassProxyOnLocal="false" transactionFlow="false" > hostNameComparisonMode="StrongWildcard" > maxBufferPoolSize="524288" > maxReceivedMessageSize="65536" > messageEncoding="Text" textEncoding="utf-8" > useDefaultWebProxy="true" > allowCookies="false"> > <readerQuotas maxDepth="32" > maxStringContentLength="8192" maxArrayLength="16384" > maxBytesPerRead="4096" > maxNameTableCharCount="16384" /> > <reliableSession ordered="true" > inactivityTimeout="00:10:00" > enabled="false" /> > <security mode="Message"> > <transport clientCredentialType="Windows" > proxyCredentialType="None" > realm="" /> > <message clientCredentialType="Windows" > negotiateServiceCredential="true" > algorithmSuite="Default" > establishSecurityContext="true" /> > </security> > </binding> > </wsHttpBinding> > </bindings> > <client> > <endpoint address="http://localhost:2000/SampleService" > binding="wsHttpBinding" > bindingConfiguration="WSHttpBinding_IService" > contract="SampleClient.ServiceReference.IService" > name="WSHttpBinding_IService"> > </endpoint> > </client> > </system.serviceModel> > > NOW , the question is when the security mode is " Message " , what is > the reason behind having transport tags and configuring it to > windows . > > could anybody throw some light on it. > > Thanks in Advance |
My System Specs![]() |
| | #4 (permalink) |
| | Re: Security Advice If no domain is available (you are in a workgroup) then the client can be set to authenticate via NTLM instead of kerberos. For kerberos the client must have the target name (Servie Principal Name) set or the UPN (User Principal Name). If NTLM, the client can have an empty servicePrincipalName. Generate the client proxy and look at the generated configuration. Change it where needed, see below. Kerberos: <client> <endpoint ...> <identity ...> <servicePrincipalName value="http/foo.bar.com"> or <userPrincipalName value="hello@xxxxxx"> NTLM: <client> <endpoint ...> <identity ...> <servicePrincipalName> Tiago Halm "DEE" <tsdeepak@xxxxxx> wrote in message news:d97b4094-ed0c-45ef-90df-0999b93767ca@xxxxxx Quote: > HI There, > > my scenerio: > > Client : winform client , the client should prompt a LOGIN form > > service : WCF with WSHTTPBINDING ( i am planning to use "message" > Security mode, with windows as client credentials) > > Deployment scenerio : > > 1. only users with windows account are authenticated. > 2. may or may not have domain controllers (all m/c may be in > workgroup) > > given the above , i am slightly confussed on how to get a common > config settings for point 2. > > > > > Could anybody suggest . > > Thanks in Advance |
My System Specs![]() |
| | #5 (permalink) |
| | Re: Message Security usage Hi Tiago Halm, Thanks for your response . i have one more question though : if am using security mode as "Message" , then does kerberos or NTLM come into picture . as per my knowledge " kerberos / NTLM is used only during transport autentication " is this statement correct ? "kerberos/NTLM is used when windows autenication is in place irrespective of security mode used " is this statement correct ? when "Message" security mode is used with clientcredentails configured to "Windows" , does this use kerberos/ntlm under the hood Thanks in Advance Regards DEE |
My System Specs![]() |
| | #6 (permalink) |
| | Re: Message Security usage Kerberos and NTLM can both be sent by the transport protocol (HTTP) or SOAP. Quote: > " kerberos / NTLM is used only during transport autentication " is > this statement correct ? Quote: > "kerberos/NTLM is used when windows autenication is in place > irrespective of security mode used " is this statement correct ? Quote: > when "Message" security mode is used with clientcredentails configured > to "Windows" , does this use kerberos/ntlm under the hood Tiago Halm On Apr 3, 7:54*am, DEE <tsdee...@xxxxxx> wrote: Quote: > HiTiago Halm, > > Thanks for your response . > > i have one more question though : > > if am using security mode as "Message" , then does kerberos or NTLM > come into picture . as per my knowledge > > " kerberos / NTLM is used only during transport autentication " is > this statement correct ? > > "kerberos/NTLM is used when windows autenication is in place > irrespective of security mode used " is this statement correct ? > > when "Message" security mode is used with clientcredentails configured > to "Windows" , does this use kerberos/ntlm under the hood > > Thanks in Advance > > Regards > DEE |
My System Specs![]() |
| | #7 (permalink) |
| | Re: Message Security usage Hi Tiago Halm, Thanks for the response and your time . it was really helpfull. Regards dee |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| security firewall message | .NET General | |||
| Security Centre Message | Vista General | |||
| Windows Security Log in Message | Vista mail | |||
| Bug: Incorrect security message | Vista security | |||