CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Ruud Veromatic

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    7,493

    Re: ISAPI image

    Problem solved! :)

    Instead of:

    sprintf_s(chHeader, 100, "Content-Type: image/jpeg\r\nContent-length: %d\r\n", dwBytesRead);
    It needed:

    sprintf_s(chHeader, 100, "Content-Type:...
  2. Replies
    2
    Views
    7,493

    Re: ISAPI image

    Note, the error I get after the line:


    g_WriteClient(pECB->ConnID, byBuffer, &dwBytesRead, 0));

    is 10054 - WSACONNRESET - An existing connection was forcibly closed by the remote host.
    ...
  3. Replies
    2
    Views
    7,493

    ISAPI image

    Hello, I am a newbee on WinCE and on ISAPI. I have managed to create an ISAPI dll that dynamically generated html pages and sends them to the client.

    When I put an <img> tag in my html, I notice...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured