Questions tagged [weblogic11g]

The 11.x (July 2009) release of WebLogic Server, a Java EE application server suite from Oracle. It's part of their Oracle Fusion Middleware product.

The 11.x (July 2009) release of WebLogic Server, a Java EE application server suite from Oracle. It's part of their Oracle Fusion Middleware product.

This tag covers specifics around version 11.* of Oracle WebLogic. For generic questions that might apply to every version, please use the generic instead.

See for more information.

627 questions
4
votes
2 answers

Multiple JSTL Versions in Weblogic J2EE App

Thanks in advance for taking a look :) I'm hard at work on a J2EE web app (in JDeveloper) and recently added some functionality that required JSTL, and I've hit a little bit of a snag. Whenever I try to deploy my war on Weblogic 11g, I get the…
4
votes
1 answer

WebLogic - Using environment variable / double quotes in "Arguments" in "Server Start"

I have an admin server, NodeManager, and 1 managed server, all on the same machine. I am trying to enter something similar to this to the arguments field in the Server Start tab: -Dmy.property=%USERPROFILE%\someDir\someJar.jar But when the managed…
talya.gendler
  • 43
  • 1
  • 1
  • 5
3
votes
2 answers

JVM crash in 6.0_26-b03

Our production servers crashed twice with problematic frame inside one of our classes. We have not been able to reproduce this issue and haven't seen it in any other environment. What can cause this? # # A fatal error has been detected by…
3
votes
2 answers

How to get Classpath for an EAR deployed in WebLogic Server

I have an application deployed as an EAR in WebLogic 10.3.2 version. I am working on some implementations where I got to scan all of the .jar files in classpath. At Runtime, when i call System.getProperty("java.class.path");, It returns me the…
Raj
  • 141
  • 1
  • 4
  • 6
3
votes
1 answer

Default Path for WebLogic site root on RedHat 5

I am flying blind and could use some help. I am a long time windows web developer/web admin and I have inherited a WebLogic 11g/RHEL5 box. I'm trying to figure out where the website files might be. My only contact with the box is through FTP, and…
Brien Malone
  • 605
  • 1
  • 9
  • 20
3
votes
2 answers

WebLogic Server :: The server does not support version 3.0 of the J2EE Web module specification

When I try running an application using the WebLogic 11g 10.3.5 server, it shows that "The server does not support version 3.0 of the J2EE Web module specification." How to overcome this? Thanks!
Harsha
  • 51
  • 2
  • 2
  • 4
3
votes
1 answer

View Weblogic Logs from Console

We deployed an app in a remote weblogic server. They gave us access to the console of the weblogic. But due to security reasons, we are not allowed to remote connect to the server and view the files. Question, is there a way from the weblogic…
Mark Estrada
  • 9,013
  • 37
  • 119
  • 186
3
votes
2 answers

How do you force Weblogic to print "null" in jsp files, rather than empty string "", for variables with null as the value?

Suppose I have JS code inside a jsp files, such as this: <% String test = null; %> var test = <%=test%>; With Tomcat and Websphere the resulting JS will be: var test = null; However, in Weblogic it will be: var test = ; So with weblogic…
GC_
  • 1,673
  • 6
  • 23
  • 39
3
votes
1 answer

Spring boot with Java 7 in Weblogic

I have a requirement to deploy the spring boot application in weblogic server 11g. The weblogic server supports only Java 7. Please assist me with the correct spring boot version and I get the following error if I use spring boot version…
3
votes
3 answers

Simple JNDI lookup from JDK 11 client to Weblogic 10.3.6 (JDK 7) server not working

Server Environment: Weblogic 10.3.6, JDK 1.7 I have a simple working Java SE client application runing with JDK 7. In client I am doing very simple JNDI look of a resource hosted server mentioned above. Jars in ClassPath: wlthint3client.jar public…
Rakesh Prajapati
  • 1,078
  • 8
  • 17
3
votes
0 answers

Oracle Weblogic 10.3.6: missing SNI extension in SSL Handshake

I have an old Weblogic 11g where I'm trying to connect over a remote URL in HTTPS using TLSv1.2. I have the following error: javax.net.ssl.SSLException: Received fatal alert: handshake_failure What I have done: imported the certificates (server,…
Alessandro C
  • 3,310
  • 9
  • 46
  • 82
3
votes
2 answers

WebLogic: can't get roles for user in EJB3

In my EJB 3 I try to test for the roles of the principal but it always returns false. In my WebLogic 11g Console I defined under "MyDomain" -> "Security Realms" -> "myrealm" -> "Users and Groups" 3 users (user1 , user2 & user3) and 2 groups (role1 &…
Koohoolinn
  • 1,427
  • 6
  • 20
  • 29
3
votes
0 answers

Getting java.io.EOFException: Response contained no data when invoking a Rest API from Weblogic using CXF

When i am invoking a rest API using JAXRS i am receiving an EOFException. When i run the same as an standalone Java Application. It is working fine and i am getting the response. But the same when i execute in Weblogic 10.3 I am receiving the…
3
votes
1 answer

Weblogic and BOM

We have web application with static content - html files, js files, images, etc. There are byte order mark at the beginning of all html files. These files were genereted by some tool. So I cannot modify them. We deploy this application on…
Volodymyr Bezuglyy
  • 16,295
  • 33
  • 103
  • 133
3
votes
1 answer

Organising domain in WebLogic

I’m working with a client that has its WebLogic (version is 11g) domains organised in terms of usegage – so one for production, one for test, one for dev, and all applications have to share a single domain. It has a lot of applications/domain…
Charles
  • 31
  • 1