Ask a Question related to ASP.NET Web Services, Design and Development.
-
Prajakta J. #1
Prob while using Kerberos in webservice
Hi,
I m trying to use kerberos security method and calling a simple a WS
which will display user's name. Code is as below :
targetPrincipalName = "host/" + System.Net.Dns.GetHostName()
Dim kerbToken As KerberosToken = New KerberosToken(targetPrincipalName)
If IsNothing(kerbToken) Then
Throw New ApplicationException("Unable to obtain security token.")
End If
Dim KerbProxy As New Reference.TestServiceWse
KerbProxy.RequestSoapContext.Security.Tokens.Add(k erbToken)
KerbProxy.RequestSoapContext.Security.Timestamp.Tt lInSeconds = 60
KerbProxy.RequestSoapContext.Security.Elements.Add (New
MessageSignature(kerbToken))
KerbProxy.RequestSoapContext.Security.Elements.Add (New
EncryptedData(kerbToken))
Return KerbProxy.GetName()
When i run my WS Client, it gives an error as:
System.Security.SecurityException: The Kerberos ticket could not be
retrieved. The RetrieveKerbTicket call failed with the following
message: There are currently no logon servers available to service the
logon request.
what is the reason? if i m missing something? What is the solution?
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Prajakta J. Guest
-
kerberos
I want to create kerberos security for web-forum. Does anybody know what I need and What I have to do? -
Calling a webservice using Kerberos
I'm writing a webpart which is supposed to connect to a Webserice in our interanet.I am using "RSService.Credentials =... -
Prob using a custom type in asp.net webservice
I have the following sample asp.net webservice: .... namespace x { public class WS : System.Web.Services.WebService { ... public class... -
Kerberos issues when doing rcp
Error krshd: Kerberos Authentication Failed. rcp: Kerberos V4 rcp failed: rcmd protocol failure. i think its due to the expiry of Kerberos... -
Kerberos Delegation
Hi I would like to know if Kerberos Delegation is possible in a multi Hop scenario. For example: Is the following scenario possible? A Client...



Reply With Quote

