From 53e4eaa5a121c40cc2ce61a657072e973e19b869 Mon Sep 17 00:00:00 2001 From: Nicolas Clapies Date: Mon, 3 May 2004 15:12:17 +0000 Subject: add constants for soap --- lasso/xml/strings.c | 8 ++++++++ lasso/xml/strings.h | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/lasso/xml/strings.c b/lasso/xml/strings.c index d0eca0ee..d37abab9 100644 --- a/lasso/xml/strings.c +++ b/lasso/xml/strings.c @@ -111,3 +111,11 @@ const xmlChar lassoSamlConfirmationMethodArtifact01[] = "urn:oasis:names:tc:S const xmlChar lassoSamlConfirmationMethodBearer[] = "urn:oasis:names:tc:SAML:1.1:cm:bearer"; const xmlChar lassoSamlConfirmationMethodHolderOfKey[] = "urn:oasis:names:tc:SAML:1.0:cm:holder-of-key"; const xmlChar lassoSamlConfirmationMethodSenderVouches[] = "urn:oasis:names:tc:SAML:1.0:cm:sender-vouches"; + +/*****************************************************************************/ +/* SOAP */ +/*****************************************************************************/ + +/* prefix & href */ +const xmlChar lassoSoapEnvHRef[] = "http://schemas.xmlsoap.org/soap/envelope/"; +const xmlChar lassoSoapEnvPrefix[] = "soap-env"; diff --git a/lasso/xml/strings.h b/lasso/xml/strings.h index f788dd68..1f283a7f 100644 --- a/lasso/xml/strings.h +++ b/lasso/xml/strings.h @@ -120,6 +120,14 @@ LASSO_EXPORT_VAR const xmlChar lassoSamlConfirmationMethodBearer[]; LASSO_EXPORT_VAR const xmlChar lassoSamlConfirmationMethodHolderOfKey[]; LASSO_EXPORT_VAR const xmlChar lassoSamlConfirmationMethodSenderVouches[]; +/*****************************************************************************/ +/* SOAP */ +/*****************************************************************************/ + +/* prefix & href */ +LASSO_EXPORT_VAR const xmlChar lassoSoapEnvHRef[]; +LASSO_EXPORT_VAR const xmlChar lassoSoapEnvPrefix[]; + #ifdef __cplusplus } #endif /* __cplusplus */ -- cgit