Authentication method for Web Service

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Authentication method for Web Service

    Hi..

    I am currently writing a manager that creates Windows Schedules remotely via. web services. I have just a few questions. What is the best way to Authenticate incoming requests (and remember the SOAP request can come from non .net clients i.e. J2EE)? I need to encrypt these SOAP messages - what is the common practise for this?

    Regards,
    Arno

    Arno Guest

  2. Similar Questions and Discussions

    1. Web Service Array method
      How do I use the Web Service array method below and display the results to a gridview on the client? using C#: My Web Service method: //
    2. Returning XML from web service method
      I have web service method that returns XML similar to what is shown below. The actual return value from the web service method is an XmlDocument: ...
    3. More then one Authentication Method
      We are using LDAP Authentication Method but sometimes some external users need to login our system. These users are not one of our LDAP users and we...
    4. 2 sites - 1 authentication method
      We have developed two sites that both use forms authentication and have objects with custom principle interfaces and identity interfaces. I would...
    5. Setting the Authentication Method on IIS from my SETUP project
      Hello, How's everybody??? Hey I have a quick question. How can I set up the Authentication Mode on IIS from my SETUP project. I'm using...
  3. #2

    Default RE: Authentication method for Web Service

    MSDN has just posted the following on J2EE interop and may be useful for
    architecting your app:

    [url]http://www.msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag/h[/url]
    tml/jdni.asp

    There are also standards in development that may be of use. These are
    usually refered to as 'Web Service Enhancements'. The .NET stuff is here
    and there should be equivalents elswhere on the web:

    [url]http://www.msdn.microsoft.com/webservices/[/url]

    and here:

    [url]http://msdn.microsoft.com/webservices/building/wse/default.aspx?pull=/librar[/url]
    y/en-us/dnwebsrv/html/wsejavainterop.asp

    On a more practical level, SSL may serve your encryption needs. If you are
    able to use SSL then you could try basic authentication for authentication.
    The credentials will be secured by the underlying transport.

    You should also be able to encrypt data yourself using the cryptography
    classes in the .NET framework and use Java classes to decrypt (or vice
    versa) as they should all be based on the same crypto standards.

    Chris Marchal
    Microsoft UK Developer Support
    This posting is provided "AS IS" with no warranties, and confers no rights.

    Chris Marchal[MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139