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
14
votes
4 answers

Prevent Weblogic 12c from using system's slf4j binding

We're building new systen using slf4j as logging facade. When deploying on newly Weblogic 12c, we found this error on console log: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in…
dhchen
  • 1,178
  • 2
  • 10
  • 24
14
votes
4 answers

What raises HTTP 503 and how to change timeout?

I have inherited an application (internal to my company) that uses javascript running in Internet Explorer which makes Ajax calls to a Struts-based application running in WebLogic Server v10. Certain server-side operations in the system are taking…
14
votes
2 answers

Quartz org.quartz.jobStore.selectWithLockSQL row lock

I am using Quartz in clustered mode I have some row lock contention on DB level caused by excessive call to : org.quartz.jobStore.selectWithLockSQL "SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = :"SYS_B_0" AND LOCK_NAME = :1 FOR UPDATE" I read quartz…
Cris
  • 4,947
  • 6
  • 44
  • 73
14
votes
8 answers

How can I verify that web pages are being gzipped?

I plan to configure weblogic's gzip servlet filter (using weblogicx-gzip.jar) to gzip my web pages. How can I verify that the pages are being sent to the client gzipped?
BestPractices
  • 12,738
  • 29
  • 96
  • 140
14
votes
3 answers

how to deploy war/ear file from command line in weblogic

I want to deploy war/ear file from command line using wslt command into weblogic server. Will any one help on this issue. I need command to do this issue.
Obulesu Bukkana
  • 995
  • 4
  • 13
  • 25
14
votes
5 answers

weblogic.net.http.SOAPHttpsURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection

I am getting "java.lang.ClassCastException" while trying to connect to a url using javax.net.ssl.HttpsURLConnection . I am using Weblogic Server 10.3.4. import javax.net.ssl.HostnameVerifier; import javax.net.ssl.HttpsURLConnection; import…
DKingKumar
  • 549
  • 1
  • 6
  • 18
14
votes
6 answers

Weblogic Error 403--Forbidden

I am trying to run a Java EE application on weblogic. The application works fine on Tomcat. I have customized the war file to include weblogic.xml. This file includes the following code:-
13
votes
8 answers

Run @Scheduled task only on one WebLogic cluster node?

We are running a Spring 3.0.x web application (.war) with a nightly @Scheduled job in a clustered WebLogic 10.3.4 environment. However, as the application is deployed to each node (using the deployment wizard in the AdminServer's web console), the…
Axel Knauf
  • 1,683
  • 1
  • 13
  • 18
13
votes
10 answers

Where is class weblogic.jndi.WLInitialContextFactory?

when trying to execute my jar file I get an exception: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException:…
blackicecube
13
votes
1 answer

Effect of enable-call-by-reference

I get the messages
stracktracer
  • 1,862
  • 5
  • 24
  • 37
13
votes
2 answers

Weblogic 12c Web Service NullPointerException

For some reason the invocation of Web Service throws NullPointerException on my local Weblogic 12c installation. The same package works correctly on another instance of Weblogic 12c, so there must be something wrong on my weblogic configuration or…
Tuomas Toivonen
  • 21,690
  • 47
  • 129
  • 225
13
votes
2 answers

Spring Boot exception: Could not open ServletContext resource [/WEB-INF/dispatcherServlet-servlet.xml]

I have developed this proof of concept https://github.com/DISID/disid-proofs/tree/master/spring-boot-weblogic to test the deployment of Spring Boot applications in Weblogic 12c (12.2.1). The application deploys and starts successfully, but when I…
eruiz
  • 1,963
  • 1
  • 14
  • 22
13
votes
1 answer

SOA Suite to Axis2 data being dropped

We are in the process of migrating a WebLogic 10.3.5 web app to WebLogic 12.1.3 and we've run into an issue which we think might be related to web services security. The app uses Axis 1.5.6 to call out to a SOA Suite SOAP service (still running on…
6006604
  • 7,577
  • 1
  • 22
  • 30
13
votes
2 answers

difference between TOMCAT server and BEA WEBLOGIC server

What is difference between TOMCAT server and BEA WEBLOGIC server
kedar kamthe
  • 8,048
  • 10
  • 34
  • 46
13
votes
2 answers

Spring error - springframework.web.client.HttpClientErrorException: 404 Not Found

I'm trying to pass an object to another class using Spring (I'm not sure I'm using the right terms, I'm very new to Spring) this way: TestServicesUtils.getTemplate().postForLocation( "http://" + serverConfig + ":" + port +…
david
  • 741
  • 3
  • 10
  • 29