Validating the query request XML Message validation schema
XML Query Request[edit]
Plati Online version 5.x
- SOAP Post URL: https://secure.plationline.ro/
- Request XML validation schema: https://secure.plationline.ro/xml_validation/po.request.v5.xsd
- XML_Message validation schema: https://secure.plationline.ro/xml_validation/f_message.query.v5.xsd
Pseudo-code:
- Create the Query Request XML_Message;
- Create a random 32 alphanumeric AES KEY;
- Encrypt the AES KEY with the RSA algorithm; this is the value of f_crypt_message tag;
- Encrypt the Query Request XML_Message with the AES algorithm using the AES KEY and the IV_AUTH; this is the value of f_message tag;
- Validate the Query Request XML using https://secure.plationline.ro/xml_validation/po.request.v5.xsd
- Post SOAP (version 1.1 or 1.2) to https://secure.plationline.ro/
- If you use SOAP 1.1 headers are:
- CONTENT_TYPE = text/xml; charset=utf-8
- USER_AGENT = PlatiOnline-SOAP
- SOAPACTION = query
- If you use SOAP 1.2 headers are:
- CONTENT_TYPE = application/soap+xml; charset=utf-8; action=query
- USER_AGENT = PlatiOnline-SOAP
- If you use SOAP 1.1 headers are: