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
1
vote
1 answer

How can I prevent URL rewriting with JSESSIONID in WebLogic?

JSF, PrimeFaces 6.0, WebLogic. I have a menuitem like this: This URL redirect works sometimes but usually not works. When I look for differences between work…
İlyas Şahin
  • 293
  • 2
  • 3
  • 9
1
vote
0 answers

How to get an application, which is running on a WebLogic server, write Shiro messages to a log file on the server?

Goal: Have an application, which is running on a WebLogic server, write Shiro messages to a log file on the server Started on the local machine: Created a small web app that printed org.apache.shiro log messages locally to a log file, together with…
afrey
  • 141
  • 1
  • 2
  • 13
1
vote
0 answers

Metro Web Service on Weblogic 10.0

hoping someone may be able to help us get over a configuration issue we are having with getting Metro (JAX-WS) web services running correctly on our Weblogic 10.0 application server. Setup at the moment, a maven project in Eclipse and following the…
user815809
  • 351
  • 5
  • 24
1
vote
1 answer

Is there any way to test the weblogic admin connecting URL (t3/t3s) before connecting to it

I'm using following command to connect to weblgic using WLST, java weblogic.wlst core.py inside core.py I'm calling following command to connect to the weblogic admin. but some times the service url becomes unresponsive And my script hangs…
user1672382
  • 87
  • 1
  • 10
1
vote
0 answers

Getting linkage error in web logic server while doing roll restart

Getting below error after doing roll restart. To resolve this issue & to up the application running currently we are doing complete server restart. Caused by: java.lang.LinkageError: loader constraint violation: when resolving interface method…
1
vote
0 answers

Override annotated resource by the deployment plan in weblogic

I have @Stateless ejb with simple @Resource field @Stateless @Local({Foo.class}) public class FooImpl implements Foo { @Resource(name = "field1") private Boolean field1 = false; @Override public Boolean getStatus() { return…
1
vote
2 answers

How do I integrate JNI code into weblogic?

I am writing an application which will be deployed in weblogic. As part of this application, we are using a third party library which uses JNI. How do I make the .so file available to weblogic? I tried setting the LD_LIBRARY_PATH and restarting…
benhsu
  • 5,346
  • 8
  • 39
  • 47
1
vote
1 answer

Invalid web-app-versionType after Spring Upgrade

To support JUnit 5, I recently upgraded a Spring Boot application to version 2.4.7. Local development uses an embedded Tomcat server, while all other environments run on a Weblogic server 12.1.3. Everything runs locally, but using the Weblogic…
1
vote
1 answer

Spring boot application error when activating on weblogic

The scenario: I have a Spring boot application with 4 maven profiles, and 5 different application.properties files (e.g. application-dev.properties) (4 for the maven profiles and 1 for the default). Test and Production Maven profiles have almost the…
1
vote
0 answers

RmiDataSource cannot be cast to javax.sql.DataSource

Below is the code to connect to remote database. Datasource is configured on a remote weblogic server. I want to use the same jndi. I used ddmp-wlfullclient-12.2.1.3.jar as dependency. This program is a standalone java…
raajaag
  • 175
  • 4
  • 18
1
vote
1 answer

Migration java8 and WLS 12c to Java11 and WLS 14c

I have a java application that serves Soap xml web services, in the present case it is java8 app and running on weblogic 12c. I decided to upgrade it java11 and also weblogic 14c. As far as I read from Oracle's documentations Oracle removed jaxws…
turkuaz07
  • 43
  • 7
1
vote
1 answer

To run weblogic server in cygwin

I'm starting weblogic server in cygwin, I've added set DEBUG_OPTS = -Xdebug -Xrunjdwp:transport=dt_socket,address=5152,server=y,suspend=y in startwls.sh file and passed this DEBUG_OPTS when stating the weblogic server. But the server does not stops…
1
vote
1 answer

NoClassDefFoundError while deploying a OpenID Azure AD java web-app on Weblogic

I am trying to integrate Azure AD for my web-app using OpenIDConnect approach. When I try to deploy the built ear file on weblogic I get NoClassDefFound for com.nimbusds.openid.connect.sdk.AuthenticationSuccessResponse . I have included…
vick_4444
  • 303
  • 1
  • 5
  • 19
1
vote
1 answer

how to know there is waits in WebLogic connection pool and what is the default wait timeout and what error will weblogic throw in the event of such?

How would one know if there is a wait in WebLogic connection pool and what is the default wait timeout and what error will weblogic throw in the event of such?
Oh Chin Boon
  • 23,028
  • 51
  • 143
  • 215
1
vote
1 answer

jvm full gc can't unload classes even permgen is full

Our production server went OOM because permgen is full. Using jmap -permstat to check the permgen area, we found there were many classes loaded by com.sun.xml.ws.client.WSSServiceDelegatingLoader. The loaded classes are com.sun.proxy.$ProxyXXX,…
Xinli Niu
  • 471
  • 1
  • 4
  • 6
1 2 3
99
100