Hey all,
I'm trying to streamline a login process that's entirely too complicated and
uses a SOAP call to authenticate the user with the backend. It also makes use of
javascript to direct, which I want to elimiate through the use of actions.
The current matchers look like this:
<map:match pattern="">
<map:redirect-to uri="login.html"/>
</map:match>
<!-- the login screen -->
<map:match pattern="login.html">
<map:read mime-type="text/html" src="login/login.html"/>
</map:match>
<!-- after the user has submitted the login details, process the login -->
<map:match pattern="login">
<map:generate type="serverpages" src="login/login.xsp"/>
<map:transform type="xslt" src="login/login.xsl"/>
<map:serialize type="html"/>
</map:match>
<map:match pattern="createsession">
<map:generate type="serverpages" src="login/createsession.xsp"/>
<map:transform type="xslt" src="login/createsession.xsl"/>
<map:serialize type="html"/>
</map:match>
What I want to know is: how would you guys handle authentication in a cocoon
webabb that needs to use soap? And if I wanted to use SOAP from within a java
class, are there any java examples of making soap requests?
thanks,
scott
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]