Environment variables in Weblogic Managed Server with SSL nodemanager

We have a C legacy application start with JNI that requires environment variables. Not java -Djava.library.path -Dvar=foo as these are purely java. I need real environment variables. When we setup our domains, we usually use the SSH method to start the node managers. This works fine and the env variables are set properly. Recently the … Read more

Standalone WLST for both WebLogic 8.1 and 9.2?

I’m writing a simple script to facilitate changing JDBC connection URLs in several WL environments, among these both v8.1 and v9.2. I want to create a standalone script, outside of any WL installation, just including wlst.jar/jython.jar/weblogic.jar, that will work both on WL 8.1 and 9.2 (obviously by referencing different MBeans). Now, this works OK for … Read more

What is the proper way to delete a WebLogic domain?

I’m trying to delete a domain on my weblogic server. Is it safe to just delete the corresponding folder (/user_projects/domains/base_domain) ? Or do I have to use an uninstaller? If so, where can I find it? Answer If you followed the standard installation procedure, the domain is isolated from the product installation. Therefore, it is … Read more

Oracle: Can Weblogic 11G run PL/SQL code like App Server 10G?

This is probably a silly question, but I’m not an oracle admin so I’m not sure. Our client currently runs a website written in PL/SQL and HTML on a Oracle 10G system. As everything is moving in the direction of 11G the question has come up, will our current PL/SQL system keep working. I guess … Read more

Apache Httpd/WebGate truncates 1% of pages

We have the followign setup: WebLogic 9 Portal Server <-> Apache HTTPD/WebGate <-> Clients When cliens are accessing portal through Apache proxy, then about 1% of requests are truncated in the browser i.e. only partial HTML result is displayed. When portal is accessed directly all requests are served OK and fully. I know it’s a … Read more

Why Apache with SSL but the back end Weblogic without SSL works?

    Hello everyone. My question is very simple . The link below is a picture about my architecture. https://docs.google.com/open?id=0BxSXbpgYIZVOR212RVk4ZDN1Sm8.      The pic above shows the architecture right now and it works correctly! Which means I could visit Apache with url https//apchehost:8080, could not visit the web app with https served by Weblogic but I could visit … Read more

Caused by: java.net.SocketException: Software caused connection abort: socket write error [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 6 years ago. Improve this question I running JSP on Oracle 11g, Weblogic 10.3.4. I have 2 managed server and a oracle admin server installed. I am encountering an … Read more

Weblogic Mitigate POODLE vulnerability after upgrade and still use CBC ciphers

I recently upgraded my Weblogic server to 10.3.6 with java 7. So with that I have TLS1.0 – TLS 1.2 enabled via the setEnv.sh. Some of the ciphers I am using to make sure that they are compatible (supported by Weblogic, FF37, Chrome 44, etc) are as follows: <ciphersuite>TLS_RSA_WITH_3DES_EDE_CBC_SHA</ciphersuite> <ciphersuite>TLS_RSA_WITH_AES_128_CBC_SHA</ciphersuite> <ciphersuite>TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA</ciphersuite> <ciphersuite>TLS_RSA_WITH_AES_128_CBC_SHA256</ciphersuite> <ciphersuite>TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256</ciphersuite><ciphersuite>TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA</ciphersuite> This is … Read more