Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
K

Klaus Weisser

@Klaus Weisser
About
Posts
4
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problems with WebRequest and Connection
    K Klaus Weisser

    Maybe a proxy problem ? If you use a proxy server to connect to the internet, try to set the Proxy member of WebRequest. example

    private string readHtmlPage(string url)
    {
    string _result;
    WebResponse objResponse;

    WebProxy myProxy = new WebProxy( <hostname/ip>, <port number> );
    // if your proxy requires authentication add
    // myProxy.Credentials = new NetworkCredentials( <username>, <password> \[, <domain>\] )
    
    WebRequest objRequest = System.Net.HttpWebRequest.Create(url);
    // apply proxy to web request
    objRequest.Proxy = myProxy;
    
    objResponse = objRequest.GetResponse();
    using (StreamReader sr = new StreamReader(objResponse.GetResponseStream()) )
    {
        \_result = sr.ReadToEnd();
        // Close and clean up the StreamReader
        sr.Close();
    }
    return \_result;
    

    }

    Maybe this helps ;)

    ASP.NET help sysadmin csharp hardware data-structures

  • Remoting
    K Klaus Weisser

    It depends if the chat app is using remoting. Take a look here: http://www.ingorammer.com/Software/OpenSourceRemoting/BiDirTcpChannel.html

    Visual Basic question sysadmin

  • Remoting
    K Klaus Weisser

    you need to have a bidirectional remoting channel. I think the standard .net channel classes are only unidirectional. Search the web for "bidirectional remoting channel". I've seen such a tutorial but I can't remember where it was.

    Visual Basic question sysadmin

  • how can communicate with a router
    K Klaus Weisser

    use SNMP to communicate with the router. but I haven't done something like this in c# til now.

    C# question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups