• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

proxy

 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi elliotte,

Yesterday I read a book that handled insecure code, and proxies for requests and responses of your browser. In what way would your book be helpfull to write a proxy to see all incoming and outgoing messages and headers ?

thanks,
friso
 
author
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It depends on what kind of proxy server you want to write. If you're writing a sockets level, SOCKS proxy server you could implement that on top of Socket and ServerSocket. That's chapter 9 and 10. Chapter 2 would also be helpful for understanding just what proxy servers and network application do. If you just want an HTTP proxy server, you'd still end up using Socket and ServerSocket, However, you'd also want to read chapter 3, 7, and 15 to get a better understanding of what goes on under the hood of typical web browsers and servers.
 
Yeah, but is it art? What do you think tiny ad?
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic