httpwebrequest

  1. T

    Converting Curl command to Httpwebrequest with request body.

    Hello Everyone, I hope I found the right platform to ask this question. I have searched a lot but didn't find any right answer to my problem. I have a few API calls that I can run with Curl and they work totally fine. I can easily make GET request and converted that into httpwebrequest and it...
  2. T

    HttpWebRequest Post...

    I am a member of a forum that allows for a BUY/SELL/TRADE section where I'd like to make a couple posts a week. I'd like to use the interface of my VB.NET application to post there. I learned how to login to a the Rocbattl.com forum which was pretty easy to do. Here is the login string that I...
  3. rexcarnation

    Question Multi Threading httpwebrequest with Queue

    Hello, I search all day and I cannot find the answer how to multi threading with queue. So like this. I have 100 URL in datagridview on col 1, an then I want to scrape all url on the datagrid by 10 thread, so the process only 1 -10 on the datagridview list. And when one of all process (scrape)...
  4. A

    Question download dynamically generated file from indirect url

    Sorry if its not the correct category to post in. I am trying to download a dynamically generated report.csv from a website link which requires login to get it downloaded. I tried by logging in through WebBrowser Control and navigating it to report's link but it shows "File Download" dialog as...
  5. T

    HttpWebRequest Extract Links or URLS From My Blog...

    I would like to use the httpwebrequest to pull all the links from my blog. I would like for the links to be extracted and sent to a textbox1.text from the httpwebrequest method. Here's the example that I have to extract all the html source code, but all I need is the URLs from my web page: Try...
  6. S

    Question HttpWebRequest Question

    Dear all, I am connecting to web interface of a device which has username and password to authenticate. I managed to authenticate and load source of HTML page which i need. I need it to extract some data out of it. My code is as follows: Imports System.Net Imports System.Text Imports...
  7. G

    Question httpWebRequest & proxy problem

    Hi, I am using httpWebRequest to read the content of a url through a proxy server. Since I didn't want to configure the proxy in my application I read whatever I had in the IE, but it seems to take forever to actually read the url (less than 1kb). Here is the code that I am using. Is there...
  8. L

    Resolved Call Web Service

    I'm trying to send a string from an XML to a ASP.NET web service, which will then convert that string to XML and saves it locally. I have everything working except for when I try to call the web service by the code below, I get the following error: The remote server returned an error: (500)...
  9. froodley

    Shortening DNS timeout for SOAP

    Hi, all, I use a web service to access our internal databases. The problem I'm having is that a call to the service is part of my application startup, and when the computer is offline or the server is otherwise unreachable, the DNS call is taking much too long to timeout. I would like to set...
  10. seinkraft

    Using HttpWebRequest to upload file to PHP url

    Hi everyone, i'm really new with HttpWebRequest and i don't understand it as well but i need it to use an api from my web to post images. I've this at the moment. Private Sub btnUpload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUpload.Click Dim request...
  11. G

    WebRequest Question

    Hi Guys, I have managed to learn about the httpwebrequest way of logging into a website as opposed to the webbrowser control. code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' Start [create the request]...
  12. F

    work with proxies and HttpWebRequests

    Hello I have been searching for hours on how to use proxies in VB.Net and finally i just gave up and came here. I am trying to send httpwebrequest's but i would also like to use with proxies. I would like to send this HttpWebRequest behind a proxy Dim objHTTPRequest As HttpWebRequest...
  13. Robert_Zenz

    Answered HTTPWebRequest, Content-Type not send?

    Hello. I'm using HTTPWebRequest and WebResponse to send a XML-File to a server and receive the answer. However, it seems like that WebRequest isn't sending the Content-Type Header. At least I've checked it with lesswire.info - HTTP-Header-Test and the Content-Type header doesn't show up. I'm...
Back
Top