Questions tagged [weblogic]

Oracle WebLogic consists of a Java EE platform product-family that includes a web server, portal, and related components.

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

171 questions
0
votes
1 answer

Weblogic security store on PostgreSQL

I am trying to port a Weblogic environment from Oracle to PostgreSQL. When I configure a domain with the security store on PostgreSQL, it fails to start. Weblogic 12c, Java 7, PostgreSQL 9.3.4 here on Mac OS X but same problem on Linux. The domain…
Eric Darchis
  • 153
  • 1
  • 7
0
votes
1 answer

Weblogic Admin server gets LDAP errors then unexpectedly shuts down

we have a new(ish) WLS 9.2 installation Over the last day or so, after restarting WLS, after a while, the admin server unexpectedly shuts down, preceded in the logs by many (hundreds) occurrences of exceptions like the below. This may be connected…
0
votes
1 answer

Record raw http requests in weblogic

We are running a java ee application on weblogic 12.1 that has a soap messaging component. We are having trouble with our soap responses and want to get more details so we can figure out exactly what is going wrong. The problem is the raw http is…
TheCatWhisperer
  • 133
  • 1
  • 1
  • 8
0
votes
1 answer

Nginx reverse proxy - requests still return port 80

I'm trying to use nginx as a proxy server for two weblogic servers. The ports on the weblogic are 23823 and 23824 and i want them both to be accessible from port 8888 and distinguished by context path. I've tried this configuration: listen…
NeplatnyUdaj
  • 131
  • 1
  • 4
0
votes
1 answer

Weblogic: Setting character encoding with WLST

We are using WLST (Weblogic Scripting Language) to setup our Weblogic domains and managed servers. Now we would like to enforce the usage of UTF-8 character encoding globally. What I found here is the method.. setDefaultCharCodeset(String…
fgysin
  • 448
  • 2
  • 5
  • 15
0
votes
1 answer

WLS: Oracle data source yields "ORA-01435: user does not exist"

So I am trying to setup a new data source in a Weblogic Server (12c), but I'm getting the same error over and over: java.sql.SQLException: ORA-01435: user does not exist This looks pretty straightforward, but as far as I can tell it really…
fgysin
  • 448
  • 2
  • 5
  • 15
0
votes
1 answer

Apache mod_wl encoding issue for URI part

I'm using Apache2 in combination with mod_wl_20.so to loadbalance to 2 weblogic instances. Apache is listening on 7070. This plugin is partialy removing the encoding of my URI of some searches which have spaces in them. This is causing an issue on…
gotjee
  • 89
  • 1
  • 1
  • 5
0
votes
1 answer

Is weblogic 10.3.6 data source connection pool maximum capacity per domain or server?

My WLS server is connecting to an Oracle DB that has a maximum concurrent connection limit of 3. I have created a data source in WebLogic and set the "Maximum Capacity" value to 3. Is this value calculated across the domain or per server?
retrodev
  • 237
  • 4
  • 13
0
votes
1 answer

Weblogic server as Windows Service

I have problem while installing weblogic server as windows service , After creating installation script and service created when I'm trying to start the service I got this message : The service on Local Computer started then stopped. Some services…
0
votes
1 answer

WebLogic 10.x - Run Admin server in the background

Like the Title says, I need to run the admin server as a windows service. Actually, I would be happy evem if there is a command to run the admin server that terminates once the server is up and running. Any ideas would be appreciated.
Ryan Fernandes
  • 312
  • 5
  • 19
0
votes
1 answer

WebLogic JDBC - Profile Harvest Frequency Seconds

In the company I'm providing consulting services, when the database is updated by a process outside Weblogic Web Application, the updated data is not refreshed at once. Googling a bit I've found the following parameter in JDBC configuration: Profile…
0
votes
2 answers

Oracle Weblogic 10.3.5 Cluster creation issues

I'm trying to create a two node cluster with Oracle Weblogic 10.3.5. During the "Fusion Middleware Configuration Wizard" setup process, I'm not sure what to put in for the "Cluster Address" if I choose "unicast" cluster messaging mode. Also the…
user6123723
  • 113
  • 5
0
votes
2 answers

Apache Location precedence with mod_wl_ohs.so

I'm running Oracle HTTP Server with mod_wl_ohs enabled. I have the following config: # Applications SetHandler weblogic-handler WebLogicCluster mt2:7003,mt3:7003 # Admin Server and EM
retrodev
  • 237
  • 4
  • 13
0
votes
1 answer

HTTPS to Apache and HTTP to Weblogic doesn't work

The link below contains an image that is how I wish my build architecture: https://i.stack.imgur.com/zVPq2.png I can configure this, without SSL at any point, and works fine. But when I configure a SSL connection between the client and the proxy, it…
user173585
0
votes
1 answer

Is HTTP session state preserved during application upgrade using Oracle's Weblogic hot deploy feature?

When performing hot deploy of a new version of a Java web app in Weblogic, does the application server preserve and transfer the HTTP session state from the old version to the newly deployed one? In other words, is there going to be any…