Questions tagged [weblogic14c]

23 questions
3
votes
1 answer

Weblogic 12c: separate logging for a web application

I am trying to get Weblogic 12c to do logging separately for application instead of writing everything to server logs. I am using java.util.logging as follows: private static final Logger log =…
1
vote
0 answers

Can I prevent automatic conversion of Collection without generics to Collection in Weblogic 14

I have a legacy java project with a lot of collections without the use of generics . The collections basically looks like this example: Collection myCollectionOfObjects; public Collection getMyCollectionOfObjects() { return…
faceplant
  • 11
  • 2
1
vote
0 answers

weblogic 14c: ClassNotFoundException during deploy of an osgi application

I'm migrating an osgi web application from java 7 and weblogic 12c server to java 8 and weblogic 14. In the application I would like to provide the jersey libraries without 'provided' scope and when deploying the application I get the following…
0
votes
0 answers

How do I expose a attribute(setStagingMode) through JMX which is read only in WebLogic 14c

I am trying to change the stage mode of my application to 'nostage' via wlst Jython script. Currently the app is deployed in staging mode. Here is my Jython Script: import getopt, sys,traceback server_name = 'myServer' server_password =…
0
votes
0 answers

Weblogic startup and ear deployment take too long

I am working on a Javaee project using weblgic 14.1.1.0 as the server where I deploy my Ear file and the version of java I working with is 11.0.8. My question is very simple yet did not found any solution for it. The build, deployment and even the…
0
votes
0 answers

SOAP: interface ... not visible from classloader

i am migrating my software from a weblogic 12 environment with java7 to a weblogic14 environment with java8. In my software there is a client for SOAP services which doesn't work in the new weblogic environment. I initially got the following…
0
votes
0 answers

Apache HTTP Server - 2.4.5* / Is it Possible to Use Cluster Scenario for WebLogic Server Installed On 2 Different Machines Using Apache HTTP Server?

There are 2 different scenarios. Scenario-1: Let's assume that WebLogic is installed on 2 different servers. Server IPs: 192.168.0.111 and 192.168.0.112. These servers are not clustered (ie each single machine). There are 10 managed servers on each…
0
votes
1 answer

WebLogic 14c - Performance Tuning Test

I want to do load test WebLogic 14c on Oracle Linux 8 (JDK 8). What are the best Load performance testing tools I can work with?
0
votes
1 answer

Multiple occurrence of "Oracle WebLogic Server 14.1.1.0 Demo Trust keystore" were found

Window > Preferences > WebLogic > Credentials Multiple occurrence of "Oracle WebLogic Server 14.1.1.0 Demo Trust keystore" were found. The error message should not come.
0
votes
0 answers

@MappedSuperClass is not working in Weblogic 14c

We are updating weblogic12c to weblogic14c, Here we are having one super class with common fields in common jar. It will be extended by sub classed from other jars. Super Class(common.jar) package…
0
votes
1 answer

ORA-01422 Exact Fetch returns more than requested number of rows from WebLogic datasource. Once restart issue resolved why?

I have a WebLogic server and oracle db. At some point WebLogic server returns with ORA-1422 error but while executing the same procedure from backend it works. Also this will work when I restart the WebLogic server. Any idea why its happening like…
0
votes
0 answers

OSGi: org.apache.felix.http.base.internal.context.ServletContextImpl cannot be cast to weblogic.servlet.internal.WebAppServletContext

I'm new to the field and I'm migrating an OSGi type web application from a java7 environment on weblogic 12c server to a java8 environment on 14c server. I'm having a problem deploying the application. Previously, I don't know if it's relevant or…
0
votes
0 answers

Getting error while deploying in weblogic 14 for log4j library

Source Code : @Controller public class HomeController { private static final Logger log = LogManager.getLogger(); @GetMapping("/hello") public @ResponseBody String getHello() { DemoClass cls = new DemoClass(); …
0
votes
0 answers

Custom weblogic log format

I have application running through cargo-maven3-plugin (1.9.4) on weblogic14x container. I would like to modify weblogic log to exclude fields which are not important for me. Currently log looks like this: [INFO] [talledLocalContainer] <19 gru 2022,…
jprzystupa
  • 113
  • 1
  • 7
0
votes
0 answers

JAVA Migration from jdk1.7 and weblogic 12c to jdk 1.8 and weblogic 14c

i ve migrate a web application from weblogic 12c and jdk1.7 to weblogic 14c and jdk1.8. The web application use jax-re for rest services and has the following custom JacksonContextProvider for mapping json: package…
1
2