How to POST a JSON to a specific url using VB.NET?

后端 未结 2 1297
星月不相逢
星月不相逢 2020-12-01 12:13

I\'m a newbie about web services in VB.NET. I\'m making a desktop application that will talk to JIRA (http://www.atlassian.com/software/jira/). They provided a REST api that

2条回答
  •  眼角桃花
    2020-12-01 12:56

    For 'The underlying connection was closed:' error include these 2 lines of code after the line ...WebRequest.Create(Url) -it should work

    System.Net.ServicePointManager.UseNagleAlgorithm = False System.Net.ServicePointManager.Expect100Continue = False

提交回复
热议问题