Questions tagged [weblogic]

WebLogic Server is a Java EE application server from Oracle. WebLogic Server is the centerpiece of Oracle's Fusion Middleware platform.

WebLogic is an Oracle owned brand that builds a complete product suite consisting of a couple of Java EE related products, such as:

  1. Java EE application server, WebLogic Application Server
  2. WebLogic JRockit JVM
  3. WebLogic RealTime Edition
  4. Virtual Assembly Builder

WebLogic came to Oracle through the acquisition of BEA Systems Inc. in 2008. See the Wikipedia entry for a complete history.

References

6049 questions
10
votes
1 answer

java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(); from WeldMessageConveyor

I get the following exception when I try deploying my webApp on weblogic12: weblogic.application.ModuleException: java.lang.IllegalAccessError: tried to access method…
Ratshiḓaho Wayne
  • 743
  • 1
  • 5
  • 23
10
votes
3 answers

Adding custom object to JNDI on Weblogic 10

Is it possible to add a custom object (String or URL) to JNDI using Weblogic Server Administration Console (Weblogic 10.0) or by editing server's configuration file (config.xml)?
Tadeusz Kopec for Ukraine
  • 12,283
  • 6
  • 56
  • 83
10
votes
2 answers

Seam/Hibernate: liquibase before JPA startup

I have a Java EE web application (hibernate3, seam) that I'm using in Weblogic container. I want to introduce Liquibase for schema migrations. Currently we use which we want to drop because…
gyorgyabraham
  • 2,550
  • 1
  • 28
  • 46
10
votes
5 answers

How to avoid sending HTTP request from a Java web server to itself?

Real situation is like this: Java web server (Weblogic) recieves a request from user for which it has to send a ZIP archive in response. Archive has to be dynamically generated from some files user asked for and one HTML report generated by the…
user319799
10
votes
6 answers

Remotely accessing Weblogic server

I installed locally and now running Weblogic Server in my machine. I can access the web application from my machine by using URL like 192.168.XXX.XXX:7001/myapp/, but I cannot access it from a different machine connected in same network. I have done…
Assel Nurmukhanova
  • 101
  • 1
  • 1
  • 4
10
votes
2 answers

How do I have weblogic reload cached JSPs on restart

Our method of deploying a new version of an app for weblogic (11g) is to copy over top of the existing ear file and then stop and restart the weblogic server. We do a start/stop of weblogic rather than a redeployment, because of the known permgen…
BestPractices
  • 12,738
  • 29
  • 96
  • 140
9
votes
2 answers

Maven JVM terminated unexpectedly with exit code 0 on weblogic deploy

I have written pom.xml for auto deployment process between hudson and deployment servers. The script which i return its working perfectly i can see the application in web logic server. The application has been deployed in the web logic server. No…
Rocky
  • 91
  • 1
  • 2
9
votes
2 answers

How do I make Weblogic 10 prefer the jars in myApp.war:/WEB-INF/lib/ without throwing VerifyErrors?

The Weblogic classloader seems to prefer system libraries over the libraries in my war's WEB-INF/lib/. I've tried setting the following in WEB-INF/weblogic.xml, without success:
neu242
  • 15,796
  • 20
  • 79
  • 114
9
votes
1 answer

cannot send message to weblogic queues

Iam trying to send a string message into a JMS queue created in weblogic server. Iam using Eclipse ide and when i run my web application i get the following error and the tomcat server gets shutdown.The error is javax.naming.CommunicationException…
TechnocraT
  • 313
  • 2
  • 6
  • 22
9
votes
1 answer

How to deploy a Spring Boot (non-web) Application on Weblogic 12c

I'm trying to deploy a Spring Boot application that does not do any servlets in a Weblogic 12c server. Normally the main application class would implement WebApplicationInitializer and then Weblogic would take it from there. When I don't do this for…
Michiel Haisma
  • 786
  • 6
  • 17
9
votes
2 answers

'The user must supply a JDBC connection' on weblogic restart

I am using Weblogic 11. After initial deployment of all JMS configurations, JDBC configuration (from XADS-jdbc.xml) and ears everything works properly. But after weblogic restart application fails to initialize with error Caused By:…
Marija
  • 91
  • 1
  • 4
9
votes
1 answer

WebLogic Application does not have any Components in it

We are upgrading a J2EE application (JSP & EJB 2.0) from WebLogic Service 8.1 to 12c(12.2.1.1.0). We are building an exploded EAR to a directory in the domain directory. We use the admin console to deploy the application but it fails with…
SCote
  • 664
  • 1
  • 8
  • 19
9
votes
5 answers

Weblogic remote debugging using eclipse

My Weblogic is installed in a Red hat OS machine. In the startWebLogic.sh i have added this line JAVA_OPTIONS="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=n %JAVA_OPTIONS%" When I try to connect from my Eclipse I…
mujeeb
  • 799
  • 5
  • 18
  • 29
9
votes
4 answers

Weblogic upgrade to 12c: deployment fails because url mapped to multiple servlet

I've recently setup a new Weblogic 12c environment. On deploying an application that I know works in Weblogic 11g I get the error "The url-pattern /resources/* in web application is mapped to multiple Servlets." The mapping it's referring to is in…
WhyWeblogic
  • 91
  • 1
  • 1
  • 2
9
votes
2 answers

Weblogic 10.3.1.0 is using com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar... I want to use commons-net-2.0.jar from my code

Weblogic 10.3.1.0 is using com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar... I want to use commons-net-2.0.jar from my code. How can I force it to use the newer JAR in my code only?
Cal
  • 1,625
  • 4
  • 20
  • 30