Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 814 results for
httpwebrequest
- Page 1
HttpWebRequest Help
Programming
Software Development
15 Years Ago
by DevC++4.9.9.2
… to this website. Currently i am using
HttpWebRequest
to make a connection to the site and… register? [code] private uint HitWebsite(string website) {
HttpWebRequest
request = (
HttpWebRequest
) WebRequest.Create(website); HttpWebResponse response = (HttpWebResponse) request.…
Re: HttpWebRequest Help
Programming
Software Development
15 Years Ago
by sknake
….Empty); } private static void GetPage(string URL, string Referrer) {
HttpWebRequest
req = (
HttpWebRequest
)
HttpWebRequest
.Create(URL); req.Method = "GET"; req.Referer = Referrer…
HTTPwebrequest
Programming
Software Development
13 Years Ago
by sreekar_222
what is the use of
HttpWebRequest
HttpWebRequest Problem
Programming
Software Development
15 Years Ago
by mcco1
… is a reason for it.
HttpWebRequest
req = (
HttpWebRequest
)
HttpWebRequest
.Create(mainUrl); req.CookieContainer = …"; req.GetResponse(); // Another request
HttpWebRequest
gReq = (
HttpWebRequest
)
HttpWebRequest
.Create(secondaryUrl); gReq.CookieContainer = this.cookieJar…
HttpWebRequest - No Response
Programming
Web Development
17 Years Ago
by sbrown
I'm sending an
HttpWebRequest
to a BizTalk server. BizTalk receives and asyncronously processes correctly, … setup the same on each box. Any ideas?? [code=c#]
HttpWebRequest
req = (
HttpWebRequest
)
HttpWebRequest
.Create(url); req.Method = "POST"; ASCIIEncoding encoding…
[HttpWebRequest] Noob Problem
Programming
Software Development
15 Years Ago
by Plato
…+delete+this&submit=Submit+Comment&comment_post_ID=");
HttpWebRequest
WebReq = (
HttpWebRequest
)WebRequest.Create("http://www.therunescapeblog.com/2010/03/analysis… actually managed to post a comment via
HttpWebRequest
. I've never been able to understand
HttpWebRequest
/HttpWebResponses anyway so I've decided…
HttpWebRequest works for google.com but not another URL
Programming
Software Development
13 Years Ago
by Jennifer84
…) Bad Request."[/B] [CODE] //
HttpWebRequest
^ myRequest = (
HttpWebRequest
^)WebRequest::Create("http://www.google.com");
HttpWebRequest
^ myRequest = (
HttpWebRequest
^)WebRequest::Create("http://www…
HttpWebRequest to login youtube
Programming
Software Development
13 Years Ago
by buynsell
…is my source code [code]
HttpWebRequest
request = (
HttpWebRequest
)WebRequest.Create(url); CookieContainer container =…quot;; richTextBox1.Text = "";
HttpWebRequest
request2 = (
HttpWebRequest
)WebRequest.Create(url2); request2.CookieContainer = container…
HttpWebRequest,HttpWebResponse
Programming
Software Development
15 Years Ago
by igalbk
…public void CheckStatusCode() {
HttpWebRequest
request=null; HttpWebResponse response=null; try { request = (
HttpWebRequest
)WebRequest.Create("http://www….il");//OK 200 //request = (
HttpWebRequest
)WebRequest.Create("https://yedion.afeka.ac.…
Re: [HttpWebRequest] Noob Problem
Programming
Software Development
15 Years Ago
by thines01
… Main(string[] args) { UseWebRequest(); UseWebClient(); } private static void UseWebRequest() {
HttpWebRequest
webReq = (
HttpWebRequest
)WebRequest.Create( "http://www.altavista.com/web/results?"…
HttpWebRequest on port 8000
Programming
Software Development
16 Years Ago
by K1Kingy
…" The code I'm using is [CODE=C#]
HttpWebRequest
request = (
HttpWebRequest
) WebRequest.Create("http://69.64.58.2:8000"…
HTTPWebRequest and filling the form online
Programming
Software Development
15 Years Ago
by jan1024188
Hello, Lets say I want to access a website using
httpwebrequest
, and I do want to fill some form on it. Its HTML based form. What I want to do, is insert some text in element by ID "Email" and than invoke member "submit" from elementID "subscribe". Is it possible to do this using
httpwebrequest
?
HttpWebRequest in Windows Service
Programming
Software Development
15 Years Ago
by Merovingian
Does anyone know if you can use
HttpWebRequest
in a Windows Service? I have a small app that … System.Timers.ElapsedEventArgs) 'get External IP Try Dim req As
HttpWebRequest
= WebRequest.Create("http://whatismyip.com/automation/n09230945.asp"…
HTTPWebRequest Login help
Programming
Software Development
15 Years Ago
by Gibson_Junk
…;&password=" + pass + "&login=";
HttpWebRequest
^ request = dynamic_cast<
HttpWebRequest
^>(WebRequest::Create(url)); request->Method = "POST…
HttpWebRequest with Sockets
Programming
Software Development
11 Years Ago
by intes2010
… "sample post data" Dim request As
HttpWebRequest
Dim response As HttpWebResponse Dim tempCookies As New CookieContainer request… = CType(WebRequest.Create(cweb),
HttpWebRequest
) request.UserAgent = "Mozilla/5.0 (Windows NT…
Re: HttpWebRequest Help
Programming
Software Development
15 Years Ago
by sknake
The page counter is probably an embedded link or javascript. It depends on the page counter but you will likely need to do another get with the referring URL of your site. What hit counter are you using?
Re: HttpWebRequest Help
Programming
Software Development
15 Years Ago
by kvprajapati
You need a Web Service (develop or buy) and JavaScript code to invoke Web service method.
Re: HttpWebRequest Help
Programming
Software Development
15 Years Ago
by DevC++4.9.9.2
[QUOTE=sknake;887949]The page counter is probably an embedded link or javascript. It depends on the page counter but you will likely need to do another get with the referring URL of your site. What hit counter are you using?[/QUOTE] Thanks for your reply, I am using two counters The first is java, The second is HTML On this test page: [url]http…
Re: HttpWebRequest Help
Programming
Software Development
15 Years Ago
by DevC++4.9.9.2
[QUOTE] Its your job to code in the asynchronous web requests to truly load test. If you use a single thread you will not accurately simulate a load. On another note I took the links from your pages' source good. If you're wanting to automate a task like this then you're looking in to link scraping and that is another topic (and very involved at …
Re: HTTPwebrequest
Programming
Software Development
13 Years Ago
by leo88
refer this [url]http://www.codeproject.com/KB/IP/httpwebrequest_response.aspx[/url]
Re: Help with HttpWebRequest
Programming
Software Development
14 Years Ago
by sknake
… static string getString(string link) { DoLogin();
HttpWebRequest
request = (
HttpWebRequest
)WebRequest.Create(link); request.Method = "…login { byte[] buffer = GetFormData(username, password);
HttpWebRequest
request = (
HttpWebRequest
)WebRequest.Create(@"http://www.esl.eu/login/save/&…
For loop not completing httpwebrequest
Programming
Software Development
13 Years Ago
by kytro360
… just iterates down the list not doing the
httpwebrequest
for the other items. Im not sure if…encoding1 = new UTF8Encoding(); byte[] bytedata = encoding1.GetBytes(postdata);
HttpWebRequest
request = (
HttpWebRequest
)WebRequest.Create(""); request.Method = "POST"…
Re: For loop not completing httpwebrequest
Programming
Software Development
13 Years Ago
by kytro360
… I saw it and came back with this code: [CODE]
HttpWebRequest
webRequest; void StartWebRequest() { webRequest.BeginGetResponse(new AsyncCallback(FinishWebRequest), null); } void….EndGetResponse(result); } [/CODE] Where do I add it? In my
httpwebrequest
, above it? Also is the code copy/paste-able? Do…
unescaping uri in HttpWebRequest
Programming
Software Development
17 Years Ago
by Oxiegen
Hi, all! I'm trying to send a
HttpWebRequest
to an url that, other than %20, does not … reason, when I do: [ICODE]_HttpWebRequest = DirectCast(System.Net.
HttpWebRequest
.Create(New Uri("http://web_address")), System.Net….
HttpWebRequest
)[/ICODE] I end up with an escaped uri string. …
Trying to Login to a Forum via C# Winforms application using HttpWebRequest
Programming
Software Development
15 Years Ago
by minigweek
…;); string data = "vb_login_username=userid&vb_login_password=password";
HttpWebRequest
request = (
HttpWebRequest
)
HttpWebRequest
.Create(uri); request.Method = WebRequestMethods.Http.Post; request.ContentLength = data…
Re: Trying to Login to a Forum via C# Winforms application using HttpWebRequest
Programming
Software Development
15 Years Ago
by sknake
…&vb_login_username={1}&vb_login_password=", password, login, md5 );
HttpWebRequest
req = (
HttpWebRequest
)
HttpWebRequest
.Create("http://www.thinkdigit.com/forum/login.php?do…
Re: Trying to Login to a Forum via C# Winforms application using HttpWebRequest
Programming
Software Development
15 Years Ago
by minigweek
… the Cookie is stored in the CookieContainer object of
HttpWebRequest
object. So i would need to find a way…webbrowser if I plan to use the form posting via
httpwebrequest
and webbrowser control simultaneously. I have been trying but… far as I read, automatic redirection of the [icode]
HttpWebRequest
[/icode] is enabled by default, so I should be …
Re: Trying to Login to a Forum via C# Winforms application using HttpWebRequest
Programming
Software Development
15 Years Ago
by minigweek
… many ways to "redirect" a page. The
HttpWebRequest
will follow redirection if the server issues a [URL="… get the hash value to login, right? ;) Remember the
HttpWebRequest
is dumb. It follows HTTP codes and thats about it…[/QUOTE] Right! :D .... I will be using the dumbness of
httpwebrequest
and get back to you later on how I am…
Re: Trying to Login to a Forum via C# Winforms application using HttpWebRequest
Programming
Software Development
15 Years Ago
by hohy
… the Cookie is stored in the CookieContainer object of
HttpWebRequest
object. So i would need to find a way…webbrowser if I plan to use the form posting via
httpwebrequest
and webbrowser control simultaneously. I have been trying but… far as I read, automatic redirection of the [icode]
HttpWebRequest
[/icode] is enabled by default, so I should be …
Exception while Login using httpwebrequest
Programming
Software Development
15 Years Ago
by khan17
… set of codes to login to a web site using
httpwebrequest
. but whenever i tried using the codes i got the… Uri("https://www.test.com/test/testlogin.cfm");
HttpWebRequest
webReq = (
HttpWebRequest
)WebRequest.Create(url); webReq.ContentType = "application/x-www…
1
2
3
14
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC