CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2010
    Posts
    2

    IIS CGI with ReadFile

    i am having a problem with a legacy CGI application written in C/WINAPI

    it essentially is a notification callback to receive google checkout notifications as an HTTP upload (application/xml)

    it is working for the most part and when i use a simple test program it works fine as well but when google sends larger xml files (more than 1K) i get the proper content length but read file doesnt return all the bytes.

    if i send the same file from my test program it all works fine.

    tried all kinds of things but am running out of ideas

    Anyone has any idea what i can look for?

    thanks

    Mike

  2. #2
    Join Date
    Feb 2009
    Location
    Portland, OR
    Posts
    1,488

    Re: IIS CGI with ReadFile

    Quote Originally Posted by starzen View Post
    Anyone has any idea what i can look for?
    Source code for that application. Most certainly it uses some 16-bit programming concepts that cause a memory restriction. If the code is not proprietary post it here and someone will take a look at it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured