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

Search:

Type: Posts; User: doublebyte

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    5,721

    Re: Stream closed while writing

    Hi Arjay, thanks for your answer!
    What I'm doing inside this request is actually thread safe (I think), since Im throwing requests to a (multitreaded) webserver and then displaying them in a client...
  2. Replies
    2
    Views
    13,458

    Re: [RESOLVED] Stream closed while writing

    I thought I made the point of situation here;
    Following some suggestions, I decided to go for an implementation with explicit threading (giving up on the ThreadPool and Asynchronous webrequests,...
  3. Replies
    2
    Views
    13,458

    [RESOLVED] Stream closed while writing

    Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
    For the people that did not read my other posts, I am trying to use the...
  4. Replies
    2
    Views
    5,721

    [RESOLVED] Stream closed while writing

    Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
    For the people that did not read my other posts, I am trying to use the...
  5. Replies
    0
    Views
    5,278

    Stream closed while reading socket

    Hi there, this is - I think - my third post on this subject, which means I was still not able to implement my proxy server.
    For the people that did not read my other posts, I am trying to use the...
  6. Replies
    1
    Views
    4,937

    Re: Threaded Proxy?

    So I think the summary of the situation concerning multithreading in C# is (correct me if I'm wrong):
    - use asynchronous requests and let the system handle the multithreading; (1)
    - use threadPool...
  7. Replies
    1
    Views
    4,937

    Threaded Proxy?

    Hi,
    Thanks for reading this!
    For the people who never read any of my posts I am trying to write a proxy server in c#.
    I am trying to "keep it simple" and stay away from asynchronous requests, but...
  8. Replies
    1
    Views
    4,430

    Re: Asynchronous sockets

    I decided that I didnt need such a complicated solution; I didnt need one asynchronous listening socket and an asynchronous client socket;
    In fact, all I need is a listening socket that is...
  9. Replies
    1
    Views
    4,430

    Asynchronous sockets

    Hello,
    First of all thanks for reading this. I am aiming to create a proxy server to overcome some authentication problems. The idea is to have the server handling the requests to a certain port,...
  10. Replies
    1
    Views
    7,358

    Asynchronous socket and webrequest

    Hi,
    I have implemented a communication model where I have a listening socket, waiting for requests on a specific port.
    Once it gets called, it generates a client that creates two sockets: one...
  11. Replies
    6
    Views
    17,616

    Re: AJAX and Windows Authentication

    Thats fine, except that I am not loading the wepage in IE, but in a C# activeX that emulates a browser (IE, thought...)
  12. Replies
    6
    Views
    17,616

    Re: AJAX and Windows Authentication

    thnx!
  13. Replies
    6
    Views
    17,616

    AJAX and Windows Authentication

    Hello,
    Im looking for a way to bypass windows authentication with javascript, so that the user is not prompted with username and password when he enters the site.
    Is there any way of supporting the...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured