Link to home
Start Free TrialLog in
Avatar of RamzyNEbeid
RamzyNEbeidFlag for Egypt

asked on

XML read/write

dear all

i am working with VS2010, C#

i created my XML file from inside VS and saved it with name: Response.xml

at run-time i want to read this XML and fill the required values and then convert it to string and send it as a parameter.

<NS1:Envelope xmlns:NS1="http://schemas.xmlsoap.org/soap/envelope/">
	<NS1:Body>
		<NS2:processRequestResponse xmlns:NS2="http://link.com/">
			<return>
				<Response>
					<SignonRs>
						<Language>en-gb</Language>						
					</SignonRs>
					<Status>
						<StatusCode></StatusCode>
						<Severity></Severity>
						<StatusDesc></StatusDesc>
					</Status>
					<Status>
						<StatusCode></StatusCode>
						<Severity></Severity>
						<StatusDesc></StatusDesc>
					</Status>
				</Response>
			</return>
		</NS2:processRequestResponse>
	</NS1:Body>
</NS1:Envelope>

Open in new window

SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial