I'm working with a third party web service and am having problems sending data from my .Net application. Scenario:
I connect to their server using HttpClient. I get back a security token then gets appended to the end of the request, which is also send using HttpClient.
Here's an update statement that gets sent to the server:
<?xml version="1.0" encoding="utf-8" ?>
<NODES_OPERATIONS><ChangeNode URL="C294785" ><ChangeAttribute Id="bdMarketingShortDescription" Type="string" Value="LW short" /></ChangeNode></NODES_OPERATIONS>
This statement works fine. However, I need to put HTML in the Value attribute, like this: need to send the following:
<?xml version="1.0" encoding="utf-8" ?>
<NODES_OPERATIONS><ChangeNode URL="C294785" ><ChangeAttribute Id="bdMarketingShortDescription" Type=&q ...
Go to the complete details ...