How do i remove an unwanted Node from a Api StreamRemove duplicates from a List<T> in C#How to remove illegal characters from path and filenames?Creating a byte array from a streamHow do I copy the contents of one stream to another?How do I save a stream to a file in C#?How do I update the GUI from another thread?Using LINQ to remove elements from a List<T>How do I generate a stream from a string?REST API Best practice: How to accept list of parameter values as inputHow do I remove all non alphanumeric characters from a string except dash?
How to prevent pickpocketing in busy bars?
Why is the population of post-Soviet states declining?
Garage door sticks on a bolt
Lost passport and visa, tried to reapply, got rejected twice. What are my next steps?
Would an object shot from earth fall into the sun?
Why is a road bike faster than a city bike with the same effort? How much faster it can be?
Can you cure a Gorgon's Petrifying Breath before it finishes turning a target to stone?
Beyond Futuristic Technology for an Alien Warship?
How to unpickle a Result object returned by an IBMQ experiment?
Is there an in-universe explanation of how Frodo's arrival in Valinor was recorded in the Red Book?
How to visualize an ordinal variable predicting a continuous outcome?
Windows 10 deletes lots of tiny files super slowly. Anything that can be done to speed it up?
Can I exile my opponent's Progenitus/True-Name Nemesis with Teferi, Hero of Dominaria's emblem?
How do we know neutrons have no charge?
Why would an airline put 15 passengers at once on standby?
How is the Apple Watch ECG disabled in certain countries?
Does AES-ECB with random padding added to each block satisfy IND-CPA?
Knights and Knaves: What does C say?
Duck, duck, gone!
Why is STARTTLS used when it can be downgraded very easily?
Sci-fi movie with one survivor and an organism(?) recreating his memories
I transpose the source code, you transpose the input!
Smallest PRIME containing the first 11 primes as sub-strings
Contour integration with infinite poles
How do i remove an unwanted Node from a Api Stream
Remove duplicates from a List<T> in C#How to remove illegal characters from path and filenames?Creating a byte array from a streamHow do I copy the contents of one stream to another?How do I save a stream to a file in C#?How do I update the GUI from another thread?Using LINQ to remove elements from a List<T>How do I generate a stream from a string?REST API Best practice: How to accept list of parameter values as inputHow do I remove all non alphanumeric characters from a string except dash?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have C# code that produces a soap API and pushes it to a vendor. this works to an extent, however when i run it i keep getting "<?xml version="1.0"?>" added to the top. Can this be removed as the vendor on the other end of this cannot parse that section and it is causing the code to error out. if i take out the xml in the code and manually push without the above tag it works fine.
HttpWebRequest request = CreateWebRequest();
XmlDocument soapEnvelopeXml = new XmlDocument();
soapEnvelopeXml.LoadXml($@"
<soap:Envelope
xmlns:soap=""http://www.w3.org/2003/05/soap-envelope""
xmlns:DDAPI=""https://xxxxx.xxx.xxxx/xxx/xxxx/xxxxx"">
<DDAPI:GTXML VERSION='1.0' TIME_STAMP='2002-11-22T13:10:21 GMT' TRANSACTION_ID='2002-11-22T13:10:21 GMT.1501'>
<DDAPI:HEADER>
<DDAPI:SENDER>
<DDAPI:SENDER_NAME>xxxxxxx</DDAPI:SENDER_NAME>
<DDAPI:SITE_NAME>xxxxxx</DDAPI:SITE_NAME>
<DDAPI:SITE_TYPE>xxxxx</DDAPI:SITE_TYPE>
<DDAPI:USER_NAME>xxxxxx</DDAPI:USER_NAME>
<DDAPI:PASSWORD>xxxxxxxxxxxxx</DDAPI:PASSWORD>
</DDAPI:SENDER>
<DDAPI:RECEIVER>
<DDAPI:RECEIVER_NAME>xxxxxxx</DDAPI:RECEIVER_NAME>
</DDAPI:RECEIVER>
</DDAPI:HEADER>
<DDAPI:BODY>
<DDAPI:REQUEST TYPE='import'>
<DDAPI:IMPORT_REQUEST TYPE='force-user-profile' VERBOSE='on'>
<DDAPI:USER_PROFILE DOC_VERSION='1.9' EVENT_TYPE='upu_event' TIME_STAMP='2002-11-22T14:06:39 GMT'>
<DDAPI:UNIQUE_ID>
<DDAPI:RESOURCE_ID RESOURCE_SITE_NAME='xxxxxxxx'
RESOURCE_SITE_TYPE='corp'
RESOURCE_SUBSITE_NAME='xxxxxxx'>xxxxxxxxx
</DDAPI:RESOURCE_ID>
<DDAPI:RESOURCE_PWD>xxxxxxxxx</DDAPI:RESOURCE_PWD>
</DDAPI:UNIQUE_ID>
<DDAPI:USER_INFO>
<DDAPI:FIRST_NAME>xxxxxxxx</DDAPI:FIRST_NAME>
<DDAPI:LAST_NAME>xxxxx</DDAPI:LAST_NAME>
<DDAPI:EMAIL>xxxxxxx@xxxxxxx.xxx</DDAPI:EMAIL>
<DDAPI:PHONE TYPE='work'>1231231234</DDAPI:PHONE>
</DDAPI:USER_INFO>
<DDAPI:CUSTOM_FIELDS>
<DDAPI:CUSTOM_FIELD NUM='1'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>32f3214d345gdt</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='2'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>213f2341gf235g</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='3'>
<DDAPI:CFE_NAME>xxxxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>4gb2345bgvf234</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
</DDAPI:CUSTOM_FIELDS>
</DDAPI:USER_PROFILE>
</DDAPI:IMPORT_REQUEST>
</DDAPI:REQUEST>
</DDAPI:BODY>
</DDAPI:GTXML>
</soap:Envelope>
");
using (Stream stream = request.GetRequestStream())
//soapEnvelopeXml.Load(stream);
//Console.Out.Write(soapEnvelopeXml.DocumentElement.OuterXml);
soapEnvelopeXml.Save(stream);
Console.WriteLine(stream);
// System.Threading.Thread.Sleep(5000);
using (WebResponse response = request.GetResponse())
{
using (StreamReader rd = new StreamReader(response.GetResponseStream()))
{
string soapResult = rd.ReadToEnd();
Console.WriteLine(soapResult);
rd.Close();
when this is working properly i receive processed ok (manually pushed without "<?xml version="1.0"?>" element)
When this fails i receive
error 102 request_not_valid
c# xml api
add a comment
|
I have C# code that produces a soap API and pushes it to a vendor. this works to an extent, however when i run it i keep getting "<?xml version="1.0"?>" added to the top. Can this be removed as the vendor on the other end of this cannot parse that section and it is causing the code to error out. if i take out the xml in the code and manually push without the above tag it works fine.
HttpWebRequest request = CreateWebRequest();
XmlDocument soapEnvelopeXml = new XmlDocument();
soapEnvelopeXml.LoadXml($@"
<soap:Envelope
xmlns:soap=""http://www.w3.org/2003/05/soap-envelope""
xmlns:DDAPI=""https://xxxxx.xxx.xxxx/xxx/xxxx/xxxxx"">
<DDAPI:GTXML VERSION='1.0' TIME_STAMP='2002-11-22T13:10:21 GMT' TRANSACTION_ID='2002-11-22T13:10:21 GMT.1501'>
<DDAPI:HEADER>
<DDAPI:SENDER>
<DDAPI:SENDER_NAME>xxxxxxx</DDAPI:SENDER_NAME>
<DDAPI:SITE_NAME>xxxxxx</DDAPI:SITE_NAME>
<DDAPI:SITE_TYPE>xxxxx</DDAPI:SITE_TYPE>
<DDAPI:USER_NAME>xxxxxx</DDAPI:USER_NAME>
<DDAPI:PASSWORD>xxxxxxxxxxxxx</DDAPI:PASSWORD>
</DDAPI:SENDER>
<DDAPI:RECEIVER>
<DDAPI:RECEIVER_NAME>xxxxxxx</DDAPI:RECEIVER_NAME>
</DDAPI:RECEIVER>
</DDAPI:HEADER>
<DDAPI:BODY>
<DDAPI:REQUEST TYPE='import'>
<DDAPI:IMPORT_REQUEST TYPE='force-user-profile' VERBOSE='on'>
<DDAPI:USER_PROFILE DOC_VERSION='1.9' EVENT_TYPE='upu_event' TIME_STAMP='2002-11-22T14:06:39 GMT'>
<DDAPI:UNIQUE_ID>
<DDAPI:RESOURCE_ID RESOURCE_SITE_NAME='xxxxxxxx'
RESOURCE_SITE_TYPE='corp'
RESOURCE_SUBSITE_NAME='xxxxxxx'>xxxxxxxxx
</DDAPI:RESOURCE_ID>
<DDAPI:RESOURCE_PWD>xxxxxxxxx</DDAPI:RESOURCE_PWD>
</DDAPI:UNIQUE_ID>
<DDAPI:USER_INFO>
<DDAPI:FIRST_NAME>xxxxxxxx</DDAPI:FIRST_NAME>
<DDAPI:LAST_NAME>xxxxx</DDAPI:LAST_NAME>
<DDAPI:EMAIL>xxxxxxx@xxxxxxx.xxx</DDAPI:EMAIL>
<DDAPI:PHONE TYPE='work'>1231231234</DDAPI:PHONE>
</DDAPI:USER_INFO>
<DDAPI:CUSTOM_FIELDS>
<DDAPI:CUSTOM_FIELD NUM='1'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>32f3214d345gdt</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='2'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>213f2341gf235g</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='3'>
<DDAPI:CFE_NAME>xxxxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>4gb2345bgvf234</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
</DDAPI:CUSTOM_FIELDS>
</DDAPI:USER_PROFILE>
</DDAPI:IMPORT_REQUEST>
</DDAPI:REQUEST>
</DDAPI:BODY>
</DDAPI:GTXML>
</soap:Envelope>
");
using (Stream stream = request.GetRequestStream())
//soapEnvelopeXml.Load(stream);
//Console.Out.Write(soapEnvelopeXml.DocumentElement.OuterXml);
soapEnvelopeXml.Save(stream);
Console.WriteLine(stream);
// System.Threading.Thread.Sleep(5000);
using (WebResponse response = request.GetResponse())
{
using (StreamReader rd = new StreamReader(response.GetResponseStream()))
{
string soapResult = rd.ReadToEnd();
Console.WriteLine(soapResult);
rd.Close();
when this is working properly i receive processed ok (manually pushed without "<?xml version="1.0"?>" element)
When this fails i receive
error 102 request_not_valid
c# xml api
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56
add a comment
|
I have C# code that produces a soap API and pushes it to a vendor. this works to an extent, however when i run it i keep getting "<?xml version="1.0"?>" added to the top. Can this be removed as the vendor on the other end of this cannot parse that section and it is causing the code to error out. if i take out the xml in the code and manually push without the above tag it works fine.
HttpWebRequest request = CreateWebRequest();
XmlDocument soapEnvelopeXml = new XmlDocument();
soapEnvelopeXml.LoadXml($@"
<soap:Envelope
xmlns:soap=""http://www.w3.org/2003/05/soap-envelope""
xmlns:DDAPI=""https://xxxxx.xxx.xxxx/xxx/xxxx/xxxxx"">
<DDAPI:GTXML VERSION='1.0' TIME_STAMP='2002-11-22T13:10:21 GMT' TRANSACTION_ID='2002-11-22T13:10:21 GMT.1501'>
<DDAPI:HEADER>
<DDAPI:SENDER>
<DDAPI:SENDER_NAME>xxxxxxx</DDAPI:SENDER_NAME>
<DDAPI:SITE_NAME>xxxxxx</DDAPI:SITE_NAME>
<DDAPI:SITE_TYPE>xxxxx</DDAPI:SITE_TYPE>
<DDAPI:USER_NAME>xxxxxx</DDAPI:USER_NAME>
<DDAPI:PASSWORD>xxxxxxxxxxxxx</DDAPI:PASSWORD>
</DDAPI:SENDER>
<DDAPI:RECEIVER>
<DDAPI:RECEIVER_NAME>xxxxxxx</DDAPI:RECEIVER_NAME>
</DDAPI:RECEIVER>
</DDAPI:HEADER>
<DDAPI:BODY>
<DDAPI:REQUEST TYPE='import'>
<DDAPI:IMPORT_REQUEST TYPE='force-user-profile' VERBOSE='on'>
<DDAPI:USER_PROFILE DOC_VERSION='1.9' EVENT_TYPE='upu_event' TIME_STAMP='2002-11-22T14:06:39 GMT'>
<DDAPI:UNIQUE_ID>
<DDAPI:RESOURCE_ID RESOURCE_SITE_NAME='xxxxxxxx'
RESOURCE_SITE_TYPE='corp'
RESOURCE_SUBSITE_NAME='xxxxxxx'>xxxxxxxxx
</DDAPI:RESOURCE_ID>
<DDAPI:RESOURCE_PWD>xxxxxxxxx</DDAPI:RESOURCE_PWD>
</DDAPI:UNIQUE_ID>
<DDAPI:USER_INFO>
<DDAPI:FIRST_NAME>xxxxxxxx</DDAPI:FIRST_NAME>
<DDAPI:LAST_NAME>xxxxx</DDAPI:LAST_NAME>
<DDAPI:EMAIL>xxxxxxx@xxxxxxx.xxx</DDAPI:EMAIL>
<DDAPI:PHONE TYPE='work'>1231231234</DDAPI:PHONE>
</DDAPI:USER_INFO>
<DDAPI:CUSTOM_FIELDS>
<DDAPI:CUSTOM_FIELD NUM='1'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>32f3214d345gdt</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='2'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>213f2341gf235g</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='3'>
<DDAPI:CFE_NAME>xxxxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>4gb2345bgvf234</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
</DDAPI:CUSTOM_FIELDS>
</DDAPI:USER_PROFILE>
</DDAPI:IMPORT_REQUEST>
</DDAPI:REQUEST>
</DDAPI:BODY>
</DDAPI:GTXML>
</soap:Envelope>
");
using (Stream stream = request.GetRequestStream())
//soapEnvelopeXml.Load(stream);
//Console.Out.Write(soapEnvelopeXml.DocumentElement.OuterXml);
soapEnvelopeXml.Save(stream);
Console.WriteLine(stream);
// System.Threading.Thread.Sleep(5000);
using (WebResponse response = request.GetResponse())
{
using (StreamReader rd = new StreamReader(response.GetResponseStream()))
{
string soapResult = rd.ReadToEnd();
Console.WriteLine(soapResult);
rd.Close();
when this is working properly i receive processed ok (manually pushed without "<?xml version="1.0"?>" element)
When this fails i receive
error 102 request_not_valid
c# xml api
I have C# code that produces a soap API and pushes it to a vendor. this works to an extent, however when i run it i keep getting "<?xml version="1.0"?>" added to the top. Can this be removed as the vendor on the other end of this cannot parse that section and it is causing the code to error out. if i take out the xml in the code and manually push without the above tag it works fine.
HttpWebRequest request = CreateWebRequest();
XmlDocument soapEnvelopeXml = new XmlDocument();
soapEnvelopeXml.LoadXml($@"
<soap:Envelope
xmlns:soap=""http://www.w3.org/2003/05/soap-envelope""
xmlns:DDAPI=""https://xxxxx.xxx.xxxx/xxx/xxxx/xxxxx"">
<DDAPI:GTXML VERSION='1.0' TIME_STAMP='2002-11-22T13:10:21 GMT' TRANSACTION_ID='2002-11-22T13:10:21 GMT.1501'>
<DDAPI:HEADER>
<DDAPI:SENDER>
<DDAPI:SENDER_NAME>xxxxxxx</DDAPI:SENDER_NAME>
<DDAPI:SITE_NAME>xxxxxx</DDAPI:SITE_NAME>
<DDAPI:SITE_TYPE>xxxxx</DDAPI:SITE_TYPE>
<DDAPI:USER_NAME>xxxxxx</DDAPI:USER_NAME>
<DDAPI:PASSWORD>xxxxxxxxxxxxx</DDAPI:PASSWORD>
</DDAPI:SENDER>
<DDAPI:RECEIVER>
<DDAPI:RECEIVER_NAME>xxxxxxx</DDAPI:RECEIVER_NAME>
</DDAPI:RECEIVER>
</DDAPI:HEADER>
<DDAPI:BODY>
<DDAPI:REQUEST TYPE='import'>
<DDAPI:IMPORT_REQUEST TYPE='force-user-profile' VERBOSE='on'>
<DDAPI:USER_PROFILE DOC_VERSION='1.9' EVENT_TYPE='upu_event' TIME_STAMP='2002-11-22T14:06:39 GMT'>
<DDAPI:UNIQUE_ID>
<DDAPI:RESOURCE_ID RESOURCE_SITE_NAME='xxxxxxxx'
RESOURCE_SITE_TYPE='corp'
RESOURCE_SUBSITE_NAME='xxxxxxx'>xxxxxxxxx
</DDAPI:RESOURCE_ID>
<DDAPI:RESOURCE_PWD>xxxxxxxxx</DDAPI:RESOURCE_PWD>
</DDAPI:UNIQUE_ID>
<DDAPI:USER_INFO>
<DDAPI:FIRST_NAME>xxxxxxxx</DDAPI:FIRST_NAME>
<DDAPI:LAST_NAME>xxxxx</DDAPI:LAST_NAME>
<DDAPI:EMAIL>xxxxxxx@xxxxxxx.xxx</DDAPI:EMAIL>
<DDAPI:PHONE TYPE='work'>1231231234</DDAPI:PHONE>
</DDAPI:USER_INFO>
<DDAPI:CUSTOM_FIELDS>
<DDAPI:CUSTOM_FIELD NUM='1'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>32f3214d345gdt</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='2'>
<DDAPI:CFE_NAME>xxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>213f2341gf235g</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
<DDAPI:CUSTOM_FIELD NUM='3'>
<DDAPI:CFE_NAME>xxxxxxxxx</DDAPI:CFE_NAME>
<DDAPI:CFE_VALUE.1>4gb2345bgvf234</DDAPI:CFE_VALUE.1>
</DDAPI:CUSTOM_FIELD>
</DDAPI:CUSTOM_FIELDS>
</DDAPI:USER_PROFILE>
</DDAPI:IMPORT_REQUEST>
</DDAPI:REQUEST>
</DDAPI:BODY>
</DDAPI:GTXML>
</soap:Envelope>
");
using (Stream stream = request.GetRequestStream())
//soapEnvelopeXml.Load(stream);
//Console.Out.Write(soapEnvelopeXml.DocumentElement.OuterXml);
soapEnvelopeXml.Save(stream);
Console.WriteLine(stream);
// System.Threading.Thread.Sleep(5000);
using (WebResponse response = request.GetResponse())
{
using (StreamReader rd = new StreamReader(response.GetResponseStream()))
{
string soapResult = rd.ReadToEnd();
Console.WriteLine(soapResult);
rd.Close();
when this is working properly i receive processed ok (manually pushed without "<?xml version="1.0"?>" element)
When this fails i receive
error 102 request_not_valid
c# xml api
c# xml api
edited Mar 28 at 19:59
Rusty McMaster
asked Mar 28 at 19:55
Rusty McMasterRusty McMaster
13 bronze badges
13 bronze badges
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56
add a comment
|
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405892%2fhow-do-i-remove-an-unwanted-node-from-a-api-stream%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405892%2fhow-do-i-remove-an-unwanted-node-from-a-api-stream%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This was resolved solution was to add ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; to the top forcing TLS1.2 as i was running TLS1.3 and clients server is not set up to handle this
– Rusty McMaster
May 21 at 13:56