Skip to Content.
Sympa Menu

mace-opensaml-users - Re: Problem handling the request

Subject: OpenSAML user discussion

List archive

Re: Problem handling the request


Chronological Thread 
  • From: "Mike Ferraro" <>
  • To: "Pranay Parsatwar" <>, <>
  • Cc: "Mohan Borwankar" <>, "Vaishali Sankhe" <>
  • Subject: Re: Problem handling the request
  • Date: Tue, 27 Jul 2004 10:33:10 -0400

Title: Welcome to the list
If you are using the OpenSAML libraries, then you should be able to use the SAMLSOAPBinding class to process the request.  It would look something like this...
 
  SAMLSOAPBinding binding = new SAMLSOAPBinding();
  try {
    SAMLRequest samlReq = binding.receive(request);  // request is your HttpServletRequest object
  }
  catch (SAMLException e) {
    // I believe that exceptions are most likely validation errors in the
    // SOAP space or errors with the SAMLRequest object structure
  }
 
  // process SAMLRequest
  // blah, blah, blah...
 
- Mike Ferraro
----- Original Message -----
From:
To:
Cc: ;
Sent: Tuesday, July 27, 2004 9:49 AM
Subject: Problem handling the request

Hello

 

I am facing problem in retrieving the SAML request on my listening servlet. The request object doesn’t get me any ServletInputStream or BufferedReader so I can read what is received. Need help for the same. And let me know if by any chance I am wrong in doing so. And if wrong then whats the way to solve the issue.

 

Thanks in advance

Pranay Parsatwar


From: [mailto:]
Sent: Tuesday, July 27, 2004 7:14 PM
To: Pranay Parsatwar
Subject: Welcome to the list mace-opensaml-users

 

Welcome to list .
Your subscription email is . Note that you will
need to post to the list from this email address.

 
List Description : 
List is for discussion among openSAML deployers and
programmers using openSAML

For further information and to modify your list preferences: https://mail.internet2.edu/wws/info/mace-opensaml-users




Archive powered by MHonArc 2.6.16.

Top of Page