Difference between revisions of "Validating the ITSN request XML Message validation schema"

From PlatiOnline.EU
Jump to: navigation, search
Line 7: Line 7:
  
 
Pseudo-code:
 
Pseudo-code:
# Load the '''ITSN Request XML_Message''';
 
# Decrypt '''f_crypt_message''' using RSA private key to obtain the '''AES KEY''';
 
# Decrypt the '''f_message''' using '''AES algorithm'''  with '''AES KEY''' and '''IV_ITSN''';
 
# Load ITSN XML and validate it: '''http://secure2.plationline.ro/xml_validation/itsn.v5.xsd'''
 
#
 
 
# PO POST SOAP (version 1.1 or 1.2) to '''Merchant's URL'''
 
# PO POST SOAP (version 1.1 or 1.2) to '''Merchant's URL'''
 
#*SOAP 1.1 headers are:
 
#*SOAP 1.1 headers are:
Line 17: Line 12:
 
#*#USER_AGENT = '''PlatiOnline-SOAP'''
 
#*#USER_AGENT = '''PlatiOnline-SOAP'''
 
#*#SOAPACTION = '''itsn'''
 
#*#SOAPACTION = '''itsn'''
 +
# Load the '''ITSN Request XML_Message''';
 +
# Decrypt '''f_crypt_message''' using RSA private key to obtain the '''AES KEY''';
 +
# Decrypt the '''f_message''' using '''AES algorithm'''  with '''AES KEY''' and '''IV_ITSN''';
 +
# Load ITSN XML and validate it: '''http://secure2.plationline.ro/xml_validation/itsn.v5.xsd'''
 +
# Do '''Query Request'''

Revision as of 20:32, 2 April 2014

XML ITSN Request

Plati Online version 5.x

  1. SOAP Post URL: Merchant's settings
  2. Request XML validation schema: https://secure.plationline.eu/xml_validation/po.request.v5.xsd
  3. XML_Message validation schema: https://secure.plationline.eu/xml_validation/itsn.v5.xsd

Pseudo-code:

  1. PO POST SOAP (version 1.1 or 1.2) to Merchant's URL
    • SOAP 1.1 headers are:
      1. CONTENT_TYPE = text/xml; charset=utf-8
      2. USER_AGENT = PlatiOnline-SOAP
      3. SOAPACTION = itsn
  2. Load the ITSN Request XML_Message;
  3. Decrypt f_crypt_message using RSA private key to obtain the AES KEY;
  4. Decrypt the f_message using AES algorithm with AES KEY and IV_ITSN;
  5. Load ITSN XML and validate it: http://secure2.plationline.ro/xml_validation/itsn.v5.xsd
  6. Do Query Request