Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9131043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:04:33+00:00 2026-06-17T08:04:33+00:00

I created http request application to test my web site qulatiy (see below). Dim

  • 0

I created http request application to test my web site qulatiy (see below).

 Dim Request As HttpWebRequest = WebRequest.Create(webAddress)
 Dim Response As HttpWebResponse = Request.GetResponse()

 Request.Method = "Get"

 Dim Reader As New StreamReader(Response.GetResponseStream)
 Dim Html As String = Reader.ReadToEnd()

In this case, I would like to create anonymous request without catching the response. How can I do that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T08:04:34+00:00Added an answer on June 17, 2026 at 8:04 am

    To do so, u have to get a little low level , working with sockets

    TcpCient in this case

    Sample code

    Imports System.Net.Sockets
    
    
    Module Module1
    
        Sub Main()
    
            Dim tcpcli = New TcpClient()
            tcpcli.Connect("google.co.in", 80)
    
            Dim stream As NetworkStream = tcpcli.GetStream()
            Dim reqdata As String = String.Format("GET / HTTP/1.1{0}Host: www.google.co.in{0}Connection: Close{0}{0}", vbCrLf)
            Dim reqbytes() As Byte = Text.Encoding.ASCII.GetBytes(reqdata)
    
            stream.Write(reqbytes, 0, reqbytes.Length)
    
            stream.Close()
            stream.Dispose()
    
            tcpcli.Close()
    
    
    
        End Sub
    
    End Module
    

    Network capture via wireshark (no response received)
    no response receive as no response was read from socket

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a HTTP request from a specific port using C on
I have two requests in tomcat. One HTTP request will create a thread. Client
I am currently trying to test some code I have in a web application
I'm trying to create a simple AJAX & web service test (using C# .Net
We* have a web application, created by Delphi + Intraweb (for the front end/web
I created a small web service(test), I'm unable to get it to deploy to
I've developed a Web Application (web site) using VS 2010 and VB.NET. I'm able
I created a simple JMeter Http test. I specified 50 users, each users will
I have an ASP.NET MVC web application running from http://localhost/myappname . From jQuery, I
UPDATE 3: I created a Visual Studio 2008 test project and tried to create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.