20 lines
1.2 KiB
C#
20 lines
1.2 KiB
C#
namespace Kreta.EESZTInterface
|
|
{
|
|
public class Namespaces
|
|
{
|
|
public const string soap11Ns = "http://schemas.xmlsoap.org/soap/envelope/";
|
|
public const string soap12Ns = "http://www.w3.org/2003/05/soap-envelope";
|
|
public const string wsseNs = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
|
|
public const string wsse11Ns = "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd";
|
|
public const string wsuNs = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
|
|
public const string samlNs = "urn:oasis:names:tc:SAML:2.0:assertion";
|
|
public const string xopNS = "http://www.w3.org/2004/08/xop/include";
|
|
public const string nsNs = "http://docs.oasis-open.org/ws-sx/ws-trust/200512";
|
|
public const string dsNs = "http://www.w3.org/2000/09/xmldsig#";
|
|
public const string addressingNs = "http://www.w3.org/2005/08/addressing";
|
|
public const string c14nNs = "http://www.w3.org/2001/10/xml-exc-c14n#";
|
|
public const string xencNs = "http://www.w3.org/2001/04/xmlenc#";
|
|
|
|
public const string allomanyPublikaloServiceV1Ns = "http://eeszt.gov.hu/ns/eft/ws/AllomanyPublikaloService/v1";
|
|
}
|
|
}
|