Hello,
i am processing one web server which returns xml successfully the response of xml is as follow
<?xml version="1.0" encoding="UTF-8"?>
-<TERMINAL_SETTINGS xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<TERMINAL_ID>1010</TERMINAL_ID>
<SEC_CODE>PPD</SEC_CODE>
<IS_GATEWAY_TERMINAL>true</IS_GATEWAY_TERMINAL>
<ALLOW_CNSMR_CREDITS>false</ALLOW_CNSMR_CREDITS>
<DL_REQUIRED>false</DL_REQUIRED>
<RUN_CHECK_VERIFICATION>false</RUN_CHECK_VERIFICATION>
<RUN_IDENTITY_VERIFICATION>false</RUN_IDENTITY_VERIFICATION>
<SCHEMA_FILE_PATH>http://demo.eftchecks.com/webservices/Schemas/PPD/CheckNoVerificationDLOptional.xsd</SCHEMA_FILE_PATH>
<XML_TEMPLATE_PATH>http://demo.eftchecks.com/webservices/Schemas/PPD/Templates/CheckNoVerificationDLOptional.xml</XML_TEMPLATE_PATH>
</TERMINAL_SETTINGS>
i want to get the node value from below xml and bind to label.
label1.Text=Terminal_id
this is how the xml is generating after processing the api
//Apply the Auth Header to the Auth Gateway
myAuthGateway.AuthGatewayHeaderValue = myAuthHeader;
//Get the Certification Terminal Settings from the Authorization Gateway
myAuthGatewayResponse = myAuthGateway.GetCertificationTerminalSettings();
//Create a new XML Document for the Certification Terminal Settings
System.Xml.XmlDocument myTerminalSettings = new System.Xml.XmlDocument();