Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

newbie - web services

Status
Not open for further replies.

plork123

Programmer
Mar 8, 2004
121
0
0
GB

Hello

I'm trying to write some web services.

I need the ws to expose a login method passing user credentials. User details are stored in the back-end db.

What would be the best approach to do this ?

I'm using Eclipse, WTP tools and AXIS SOAP

Thanks for any help
 
As we've tried to tell you, SOAP doesn't work like this. Each request to a SOAP service point is independent of any that have gone before it. You can't 'Log On' as you put it. Each request must carry the authentication info, and the SOAP server will reject it or honour it as the security model sees fit.

You could have a SOAP method which returns user information, but that wouldn't imply any kind of 'session' being begun.

Tim
---------------------------
"Your morbid fear of losing,
destroys the lives you're using." - Ozzy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top