List Info

Thread: RE: Form Post




RE: Form Post
user name
2008-06-05 11:40:16
One small one I'd add to the list is an addon for firefox called Web Developer.

Ian

On Thu, Jun 5, 2008 at 9:15 AM, List < listcimarronravine.com">listcimarronravine.com&gt; wrote:

Here are just a few tools you can use to test web applications…

 

Fiddler 2.0

Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.

 

Fiddler is freeware and can debug traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and thousands more.

&nbsp;

http://www.fiddler2.com/

&nbsp;

 

TamperIE

 ;

Enables HTML-form tampering for penetration testing of web apps.

 ;

http://www.bayden.com/Other/

 

 

Web Development Helper 8.3.0
A browser extension to provide tools for the Web developer including ASP.NET page and control developers.

&nbsp;

Web Development Helper is a utility for Web developers and plugs into Internet Explorer. It provides ASP.NET developers with tools to allow viewing information about the current page such as view state and trace, perform some operations on the server in the context of the running application to aid testing. It provides Ajax developers with tools to monitor requests and responses (including the ones made using XMLHttp), viewing a script errors with enhanced error information, a script console and an immediate window. In addition it provides debugging APIs for scripts to make use (as done by Script#).

&nbsp;

http://www.nikhilk.net/Project.WebDevHelper.aspx

 

 

Wireshark

 

Wireshark is the world's foremost network protocol analyzer, and is the de facto (and often de jure) standard across many industries and educational institutions.

&nbsp;

Wireshark development thrives thanks to the contributions of networking experts across the globe. It is the continuation of a project that started in 1998.

http://www.wireshark.org/

 

 

Later,

Terence

MSADC

 

 

From: timallardmsn.com" target="_blank">timallardmsn.com [mailto: timallardmsn.com" target="_blank">timallardmsn.com] On Behalf Of Tom Mallard
Sent: Wednesday, June 04, 2008 11:29 AM
To: aspnetaspadvice.com" target="_blank">aspnetaspadvice.com
Subject: [aspnet] RE: Form Post

 

Yes,
&nbsp;
'Receive Response
Try
response = request.GetResponse()
Select Case (response.StatusCode = HttpStatusCode.OK)
Case True
sr = New StreamReader(response.GetResponseStream())
responseData = sr.ReadToEnd()
Case Else
&#39;error handling


End Select

Catch Wex As System.Net.WebException
sr = New StreamReader(Wex.Response.GetResponseStream())
responseData = sr.ReadToEnd()
Throw New XmlProcessingException(responseData, Wex)
Finally
sr.Close()
End Try
&nbsp;
This will let you know that the status code was 200 or OK. The request object was used to send it, and has the GetResponse() method for this.
&nbsp;
hth,

tom mallard
 &nbsp; .net web applications
 &nbsp;   ; consumer product design


From: duanesandybaynetworks.com" target="_blank">duanesandybaynetworks.com
To: aspnetaspadvice.com" target="_blank">aspnetaspadvice.com
Subject: [aspnet] Form Post
Date: Wed, 4 Jun 2008 12:29:10 -0300

I am try to send data via a post to a third party server. The code I am using is below. I cant really tell if the post is working properly, is there a way to get the data that the third party site is returning in the post?

 

Thanks,

Duane

 

 

ASCIIEncoding encoding = new ASCIIEncoding();

HttpWebRequest req = (HttpWebRequest)WebRequest.Create("https://localhost/app/view:Join/signupId:12587");

 

string postData = "&quot;;

postData += "member_id=";;

postData += "&;prev_member_email=&quot;;

postData += "&;signup_name=none";;

postData += "&;private_set=2";

postData += "&;groups[]=4352,6389&quot;;

 

byte[] data = encoding.GetBytes(postData);

req.Method = "POST";

req.ContentType = "application/x-ww-form-urlencoded";;

req.ContentLength = data.Length;

 

Stream reqStream = req.GetRequestStream();

// Send the data.

reqStream.Write(data, 0, data.Length);

reqStream.Close();

 

 

DUANE BOUDREAU  |  SANDY BAY NETWORKS

PRESIDENT AND CHIEF TECHNOLOGY OFFICER

P: 902.232.2345 x222   |  P: 603.879.0249 x222&nbsp;  |  F: 866.631.6272
SMART PEOPLE. SMART SOLUTIONS. | http://www.sandybay.com

______________________________________________________________________________________

Confidentiality Notice:&nbsp; This message including any attachments is for the sole use of the
intended recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended
recipient, please contact the sender and delete any copies of this message.

 

--- List Settings ---
http://aspadvice.com/lists/

--- List Settings ---
http://aspadvice.com/lists/

--- List Settings ---
http://aspadvice.com/lists/

--- List Settings --- http://aspadvice.com/lists/
[1]

about | contact  Other archives ( Real Estate discussion Medical topics )