Click here to Skip to main content
15,896,063 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: WPF and SQL Reporting Services Pin
nevecaju25-Feb-10 3:14
nevecaju25-Feb-10 3:14 
QuestionSilverlight 3 Install Failed Pin
#realJSOP27-May-09 3:43
professional#realJSOP27-May-09 3:43 
AnswerRe: Silverlight 3 Install Failed Pin
Mark Salsbery27-May-09 9:02
Mark Salsbery27-May-09 9:02 
GeneralRe: Silverlight 3 Install Failed Pin
#realJSOP27-May-09 23:46
professional#realJSOP27-May-09 23:46 
GeneralRe: Silverlight 3 Install Failed Pin
#realJSOP28-May-09 0:00
professional#realJSOP28-May-09 0:00 
GeneralRe: Silverlight 3 Install Failed Pin
Kevin McFarlane29-May-09 23:31
Kevin McFarlane29-May-09 23:31 
GeneralRe: Silverlight 3 Install Failed Pin
#realJSOP30-May-09 3:05
professional#realJSOP30-May-09 3:05 
QuestionWCF issue Pin
Tauseef A27-May-09 2:06
Tauseef A27-May-09 2:06 
hi guys

i am new to wcf, i have a wpf client and a wcf service hosted in window service verything goes fine when i access this service from the local wpf client , but when access this wcf service hosted in window service through another pc i get the following error

"soap security negotiation with "address" for target "address" failed."

can any body tell me where is the problem, it is not a domain environment . my window serivce is running under local system account .
my client config is as follow

system.serviceModel
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IUsers" 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://Tauseef-pc:8731/WCF/Service1/"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUsers"
contract="SR.IUsers" name="WSHttpBinding_IUsers">
<identity>
<dns value="Tauseef-pc"/>
</identity>
</endpoint>
</client>
</system.serviceModel>

my server config is as follow ..

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service behaviorConfiguration="WCF.Service1Behavior" name="WCF.UserS">
<endpoint address="" binding="wsHttpBinding" bindingConfiguration=""
contract="WCF.IUsers">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://Tauseef-pc:8731/WCF/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WCF.Service1Behavior">
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="True"/>
<!-- To receive exception details in faults for debugging purposes,
set the value below to true. Set to false before deployment
to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>


thanks in advance
Regards .

Tauseef A Khan
MCP Dotnet framework 2.0.

QuestionRe: WCF issue Pin
Mark Salsbery27-May-09 6:24
Mark Salsbery27-May-09 6:24 
QuestionRe: WCF issue Pin
Tauseef A27-May-09 18:18
Tauseef A27-May-09 18:18 
QuestionRe: WCF issue [modified] Pin
Mark Salsbery28-May-09 5:24
Mark Salsbery28-May-09 5:24 
QuestionRe: WCF issue Pin
Tauseef A28-May-09 8:45
Tauseef A28-May-09 8:45 
AnswerRe: WCF issue Pin
Mark Salsbery28-May-09 8:52
Mark Salsbery28-May-09 8:52 
QuestionRe: WCF issue Pin
Tauseef A28-May-09 9:07
Tauseef A28-May-09 9:07 
AnswerRe: WCF issue Pin
Mark Salsbery28-May-09 9:33
Mark Salsbery28-May-09 9:33 
QuestionLogin and Registration in silver light Pin
Nekkantidivya27-May-09 1:26
Nekkantidivya27-May-09 1:26 
QuestionRe: Login and Registration in silver light Pin
Mark Salsbery27-May-09 9:09
Mark Salsbery27-May-09 9:09 
AnswerRe: Login and Registration in silver light Pin
Ray Cassick27-May-09 18:20
Ray Cassick27-May-09 18:20 
AnswerRe: Login and Registration in silver light Pin
Michael Sync23-Jul-09 20:37
Michael Sync23-Jul-09 20:37 
QuestionParent Canvas mouse button effecting on Child Canvas Pin
pavanip27-May-09 0:43
pavanip27-May-09 0:43 
QuestionRe: Parent Canvas mouse button effecting on Child Canvas Pin
Mark Salsbery27-May-09 9:10
Mark Salsbery27-May-09 9:10 
AnswerRe: Parent Canvas mouse button effecting on Child Canvas Pin
pavanip29-May-09 1:58
pavanip29-May-09 1:58 
AnswerRe: Parent Canvas mouse button effecting on Child Canvas Pin
pavanip29-May-09 2:02
pavanip29-May-09 2:02 
GeneralRe: Parent Canvas mouse button effecting on Child Canvas Pin
Mark Salsbery29-May-09 6:04
Mark Salsbery29-May-09 6:04 
QuestionHow to implement RSS feeds in WPF application Pin
Nekkantidivya26-May-09 19:40
Nekkantidivya26-May-09 19:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.