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 8001065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T15:59:24+00:00 2026-06-04T15:59:24+00:00

I am trying to do a HTTP POST from ASP.NET and JSP and it

  • 0

I am trying to do a HTTP POST from ASP.NET and JSP and it is not working.

I have been reading articles on how to do a HTTP POST in C# and have come accross code snippets like the example I have written below using HttpWebRequest:

Stream stream = null;
byte[] bytes = Encoding.ASCII.GetBytes(RendercXMLForPosting(cXMLContent));
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(ConfigurationManager.AppSettings["Address"]);

webRequest.ContentType = "application/x-www-form-urlencoded";
webRequest.Method = "POST";
webRequest.ContentLength = bytes.Length;
webRequest.CookieContainer = new CookieContainer();
webRequest.CookieContainer.Add(new Cookie("BuyerCoookie", punchOutSession.BuyerCookieID, "/", ConfigurationManager.AppSettings["Domain"]));

try
{
    stream = webRequest.GetRequestStream();
    stream.Write(bytes, 0, bytes.Length);
}
catch (Exception)
{
    throw;
}
finally
{
    if (stream != null)
        stream.Close();
}

When I try this no error is thrown but The 3rd party site is not recognising the POST, the 3rd Party site is a JSP site.

Is this the wrong way to post to a JSP site from ASP.NET?
Is there something I am missing?
Thanks in advance

EDIT!!!
I need to redirectthe user to the POSTing page after the post is complete, any help on 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-04T15:59:25+00:00Added an answer on June 4, 2026 at 3:59 pm

    Try flushing the request stream, and getting the response from the request, ie:

    stream = webRequest.GetRequestStream();
    stream.Write(bytes, 0, bytes.Length);
    stream.Flush
    var rsp = webRequest.GetResponse();
    using(var sr = new StreamReader(rsp.GetResponseStream())
        var result = sr.ReadToEnd(); // you might want to see what this is to debug
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to post some data from one local asp.net mvc site to
I am trying to post to an ASP.NET MVC action from another Action (separate
I'm trying to write a file from an Http post reply to a file
I'm trying to POST a http request using ajax, but getting a response from
I've built a ASP.NET webservice and I'm trying to access it from a Blackberry.
I am trying to use a web service built on asp.net wcf from iPhone
edit updated with new information I've been trying to configure a ASP.Net site to
I'm trying to go through the NerdDinner example chapter from the ASP.Net MVC 1.0
I'm trying to send data from client-side to server-side (asp.net c#), if you really
I am trying to post some data to a ASP.NET MVC Controller Action. Current

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.