Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My purpose is posting a binary file to form.I use sample example on MSDN which is appending a file into another file because i want to get buffer into memory.So I created a function sprint and it always add new buffer to string and then i m trying to post it into server using postit function.What am I doing wrong?

Note:I can upload little part of file sucessfully so there is no problem on uploading from form.Just getting the binary part into string as I wanted

    char *sprint(char *g,char *b,int l){
    int i;
    int z = strlen(g);
    int f = sizeof(b);
    for (i=0;i<f;i++){
    g[z+i] = b[i];
    }
    }

    char *postit(char *a){
            HINTERNET hInet = InternetOpen(NULL, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
    char frmdata[2500];
    sprintf(frmdata,"-----------------------------acebdf13572468\r\nContent-Disposition: form-data; name=\"uploaded\"; filename=\"C:\\Users\\len
\\Desktop\\cv.doc\"\r\nContent-Type: application/pdf\r\n\r\n%s\r\n-----------------------------acebdf13572468--\r\n",a);

     char *hdrs = "Content-Type: multipart/form-data; boundary=---------------------------acebdf13572468\nUser-Agent: aa";
            HINTERNET hConnect = InternetConnect(
                            hInet,
                            "t",
                            80,
                            NULL,
                            NULL,
                            INTERNET_SERVICE_HTTP,
                            0, 0
            );
    LPCSTR accept[2]={"*/*", NULL};
            HINTERNET hRequest = HttpOpenRequest(
                    hConnect,
                    "POST",
                    "/a",
                    NULL, NULL, NULL, 0, 0
            );

            BOOL ret = HttpSendRequest(hRequest, hdrs,strlen(hdrs), frmdata, strlen(frmdata)+1200);
    }

    int main()
    {

      HANDLE hFile;
      HANDLE hAppend;
      DWORD  dwBytesRead, dwBytesWritten, dwPos;
      char   buff[4096];
      char *g;
      g = (char *)malloc(35000);

      // Open the existing file.

      hFile = CreateFile(TEXT("a.doc"), // open One.txt
                GENERIC_READ,             // open for reading
                0,                        // do not share
                NULL,                     // no security
                OPEN_EXISTING,            // existing file only
                FILE_ATTRIBUTE_NORMAL,    // normal file
                NULL);                    // no attr. template

      if (hFile == INVALID_HANDLE_VALUE)
      {
         printf("Could not open One.txt.");
         return;
      }

      // Open the existing file, or if the file does not exist,
      // create a new file.

      hAppend = CreateFile(TEXT("do.doc"), // open Two.txt
                  FILE_APPEND_DATA,         // open for writing
                  FILE_SHARE_READ,          // allow multiple readers
                  NULL,                     // no security
                  OPEN_ALWAYS,              // open or create
                  FILE_ATTRIBUTE_NORMAL,    // normal file
                  NULL);                    // no attr. template

      if (hAppend == INVALID_HANDLE_VALUE)
      {
         printf("Could not open Two.txt.");
         return;
      }

      // Append the first file to the end of the second file.
      // Lock the second file to prevent another process from
      // accessing it while writing to it. Unlock the
      // file when writing is complete.

      while (ReadFile(hFile, buff, sizeof(buff), &dwBytesRead, NULL)
          && dwBytesRead > 0)
        {
        dwPos = SetFilePointer(hAppend, 0, NULL, FILE_END);
        LockFile(hAppend, dwPos, 0, dwBytesRead, 0);
        WriteFile(hAppend, buff, dwBytesRead, &dwBytesWritten, NULL);
        UnlockFile(hAppend, dwPos, 0, dwBytesRead, 0);

    sprint(g,buff);

        }
     postit(g);

      CloseHandle(hFile);
      CloseHandle(hAppend);
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.