In WebLogic world, are managed servers just Weblogic servers? [closed]

It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 9 years ago. I read from Oracle’s documentation, and it seems … Read more

Weblogic URL redirect

i have my url running on https://domain.com:7002/app1, i want to make a weblogic redirect when ever users type domain.com in the browser, it should place them to https://domain.com:7002/app1 what changes are required from the Weblogic side to make the redirect work? Thanks Answer There are some things you can do on your web.xml, but I’m … Read more

Default user key file for WLST

When I start weblogic scripting tool (WLST) in the domain directory. I can connect using the following command without specifying the username or password. connect(url=”t3://localhost:7001″,adminServerName=”AdminServer”) I assume that WLST is using a default userconfigfile and userkeyfile, probably located somewhere relative to the servers/AdminServer directory. Is this a correct assumption or is it using some other … Read more

Failed while installing Oracle fusion Middleware 11g Release 1 (11.1.1.7)

I am trying to install oracle fusion Middleware 11g Release 1 (11.1.1.7) on Windows 2012 R2 64-bit with Java 7 update 79. But I am receiving below error while running installation wizard: Checking operating system certification Check complete. The overall result of this check is: Not executed <<<< As per Oracle documentation (Oracle Fusion Middleware … Read more

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 second node resides on another machine. How do I go about creating and adding the … Read more

Usual suspects for WebLogic 9.2 performance tuning

Reading through the BEA WebLogic 9.2 Deployment Descriptor Elements documentation, there are a few parameters that we already use in our web applications weblogic.xml to decrease the time it takes to run continuous integration tests against WebLogic 9.2: jsp-descriptor, precompile, false jsp-descriptor, page-check-seconds, -1 container-descriptor, servlet-reload-check-secs, -1 This is what our weblogic.xml looks like: <?xml … Read more

javax.naming.InvalidNameException using Oracle BPM and weblogic when accessing directory

We are getting this exception when we start our cluster (2 managed servers, 1 admin), we have deployed only the ears corresponding to the OBPM 10.3.1 SP1 in a weblogic 10.3. When the server cluster starts, one of the managed servers (the first to start) get overloaded and ran out of connections to the directory … Read more

Reverse proxy apache to weblogic problem

I have apache 2.2 server and welogic 11g running on web server. Apache is set for revers proxy on port 8080, weblogic serves two web pages and it’s on port :7001 first page: localhost:7001/e-SPP/app second page: localhost:7001/e-sprejem/app I would like to access this two pages with apache like so: localhost:8080/e-SPP/app localhost:8080/e-sprejem/app Listen 8080 ServerName localhost:8080 … Read more