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

Weblogic setting to cap number of concurrent JMS connections

we are debugging a production issue on our Weblogic Server hosting JMS queues. At high load times, we have been told the JMS queues reject incoming messages due to a limited number of connections. This is a guess by the system admins. We are running…
JoseK
  • 31,141
  • 14
  • 104
  • 131
1
vote
2 answers

Debugging session creation on WebLogic

I'm debugging an issue where calls to our weblogic server often return with a new JSESSIONID value, replacing the JSESSION that was originally sent. The issue occurs frequently, but not consistently. (Ie., when it affects you, it affects ~90% of…
Marty Pitt
  • 28,822
  • 36
  • 122
  • 195
1
vote
2 answers

JMS Exception when trying to read the message

Hi guys i am facing a problem where when i try to read the message at my server i am getting this error. java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[application_loginid, Administrators] i am setting the context…
karthick
  • 11,998
  • 6
  • 56
  • 88
1
vote
2 answers

Cannot run program "C:\Program Files\Java\jdk1.8.0_202\bin\java.exe" Malformed argument has embedded quote: -Djava.endorsed.dirs=

ERROR: Cannot run program "C:\Program Files\Java\jdk1.8.0_202\bin\java.exe" (in directory "C:\Users\USERNAME\AppData\Local\JetBrains\IntelliJIdea2020.3\compile-server"): Malformed argument has embedded quote: -Djava.endorsed.dirs= I keep getting…
Jdslk
  • 97
  • 3
  • 8
1
vote
1 answer

Does it exist a Weblogic plug-in for Java Mission Control 7.1.2?

The previous version of JDK Mission Control 5.5.2 bundled with Oracle JDK 7 had the possibility to add a WebLogic plug-in, which allows viewing the SQL queries, servlets between other components as seen in this image. Then the new JDK Mission…
Mario.Cadiz
  • 178
  • 12
1
vote
1 answer

Debug Port in containerized WebLogic server

I have a containerized WebLogic server which is running on my docker host mapped with three port: 5556, 6001, 7001. I have deployed my java product and everything is successful. I have also assaign a debug port on 8453 based on this article on…
1
vote
1 answer

org.apache.openjpa.persistence.PersistenceException: Cannot set auto-commit mode when using distributed transactions

I setup simple java ee project and using jta transaction and using OpenJpa 2.4.2 as Jpa provider, maven 3.3, eclipse 2020-06, jdk 8U2002, weblogic 12.4.2 and java ee 6 and get this exception: javax.ejb.EJBException: EJB Exception: :…
hamidreza75
  • 567
  • 6
  • 15
1
vote
1 answer

ConcurrentModificationException when looping through lists from JPA in WebLogic

When looping through a List that comes from a JPA query in WebLogic, the application throws a ConcurrentModificationException as soon as this list is traversed. Caused By: java.util.ConcurrentModificationException at…
SeverityOne
  • 2,476
  • 12
  • 25
1
vote
2 answers

Redirect to Mobile pages in Struts

I have an existing web app which uses Struts for the forward-action... I am trying to create a mobile version (mainly the UI design will be different) of this existing web app. Now this app is using Struts 2 for the forward-action thing.. My…
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
1
vote
2 answers

How do I make Weblogic 8.1 serve static content?

I come from the Open source world where I'm used to having Apache serve up my images, css, javascript, etc., while Tomcat or an app server of its ilk handles all the Java EE lifting. But now I'm doing a project with Weblogic 8.1, and I can't seem to…
bpapa
  • 21,409
  • 25
  • 99
  • 147
1
vote
0 answers

Sensitive Cookie Without 'HttpOnly' and 'Secure' flag for cookie set via javascript

After a security scan for xss vulnerabilities in our web application, we had some issues related to cookies set via javascript. Exact Security tool provided Issue: CWE-1004 - Cookies set via JavaScript does not have an associated Http response…
Manou
  • 11
  • 2
1
vote
0 answers

JSF External Context getRealPath

I'm using JSF 2.1.2. On my locale machine FacesContext.getCurrentInstance().getExternalContext().getRealPath("navigation.xml") returns the correct path to the file! On another machine it returns null. I deployed the same WAR file on both…
Sebi
  • 2,534
  • 2
  • 26
  • 28
1
vote
2 answers

WLST - Node Manager Commands : "nmStart" can it start many weblogic servers at the same time?

we are using "WLST - Node Manager Commands" to control our servers restart. but to minimize the restarting time, can we run multi servers at the same time ? our code right now working like this…
Majed
  • 917
  • 6
  • 18
1
vote
0 answers

How to reference a wsdl file from a dependency jar?

I have 3 modules: The api jar contains the xsd + wsdl files and generates the java objects during compile using cxf-codegen-plugin from apache. The service jar implements the interface generated by the the api, which is imported as…
anat0lius
  • 2,145
  • 6
  • 33
  • 60
1
vote
1 answer

Why does not expire session in weblogic when websocket is enabled?

I developed a Spring Boot 2.1.0 web application and used Weblogic 12.2.1.4 as a web server. When I enabled WebSocket, session does not expired in Weblogic but it works correctly in the embeded Tomcat and session is expired. Some configs when I used…
ali reza
  • 84
  • 9
1 2 3
99
100