Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Tomcat & SSL & maybe Apache

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
does anyone know a good link for configuring Tomcat with SSL?
If I implement Tomcat with Apache can I configure Apache so that some servlets are handled by Tomcat using SSL and some aren't?
Thanx
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you mean to use HTTPS, then the key thing to note is that HTTPS uses a different default port (443 If I recall correctly) to HTTP. It's fairly easy to configure Apache to put a different "virtual host" on each of these ports if you want to, but as for how you'd make sure that the requests are encrypted/decrypted correctly is beyond me. Perhaps someone else here has more information?
 
Justin Moore
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
my understanding is that u can set up Apache to map access to some paths as secure and others as not secure. which is what I want to do. I haven't done it yet though.
Instead I got Resin and it was all too easy!!! nice one Resin!!
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
We have a similar situation in our Project where a few pages are meant to be accessed via https only. We have configured https on iPlanet successfully but now we can access the whole application on that port over https. How will we restrict access only to these pages in iPlanet ?
( I don't have an option of switching web servers !!..:-) )
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic