Why is itshowing your JDK ‘C:\Program Files\Java\jre7’ is not a valid JDK while installing WebLogic server?

i faced the same problem even when JAVA_HOME points to JDK this is how i resolved it , run command prompt as administrator go to the directory which contains your jar file C:\Windows\system32>cd/ C:\>cd oracleweblogic Set JAVA_HOME and path again on the command prompt //put path in double quotes otherwise it won’t recognize variable C:\oracleweblogic>set … Read more

Weblogic or JBoss? [closed]

I suspect the reason Weblogic gets chosen is a pleasant sales person comes to visit a manager with money to spend, gives him the sales pitch and hey-presto, the company is using Weblogic. I don’t know if the JBoss support contract comes with a sales force, but would be surprised if it did and that … Read more

What is t3 protocol in weblogic server?

Weblogic’s implementation of the RMI specification uses a proprietary protocol known as T3. You can think of T3 (and secure T3S) as a layer to expose/allow JNDI calls by clients. T3 is the protocol used to transport information between WebLogic servers and other types of Java programs. WebLogic keeps track of every Java virtual machine … Read more

SessionTimeout: web.xml vs session.maxInactiveInterval()

Now, i’m being told that this will terminate the session (or is it all sessions?) in the 15th minute of use, regardless their activity. This is wrong. It will just kill the session when the associated client (webbrowser) has not accessed the website for more than 15 minutes. The activity certainly counts, exactly as you … Read more