This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes Protocols Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "Protocols" Watch "Protocols" New topic
Author

Protocols

H. Hafer
Ranch Hand

Joined: Aug 23, 2004
Posts: 108
Hi folks,

I'm trying to figure out the protocols over which the different nodes are communicating, but I've no clue, what protocol is in charge for webserver<->appserver.
Is it JRMP?

thanks,
Harbo
Dan Drillich
Ranch Hand

Joined: Jul 09, 2001
Posts: 1129
Harbo,

I'm looking at the configuration of the application that I work on. We use iPlanet and WebLogic all within a Vignette V6 platform. In our case the default protocol between iPlanet and WebLogic is http. However, it is configurable, so maybe other protocols can be used.

Regards,
Dan


William Butler Yeats: All life is a preparation for something that probably will never happen. Unless you make it happen.
Parag Doshi
Ranch Hand

Joined: Jun 29, 2004
Posts: 317
A question related to the web server <-> appserver communication. The requirements state that the communication btw the customer and the system should be secured. Does that mean the communication btw the web server and app server also need to be secured or only the web interaction with customer need to be secured?

Parag
Dan Drillich
Ranch Hand

Joined: Jul 09, 2001
Posts: 1129
Parag,

I would say that only the web interaction with the customer needs to be secured.

Regards,
Dan
Parag Doshi
Ranch Hand

Joined: Jun 29, 2004
Posts: 317
Originally posted by Dan Drillich:
Parag,

I would say that only the web interaction with the customer needs to be secured.

Regards,
Dan


Thanks Dan.
H. Hafer
Ranch Hand

Joined: Aug 23, 2004
Posts: 108
Originally posted by Dan Drillich:
In our case the default protocol between iPlanet and WebLogic is http.


Dan,

HTTP?
That would be my very least bet because why on earth should, e.g., a servlet (deployed on the web server) communicate with a session facade (deployed on the app server) over HTTP?
Surely, I've lost track somewhere.

Cheers,
Harbo
Dan Drillich
Ranch Hand

Joined: Jul 09, 2001
Posts: 1129
I guess web servers can host servelts, but in the implementations that I participated the servelts were on the app server. The web server served only static files and images.
I just spoke with our Middleware guys. They confirmed that this is the regular case.

Regards,
Dan
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Protocols
 
Similar Threads
open a pdf inline using MIME in ie7
get Firewall configuration in JAVA
Question about URLConnection
Java Secure Socket Extension (JSSE)
How to write telnet server like program?