Forum Moderators: phranque

Message Too Old, No Replies

Protocol used by mod weblogic.c

mod_weblogic.c

         

someone genius

7:20 am on Aug 12, 2009 (gmt 0)

10+ Year Member



Which protocol is being used by mod_weblogic.c for communicating between Weblogic and Apache? http or https? secure or unsecure?

Is there any way to tweaking/optimize performance of mod_weblogic.c?

bakedjake

4:24 pm on Aug 14, 2009 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



It's been a long, long time since I've used mod_weblogic, but when I did it used a tunneled HTTP request (similar to how mod_proxy in reverse mode operates).

You could configure the port with the WebLogicPort parameter.

By default, it did not use HTTPS, but you could configure it to do so with the SecureProxy parameter.

In general, when using a backend application server, it is best in terms of performance to have the individual servers do what they are good at. Let your apache server serve static content like html files, graphics, stylesheets, etc - apache will always be far more efficient in serving static content, and it prevents a network request (which adds latency) for frequently requested content.

someone genius

6:56 am on Aug 17, 2009 (gmt 0)

10+ Year Member



Thanks!