Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/sockets/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
VB.net使用套接字发送HTTP POST请求_Vb.net_Sockets_Post_Webrequest - Fatal编程技术网

VB.net使用套接字发送HTTP POST请求

VB.net使用套接字发送HTTP POST请求,vb.net,sockets,post,webrequest,Vb.net,Sockets,Post,Webrequest,我这里有一个使用套接字的工作HTTP请求,但我不知道如何发送POST请求 这是我的密码: Dim hostName As String Dim hostPort As Integer Dim response As Integer Dim iphe As IPHostEntry = Dns.GetHostEntry("www.yellowpages.com") hostName

我这里有一个使用套接字的工作HTTP请求,但我不知道如何发送POST请求

这是我的密码:

            Dim hostName As String
            Dim hostPort As Integer
            Dim response As Integer
            Dim iphe As IPHostEntry = Dns.GetHostEntry("www.yellowpages.com")
            hostName = iphe.AddressList(0).ToString()
            hostPort = 80
            response = 0

            Dim host As IPAddress = IPAddress.Parse(hostName)
            Dim hostep As New IPEndPoint(host, hostPort)
            Dim sock As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
            sock.Connect(hostep)

            Dim request = "GET /nationwide/mip/choice-hotels-international-462092189/send_email?lid=161004592 HTTP/1.1" & vbCr & vbLf &
                          "Host: 208.93.105.105" & vbCr & vbLf &
                          "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36" & vbCr & vbLf &
                          "Connection: keep-alive" & vbCr & vbLf &
                          "Content-Type: application/x-www-form-urlencoded" & vbCr & vbLf &
                          "Content-Length: 0" & vbCr & vbLf & vbCr & vbLf

            response = sock.Send(Encoding.UTF8.GetBytes(request))
            response = sock.Send(Encoding.UTF8.GetBytes(vbCr & vbLf))

            sock.Close()
我想用以下数据填写我在代码中提到的这个Web表单:

email%5Bto_address%5D=test@mail.com&email%5Bfrom_name%5D=Test Name&email%5Bfrom_address%5D=test@mail.com&email%5Bnote%5D=Hello
我该怎么做?我已使用以下代码使用HttpWebRequest成功完成此操作:

        Dim cweb As String = "http://www.yellowpages.com/novato-ca/mip/creative-memories-consultant-senior-director-461725587/send_email?lid=171673036"
        Dim POST As String = "&email%5Bto_address%5D=recipient@email.com&email%5Bfrom_name%5D=Test Name&email%5Bfrom_address%5D=sender@mail.com&email%5Bnote%5D=Hello There"       

        Dim request As HttpWebRequest
        Dim response As HttpWebResponse

        request = CType(WebRequest.Create(cweb), HttpWebRequest)
        request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36"
        request.AllowAutoRedirect = True
        request.ContentType = "application/x-www-form-urlencoded"
        request.ContentLength = POST.Length
        request.Method = "POST"
        request.KeepAlive = True

        Dim requestStream As Stream = request.GetRequestStream()
        Dim postBytes As Byte() = Encoding.ASCII.GetBytes(POST)
        requestStream.Write(postBytes, 0, postBytes.Length)
        requestStream.Close()

        response = CType(request.GetResponse(), HttpWebResponse)
        response.Close()

但是我想通过使用套接字来重新创建这个概念。

如果可以使用套接字发送GET请求,那么当然可以发送POST请求

但是你必须正确地格式化它。您可以检查整个HTTP规范的RFC

职位样本:

Dim request = "POST /nationwide/mip/choice-hotels-international-462092189/send_email?lid=161004592 HTTP/1.1" & Environment.Newline &
                          "Host: 208.93.105.105" & Environment.Newline &
                          "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36" & Environment.Newline &
                          "Connection: keep-alive" & Environment.Newline &
                          "Content-Type: application/x-www-form-urlencoded" & Environment.Newline &
                          "Content-Length: 22" & Environment.Newline & Environment.Newline &
              "this%20is%20the%20data"