Ask a Question related to ASP.NET Security, Design and Development.
-
Arno #1
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
-
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: // -
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: ... -
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... -
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... -
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... -
Chris Marchal[MSFT] #2
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



Reply With Quote

