26 questions
1
vote
1
answer
115
views
Ant JWSC Task failed on WebLogic 14c and JDK17
I am Trying jaxws sample Program in weblogic 14.1.2, Ant 1.0.15 and JDK 17. Jwsc task failed when building webservice. I have tried all the settings like ANT_OPTS and JAVA_TOOL_OPTIONS to set module ...
0
votes
2
answers
340
views
Weblogic 14.1.2.0.0 does not display logs in the console with log4j2
I’m using WebLogic 14.1.2.0.0 and trying to configure Log4j2 for logging in my application, but logs are not showing up in the console.
<dependency>
<groupId>org.apache.logging.log4j</...
0
votes
1
answer
488
views
Trying to start oracle forms from a jnlp but it can't find the frmall.jar file
Invoking forms 14 from a JNLP on a Windows 11 machine like this:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://PETERB:7001/forms/...
0
votes
0
answers
121
views
WebLogic 14C Custom Identity Asserter - Unsupported Token Type Error
Currently I am implementing a custom identity asserter in WebLogic 14C environment. I have developed following components.
An AuthenticationProvider.xml (which defines MBean Definition File elements)
...
0
votes
1
answer
217
views
Restful API-JSON mapping Issue after Migration from WebLogic 12c to WebLogic 14c
I currently maintain a legacy EJB application that is hosted on WebLogic 12c, where it operates smoothly without any issues. Recently, I undertook the task of migrating this application to WebLogic ...
0
votes
1
answer
143
views
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?
-1
votes
1
answer
75
views
Problem running BIRTViewer in Oracle Weblogic 14.1.1
I have created a war file of birt-runtime-4.12.0-20221128 as in the instructions for POJO deploymnet. I am running weblogic 14.1.1 and I can successfully deploy it. Weblogic is running Java Version: ...
1
vote
0
answers
19
views
Can I prevent automatic conversion of Collection without generics to Collection<String> 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 ...
1
vote
0
answers
498
views
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 ...
0
votes
0
answers
571
views
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 ...
0
votes
0
answers
161
views
Errror - javax.el.PropertyNotFoundException: The class 'java.lang.String' does not have the property
My application runs under java11 and weblogic14.
Method in jsfHelper class :
public static List<FacesMessage> obtenirMessageGlobal() {
FacesContext context = FacesContext....
0
votes
1
answer
3k
views
Starting server in Weblogic: "I/O error while writing to file The process cannot access the file because it is beign used by another proccess
I need help with solving issue with Weblogic. In freshly installed WebLogic 14.1.1 I've created new server and machine for this server. I have working NodeManager launched in CMD, but when I try to ...
0
votes
1
answer
211
views
Capture HTTP Request & Response without writing boiler plate code in every class
I am looking out for possible Java-based solutions to capture all the requests and responses.
I am thinking of a simple java agent to attach to the server to log the requests and responses.
The main ...