Thread: HTTP POST in C Programming??!

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #5
    spurious conceit MK27's Avatar
    Join Date
    Jul 2008
    Location
    segmentation fault
    Posts
    8,300
    That is atrocious. The person who wrote that did not understand what they were doing, or very likely, have any experience with either C or C++. Only a truly sick mind would think of using sprintf() that way. Horrible. Really, really bad code.

    The HTTP part is potentially correct, as long as you are sending a pure text file. Here's the RFC:

    RFC 2388 - Returning Values from Forms: multipart/form-data

    If you do some googling and reading on the nature of HTTP requests and specifically requests with a Content-Type of 'multipart/form-data', this is fairly straightforward. Using a tcp/ip socket is a separate issue, but there must be a million easy found tutorials, etc, on the topic for any platform.

    And as Salem said, that's mostly C. The parts you did not show may have more C++ in them -- who knows? Since you did not include the declaration of any of the variables, there's not much any one can do to help you with that.
    Last edited by MK27; 04-14-2012 at 07:09 AM.
    C programming resources:
    GNU C Function and Macro Index -- glibc reference manual
    The C Book -- nice online learner guide
    Current ISO draft standard
    CCAN -- new CPAN like open source library repository
    3 (different) GNU debugger tutorials: #1 -- #2 -- #3
    cpwiki -- our wiki on sourceforge

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. need help with HTTP POST
    By Anddos in forum Networking/Device Communication
    Replies: 5
    Last Post: 03-22-2009, 08:41 AM
  2. HTTP GET and POST REQUEST
    By strickey in forum Networking/Device Communication
    Replies: 3
    Last Post: 04-20-2007, 04:23 PM
  3. Http Post
    By X PaYnE X in forum C Programming
    Replies: 7
    Last Post: 04-17-2005, 04:20 AM
  4. HTTP Post Question
    By penney in forum C# Programming
    Replies: 2
    Last Post: 06-07-2004, 09:26 AM
  5. I Need A Example For Http Post
    By rjhome in forum C Programming
    Replies: 5
    Last Post: 02-17-2002, 10:49 AM

Tags for this Thread