weblogic11g

running struts project with weblogic server in eclipse

 ̄綄美尐妖づ 提交于 2020-01-05 06:26:26
问题 I am new to struts and trying to setup a basic struts application with weblogic server in eclipse. while running the project with the basic jsp, web xml,struts xml and action i am getting the below error ####<Feb 20, 2017 12:45:31 AM IST> <Error> <HTTP> <Gaurav-PC> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1487531731340> <BEA-101371> <There was a failure when processing annotations for application D:\Eclipse Workspace

Weblogic 10.3.5 & EJB 3 JNDI names

会有一股神秘感。 提交于 2020-01-02 19:56:16
问题 Could someone tell me where I can find infos on the default JNDI naming for EJB 3 ? Does Weblogic use portable JNDI names like Glassfish? Can I find (like for Glassfish) a trace of EJB deployment with JNDI names used? For example : an interface (Service) with only @Remote a bean (ServiceImpl) with only @Stateless implementing the interface everything packaged in an .ear file (service-application-1.0) When deploying on Weblogic the only JNDI reference I see is: service-application-1.0service

Cannot access HTTPS from Weblogic

怎甘沉沦 提交于 2019-12-29 04:54:00
问题 I have a problem with Weblogic accessing an HTTPS server, I can access other HTTPS urls, like google or microsoft. The code that tries to connect to the url is: URL url = new URL("https://myserver.com"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.setRequestProperty("User-Agent", "Mozilla/5.0"); // fails here responseCode = connection.getResponseCode(); I get the following stack trace: java.io.IOException: Connection

How can I update my weblogic JMS queue's target and subdeployment to default and AdminServer?

烈酒焚心 提交于 2019-12-24 13:05:12
问题 I have a problem identical to this question: JNDI lookup failing when looking up JMS queue in WebLogic 10.3.5 However, I can't figure out how to actually implement the solution. It seems simple enough to match the subdeployment and target to the same for both, but it isn't for me: If I change the connectionfactory's subs and target, I get the same error as i used to get on the queue, on the connectionfactory also Default targetting is not an option for queues, only connectionfactories. So how

How to setup JMS bridge to ActiveMQ on Weblogic 11g

▼魔方 西西 提交于 2019-12-24 11:53:32
问题 I'm novice guy in JCA and JMS parts of Java EE stack, and now I'm struggling with JMS bridge configuration between two JMS providers (ActiveMQ 5.9.1 -> Weblogic 11g 10.3.5), and I need some help to understand all the moving parts and required configuration elements. What I've done already: JMS server configured on Weblogic 11g node Configured Foreign Server - AMQ connection factory, and source queue objects bound to the local JNDI (OK: conn. factory and queue objects visible in server jndi

An error has occurred with the WebSphere MQ JMS connection

旧巷老猫 提交于 2019-12-23 12:44:29
问题 Getting below error with MQ(Message Queue), how to resolve this? Message : com.ibm.msg.client.jms.DetailedJMSException: JMSWMQ1107: A problem with this connection has occurred. An error has occurred with the WebSphere MQ JMS connection. Use the linked exception to determine the cause of this error. Caused by [1] --> Message : com.ibm.mq.MQException: JMSCMQ0001: WebSphere MQ call failed with compcode '2' ('MQCC_FAILED') reason '2009' ('MQRC_CONNECTION_BROKEN'). Caused by [3] --> Message : com

Spring Batch DataSourceTransactionManager fails on Oracle

这一生的挚爱 提交于 2019-12-22 19:25:14
问题 I'm using WebLogic 10.3.3 with Oracle 11g and face a weird problem with Spring Batch as soon as I'm switching from Spring ResourcelessTransactionManager (which is mainly for testing) to the productive DataSourceTransactionManager. First I used WebLogics default driver oracle.jdbc.xa.client.OracleXADataSource but this one fails because Spring can't set the isolation level - this is also documented here. I'm fine with that since I don't need global transactions anyway so I switched to oracle

How can I deploy an exploded web app through WebLogic 11g administrative console?

亡梦爱人 提交于 2019-12-22 18:32:38
问题 I need to deploy a web applicataion as an exploded archive (instead of .war) due to some legacy servlet path location code used in it (ServletContext.getRealPath()). I only have web-based admin console access to the WebLogic 11g server that I intend to deploy to. However, I can't figure how to do it. I see an option for deploying archives, but not directories. Thanks! 回答1: http://download.oracle.com/docs/cd/E13222_01/wls/docs81/deployment/overview.html "WebLogic Server supports deployments

JRE 8 compatibility with weblogic 10.3.6 (11g

十年热恋 提交于 2019-12-20 02:10:19
问题 Could you please help in finding out if JRE 8 would be compatible with weblogic 10.3? We have a swing based application deployed on weblogic 10.3 server. We want to upgrade our JRE so wanted to check if JRE 8 would be able to run apps deployed on weblogic 10.3 回答1: Java 8 is supported on WebLogic Server 12.1.3. It is not supported on 10.3.6, 12.1.1, or 12.1.2. See https://blogs.oracle.com/WebLogicServer/entry/weblogic_server_12_1_3 回答2: Java 8 is not yet supported in Weblogic server (till

Weblogic 11g URL Rewrite

廉价感情. 提交于 2019-12-20 01:01:31
问题 I have a client running a WebLogic 11g install on a Windows Server machine who wishes to implement Apache-style mod_rewrite-like functionality to translate requests for http://easyurl.com to http://super.complicated.com/with/this/junk?here=and_more. I have scoured the Internet for advice, but all I can find are other people who are asking the same question and not getting any answer. Assuming that installing 3rd-party apps is not an option, how do I implement this in WebLogic? Edit: Now that