Search results for query: *

  • Users: blurgal
  • Content: Threads
  • Order by date
  1. B

    How to hide the contents input in webform textbox?

    Dear frens, I have created a login page with two textboxes for users to key in their username n password. I have also a submit button with the following codes: Dim myConnection As SqlConnection myConnection = New SqlConnection(encryptConn.DecryptConnectionString()) myConnection.Open() Dim...
  2. B

    Will this code statement directly get a kerberos token from the server?

    My web service .asmx file has this function that validates a token to make sure it is a kerberos token. Public Function ValidateToken() As Boolean If TypeOf sigTok Is KerberosToken Then 'The logged in user is checked against the Kerberos Key Distribution Center(KDC). Return...
  3. B

    Problems with kerberos authentication.

    I have this source code listed below. When I run the application I will get message error saying: The kerberos ticket cannot be retrieved.The RetriveKerbTicket call failed with the following message: There are currently no logon servers available to service the logon request. What is the...
  4. B

    How to change these C# statements to VB.net

    public string Username; public string Password; private void OkButton_Click(object sender, System.EventArgs e) { Username = UsernameTextBox.Text; Password = PasswordTextBox.Text; this.DialogResult = DialogResult.OK; this.Hide(); } if( credform.ShowDialog() == DialogResult.OK ) {...
  5. B

    Why WSE2.0 hands-on lab examples not working?

    Dear friends, I am a newbie in Web Service Security. Therefore I downloaded the WSE2.0 hands-on lab to learn how to write secure web service. I followed all the steps precisely from the lab manual but it didnt work. Thus I resorted instead to try run the samples given together with the manual...
  6. B

    Are there any tutorials to teach me how to create digital signature in web services

    Dear friends, I am a newbie in vb.net. I am still learning the ropes in the syntax. However, I am given an assignment by my lecturer to create digital signature in web services in vb.net. Can anyone tell me where I can find tuotrials and step by step guide to create digital signatures in web...
  7. B

    How to use XML Digital Signatures for web service Licensing

    Hello friends, I want to create digital signatures to license my web services. However I do not know the method. Can anyone out there guide me on how to integrate digital signature into web services for licensing purposes. If there are sample source codes in vb.net plz do send them to me at...
  8. B

    How To Limit Only Subscribed Users To Web Methods In Web Service?

    Dear friends, I have been given a task by my lecturer. I have built a simple web service called MathService. This MathService has 3 web methods that are addition, subtraction and multiply. My lecturer wants me to limit the access of this web methods to only subscribed users. This means that if...
Back
Top