move wsdl namespace constants to Helper

This commit is contained in:
Andreas Schamberger
2011-12-04 15:38:23 +01:00
parent d9bc76dfc3
commit c7e8928dfa
2 changed files with 32 additions and 25 deletions

View File

@ -71,6 +71,26 @@ class Helper
*/
const NS_WSA = 'http://www.w3.org/2005/08/addressing';
/**
* WSDL 1.1 namespace.
*/
const NS_WSDL = 'http://schemas.xmlsoap.org/wsdl/';
/**
* WSDL MIME namespace.
*/
const NS_WSDL_MIME = 'http://schemas.xmlsoap.org/wsdl/mime/';
/**
* WSDL SOAP 1.1 namespace.
*/
const NS_WSDL_SOAP_1_1 = 'http://schemas.xmlsoap.org/wsdl/soap/';
/**
* WSDL SOAP 1.2 namespace.
*/
const NS_WSDL_SOAP_1_2 = 'http://schemas.xmlsoap.org/wsdl/soap12/';
/**
* Web Services Security Extension namespace.
*/
@ -106,6 +126,11 @@ class Helper
*/
const PFX_WSA = 'wsa';
/**
* WSDL 1.1 namespace. prefix.
*/
const PFX_WSDL = 'wsdl';
/**
* Web Services Security Extension namespace.
*/