CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Https Proxy(Urgent)

    Hi

    How can i write a Https proxy server in java or i have a code of http proxy server and i want to impliment Https protocol.Plz Help me...

  2. #2
    Join Date
    Feb 2008
    Posts
    38

    Re: Https Proxy(Urgent)

    Try to refer this tutorial. Perhaps it can help you.

    http://rapidshare.com/files/11321502...rd_Edition.chm

  3. #3
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    thxs for reply


    but i need code tips..

  4. #4
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Https Proxy(Urgent)

    They can help
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  5. #5
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    ok

    why you give me pay site address? Just i want to know how can i start.Any way if you want to help me then it is a link of code http://www.dhruvasagar.com/Proxy.zip problem is i am able to open http site but i havn't able to open Https site.if you want to help me then plz help me...

  6. #6
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: Https Proxy(Urgent)

    If you want help, you need to be more specific - what, exactly, is the problem? Where is the code? If there is an error message, post up the full text.

    In theory, there is no difference between theory and practice, but not in practice...
    Anon.
    Please use [CODE]...your code here...[/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

  7. #7
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    actually my problem is that my code of proxy server is working well with http protocol and any site open with http prefix(e.g. http://www.google.com) is easily recognized by my code and show in my log editor and site open successfully.
    but when any site url prefixed with https, site is not open and "HTTP 500 internal server error" comes, and my log editor display
    Code:
    192.168.6.2--->127.0.0.1-CONNECT http:/www.ccavenue.com:443:80
    i have taken help from this below link to develop my application:

    http://www.cs.technion.ac.il/Labs/Lc...ng97/project1/

    Please help me out.

    Thanks

  8. #8
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    Hello Sir

    are you there?

  9. #9
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Https Proxy(Urgent)

    We need you to post some of your source code. What port choices were available back in 1996? I don't think the original java program did it.

    EDIT: Wiki didn't know, but says Netscape came up with them.
    Last edited by dglienna; May 9th, 2008 at 11:42 PM.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  10. #10
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    Hello sir

    i had post link.There is a code.Ok which part of code you want..

  11. #11
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    Hello Sir

    i am sending again link http://www.cs.technion.ac.il/Labs/Lc...ng97/project9/. In this link you can download code easy.

  12. #12
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Https Proxy(Urgent)

    I'm not a Java guy, but I do know that https uses port 443, not port 80, which http protocol uses.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  13. #13
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    ok i am uesing HTTP protocol and it is working on port 80

  14. #14
    Join Date
    May 2008
    Location
    On PC
    Posts
    65

    Re: Https Proxy(Urgent)

    Hello Sir


    Can you give me link or code of Https proxy server.It's not matter it is in java or some different lang.
    Last edited by babjava; May 10th, 2008 at 07:49 AM.

  15. #15
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: Https Proxy(Urgent)

    Quote Originally Posted by babjava
    ok i am uesing HTTP protocol and it is working on port 80
    You said you couldn't get HTTPS to work. dglienna said that HTTPS uses port 443 not port 80. The error message you get shows you were trying to access HTTPS via port 80 instead of port 443, so why not try the HTTPS port suggested by dglienna?

    Experience is a poor teacher: it gives its tests before it teaches its lessons...
    Anon
    .
    Please use [CODE]...your code here...[/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

Page 1 of 2 12 LastLast

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