On Mon, 19 May 2008 22:35:10 +0800, Rowland Watkins wrote:
> Hi Thomas,
> 
> Greetings from Hong Kong!
> 
> Good to see GRIA moving ahead!
>
> Regarding additional HTTP headers, is there a recommended naming scheme
> for attaching SAML tokens, or is the developer free to choose their own?

Hi Rowland,

I didn't find anything suitable, so for now the plan is to use "SAML-
Token". Here is some sample Groovy code to upload data to a stager using
HTTP with a SAML token:

def tokens = engine.getAttributeSelector().getTokens(stager.getEndpointRef(), 
null, engine)
String samlToken = XMLUtils.ElementToString(tokens[0])
samlToken = samlToken.replace("\n", "
")
Header[] headers = [new Header("SAML-Token", samlToken)]
transport.putURL(url, entity, headers)

However, we haven't yet released the version of the data service that accepts
this header. If anyone knows of a standard for this, please speak up now!

> Any ETA on GRIA 5.3 services?

We're hoping to have a beta that includes the services out some time in
the next few weeks.


-- 
Dr Thomas Leonard
IT Innovation Centre
2 Venture Road
Southampton
Hampshire SO16 7NP

Tel: +44 0 23 8076 0834
Fax: +44 0 23 8076 0833
mailto:[EMAIL PROTECTED]
http://www.it-innovation.soton.ac.uk 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gria-general mailing list
gria-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gria-general

Reply via email to