weblogic

Solaris JMS Client connect to Weblogic 11g t3s security problem

安稳与你 提交于 2019-12-01 10:57:37
When I try to connect Weblogic t3s protocol in Solaris Server, it shows this error: java.lang.IllegalStateException: Not enough cryptography available to enable a cipher suite! at com.certicom.tls.interfaceimpl.TLSSystem.resetCipherSuiteSupport(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.setCertificateSupport(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.<init>(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.<init>(Unknown Source) at com.certicom.net.ssl.SSLContext.<init>(Unknown Source) at com.bea.sslplus.CerticomSSLContext.<init>(Unknown Source) at

How can i solve a NoClassDefFoundError?

和自甴很熟 提交于 2019-12-01 10:35:11
I have installed Oracle Weblogic 11g on Oracle Linux and I tried to complete one of Oracle's ADF tutorials using jdeveloper 11g. When I run my project it compiles successfully with no errors. It starts deploying the application to the weblogic server and my default internet browser opens. But then an Error "500 Internal server error" appears. I'm getting the following error: java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.trinidadinternal.convert.ColorConverter at.... I researched the internet for this problem and I also asked around and the common answer was that

Extra info messages from Struts appearing during Weblogic 12c startup

为君一笑 提交于 2019-12-01 10:00:12
问题 I have a web application which is built using Struts2 (2.3.15.3) for MVC deployed on Oracle Weblogic 12c. The web app is working perfectly fine as is, just that when it is deployed in Weblogic, It prints some some extra info messages from struts code on the Weblogic std IO which is not required. I have tried configuring the Weblogic logging servives by tweaking minimum severity to log value and changing the logging implementation to log4j from default JDK but that didn't help either. It keeps

How can i solve a NoClassDefFoundError?

瘦欲@ 提交于 2019-12-01 09:50:28
问题 I have installed Oracle Weblogic 11g on Oracle Linux and I tried to complete one of Oracle's ADF tutorials using jdeveloper 11g. When I run my project it compiles successfully with no errors. It starts deploying the application to the weblogic server and my default internet browser opens. But then an Error "500 Internal server error" appears. I'm getting the following error: java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.trinidadinternal.convert.ColorConverter

nullPointerException when deploy webLogic 12c application

主宰稳场 提交于 2019-12-01 09:24:16
问题 when i deploy my first web app on webLogic i get this error: weblogic.application.ModuleException: java.lang.NullPointerException at weblogic.application.internal.ExtensibleModuleWrapper.prepare(ExtensibleModuleWrapper.java:114) at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:100) at weblogic.application.internal.flow.ModuleStateDriver$1.next(ModuleStateDriver.java:172) at weblogic.application.internal.flow.ModuleStateDriver$1.next

Jasper Reports “package net.sf.jasperreports.engine does not exist” exception in JDeveloper 11.1 using WebLogic only in EAR Web Page

痴心易碎 提交于 2019-12-01 08:50:39
I'm using JDeveloper 11.1, Oracle 11 and TIBCO JasperReports 6.0.1. I'm having problems trying to generate Jasper Reports from my web page (ViewController) while using an ApplicationModule (Model - EJB) for doing that. At the end the PDF file has to be sent via email, that's why I let it into the Model project. If I execute the ApplicationModule, it works fine, no exceptions, the PDF is very well generated and sent. However, if I execute the client method since a web page I got this exception : net.sf.jasperreports.engine.JRException: Errors were encountered when compiling report expressions

Inability to start weblogic BEA-002606

寵の児 提交于 2019-12-01 08:02:24
I run a managed instance of Weblogic 10.3 on my mac box. One day i tried starting it and i got this error message <Jun 2, 2013 5:19:34 PM EDT> <Notice> <LoggingService> <BEA-320400> <The log file /Users/xx/bfdev/bea10/user_projects/domains/xx/servers/admin/logs/xx.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.> <Jun 2, 2013 5:19:34 PM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /Users/xx/bfdev/bea10/user_projects/domains/xx/servers/admin/logs/xx.log00101. Log messages will continue to be logged

How to resolve conflict between jars of weblogic and application

假如想象 提交于 2019-12-01 07:32:23
I am facing a problem in jar conflicts between my application's jars and weblogic container's jars for which I am seeking your help. Here is the situation. I am trying to call a webservice from inside another webservice and both the webservices are hosted on my local weblogic server. Maven has been used as build tool which generates war files and they are deployed on weblogic. When invoking another webservice from a webservice, I am getting this error javax.xml.ws.spi.Provider: Provider weblogic.wsee.jaxws.spi.WLSProvider not a subtype org.apache.cxf.interceptor.Fault: javax.xml.ws.spi

Solaris JMS Client connect to Weblogic 11g t3s security problem

拥有回忆 提交于 2019-12-01 07:24:10
问题 When I try to connect Weblogic t3s protocol in Solaris Server, it shows this error: java.lang.IllegalStateException: Not enough cryptography available to enable a cipher suite! at com.certicom.tls.interfaceimpl.TLSSystem.resetCipherSuiteSupport(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.setCertificateSupport(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.<init>(Unknown Source) at com.certicom.tls.interfaceimpl.TLSSystem.<init>(Unknown Source) at com.certicom.net

Overriding global jta timeout in spring context in weblogic

亡梦爱人 提交于 2019-12-01 05:58:00
Our Weblogic have global JTA timeout 30s, since our server is under high load setting such global timout to a bigger value can be critical for performace of the application. So I want to override this JTA timeout with specific value in context of particular service. I have root context for a number of webservices it has it's own global transaction manager: <bean id="jtaTransactionManager" class="org.springframework.transaction.jta.WebLogicJtaTransactionManager"> <property name="transactionManagerName" value="javax.transaction.TransactionManager"/> </bean> annotation driven for this transation