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
11
votes
2 answers

Weblogic: disable jersey scanning

My webapp contains a library which contains a class annotated with @javax.ws.rs.ext.Provider. If this class is present, my webapp (deployed as a WAR within an EAR) fails to start with the following error: <19-Jun-2014 14:41:50 o'clock BST>
stripybadger
  • 4,539
  • 3
  • 19
  • 26
11
votes
1 answer

Best way to set environmental variables in WebLogic startup

In Oracle WebLogic, what is the best way to set an environmental variable so that it can be accessed by your code? We have third-party apps running WebLogic that look for an environment variable. Note: We start our managed servers using Node…
David Hergert
  • 1,442
  • 3
  • 14
  • 22
11
votes
1 answer

Shutting down Spring application makes JNDI name for datasource go away from jdbc context

I'm trying to setup a web application using Spring MVC and Spring Data JPA on my Weblogic server. The application works fine the first time I deploy it to the Weblogic server but when I stop the application the jndi name (jdbc/myDS) to my…
gusjap
  • 2,397
  • 5
  • 24
  • 38
11
votes
2 answers

java.lang.ClassFormatError: Duplicate method name&signature in class file

We are in the process of upgrading our application from Weblogic 10.3.0 to 10.3.6. When we try to deploy it we get the error: java.lang.ClassFormatError: Duplicate method name&signature in class file... Upon further investigation we discovered…
Pavel Rozenblioum
  • 144
  • 1
  • 2
  • 5
11
votes
8 answers

weblogic.application.ModuleException: Context path '' is already in use by the module: / application:

When i am trying to run weblogic server 12c , it is throwing this error and is unable to start.
Shivagoy
  • 373
  • 3
  • 5
  • 15
11
votes
2 answers

Ignoring SSL validation in Java

I have to call an HTTP service hosted on web server with an invalid SSL certificate. In dev, I'm importing the certificate with keytool but the certificate will be different on each client install, so I can't just bundle it. Foreword: I DO know that…
Eric Darchis
  • 24,537
  • 4
  • 28
  • 49
10
votes
3 answers

Weblogic and Oracle: Stuck ExecuteThread

We are running SpringMVC with Hibernate on a clustered Weblogic environment. Our application worked well, until we run into database space problems. Due to that, our DB provider extended the database storage. After that change the Weblogic system…
tomraithel
  • 958
  • 2
  • 13
  • 22
10
votes
1 answer

Can a transaction be propagated between EJBs from different applications in Weblogic?

We're developing a system that have two main logics; One's a management logic, which is very light; and the other is a processing logic, which is very resource (RAM + CPU) consuming. We decided to have one machine to run the management logic, and…
wafwaf
  • 651
  • 12
  • 24
10
votes
3 answers

Comparing string and boolean in Expression language

I have this behaviour I do not really understand ${someVar} ${someVar.class.name} ${someVar == 'error'} outputs false java.lang.Boolean true How can it be exlpained? What it the correct way to write the test in order to first test if the…
Paolo
  • 2,461
  • 5
  • 31
  • 45
10
votes
5 answers

Difference between web server and application server

As a layman, how do I understand the difference between web server and application server ? If you could give an example using a Java based web app in very "simple" terms that would be really great.. Also when we say Weblogic, is it a web server…
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
10
votes
1 answer

"Sudo su - weblogic" via a Java Program?

I am trying to connect my remote unix machine and execute some ssh commands using a java program. connection = new Connection(hostname); connection.connect(); boolean isAuthenticated =…
Bharat
  • 750
  • 1
  • 9
  • 20
10
votes
3 answers

How can I connect to Weblogic remotely using JConsole?

Which URL, port and weblogic server side settings do I need to use?
yazz.com
  • 57,320
  • 66
  • 234
  • 385
10
votes
1 answer

Disconnecting from a weblogic JMS

Right now my disconnection from a weblogic JMS server looks like this import java.util.Hashtable; import javax.jms.*; import javax.naming.*; import javax.transaction.*; import java.util.Vector; import javax.rmi.PortableRemoteObject; import…
jrahme
  • 253
  • 1
  • 12
10
votes
2 answers

How to setup remote debugging on Weblogic clustered environment?

I'm trying to remote debug a clustered Web Application that is deployed on WebLogic 12c. I know how to setup remote debugging for normal (non-clustered) environments, I just add the following parameters to the file named [startWebLogic.cmd]: set…
Ghayth
  • 894
  • 2
  • 7
  • 18
10
votes
3 answers

How to create web service client in a .jsp page?

I have created a WSDL for my web service. I would like to know how to call it from a jsp page from my another web application. I would like to call the web service from the jsp.. for example considering i have very simple web service which would…
vikram
  • 101
  • 1
  • 1
  • 4