diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-05-03 15:12:17 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-05-03 15:12:17 +0000 |
| commit | 53e4eaa5a121c40cc2ce61a657072e973e19b869 (patch) | |
| tree | a1d53cbf4d631fe1d455643d29c0c3023c19cd04 | |
| parent | 843d643b20193f69afea99df09c17fd9dacffd66 (diff) | |
| download | lasso-53e4eaa5a121c40cc2ce61a657072e973e19b869.tar.gz lasso-53e4eaa5a121c40cc2ce61a657072e973e19b869.tar.xz lasso-53e4eaa5a121c40cc2ce61a657072e973e19b869.zip | |
add constants for soap
| -rw-r--r-- | lasso/xml/strings.c | 8 | ||||
| -rw-r--r-- | lasso/xml/strings.h | 8 |
2 files changed, 16 insertions, 0 deletions
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 */ |
