Ask a Question related to ASP.NET Web Services, Design and Development.
-
Tom #1
Webservices and "pass through" security
Hi,
I am currently on a project where one site needs to send the user
credentials to another site, through web services.
Scenario:
* "User 1" will authenticate to "Site A" using NTLM ("Site A" provides
front-end presentation of data)
* "Site A" will request confidential information about "User 1" to "Site B"
("Site B" has a database of confidential data for each user), via web
service call
The developers of "Site B" are worried about "Site A" sending the wrong
credentials (i.e. wrong NT login ID), meaning that the visitor of "Site A"
could see someone else data...
How could we resolve this using standard .NET webservices?
How can we garantee to "Site B" that the visitor on "Site A" is really "User
1"?
Also, how can we ensure that only the webservice client from "Site A" can
access the webservice from B? We suggested IP address registration of Site A
servers with "Site B", but the developers think this is not enough.
Many thanks!!
Tom
Tom Guest
-
#40480 [NEW]: COM: "Cannot pass parameter by reference" error since 5.2.1
From: tetikr at spytech dot cz Operating system: Windows XP, IIS 5.1 PHP version: 5.2.1 PHP Bug Type: COM related Bug... -
FP8 on OS 10.4.4 : can't pass "Please close all browser"message
I am trying to install FP8 on OS 10.4.4. Before installing a close all the applications, but at some point I obtain the message "It appears that a... -
How do I pass an object to webcontrol that is loaded using the "LoadLontrol" method ? .NET 2005 Beta.
Hi all, Because of the nature of my application, I have a web control that is being loaded and added to my form at runtime using the LoadControl... -
"Pattern" or "best practice" in security checks
Hi Im developing an ASP.NET CRUD application where i need to do some authorization checks on surden actions. Eg. some account have access to... -
can i use "pass" form data from login script
I'm trying to use the "pass" field from the built-in login script to filter a recordset on the next page following a successful login. However,... -
BillyLiu007 #2
RE: Webservices and "pass through" security
yes there is a way of doing it....
i quote this from the WSE2.0(web serivce enhancement) document
Web services can be secured today, but limitations exist when it comes to
building scalable distributed applications based on Web services.
Specifically, it is difficult to build scalable applications that cross
security domains. Today, you can secure Web services by having the message
sent over a secure transport, such as Secure Sockets Layer (SSL), but that
only works when the communication is point-to-point. That is, if the SOAP
message must be routed to one or more intermediaries before reaching the
ultimate receiver and the entire route uses SSL, then the ultimate receiver
still has to communicate with the sender to authenticate the sender of the
SOAP message. That scenario is difficult to scale.
One of the ways WSE helps to build scalable distributed applications is by
providing an efficient and scalable mechanism to secure Web services. It uses
the mechanisms defined in the WS-Security specification to place security
credentials in the SOAP message itself. This is done by having a client
obtain security credentials from a source that is trusted by both the sender
and receiver. When a SOAP message sender sends a SOAP request, those security
credentials, which are generically known as security tokens, are then placed
in the SOAP message.
...............
for full article, please refer here:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wse/html/3c55ed70-6b66-4620-bba7-59c5b2f2191d.asp[/url]
--
Can You?You Can.
"Tom" wrote:
> Hi,
>
> I am currently on a project where one site needs to send the user
> credentials to another site, through web services.
>
> Scenario:
>
> * "User 1" will authenticate to "Site A" using NTLM ("Site A" provides
> front-end presentation of data)
> * "Site A" will request confidential information about "User 1" to "Site B"
> ("Site B" has a database of confidential data for each user), via web
> service call
>
> The developers of "Site B" are worried about "Site A" sending the wrong
> credentials (i.e. wrong NT login ID), meaning that the visitor of "Site A"
> could see someone else data...
>
> How could we resolve this using standard .NET webservices?
>
> How can we garantee to "Site B" that the visitor on "Site A" is really "User
> 1"?
>
> Also, how can we ensure that only the webservice client from "Site A" can
> access the webservice from B? We suggested IP address registration of Site A
> servers with "Site B", but the developers think this is not enough.
>
> Many thanks!!
> Tom
>
>
>BillyLiu007 Guest



Reply With Quote

