Weblogic8.1sp3是否支持Oracle805?

我在Weblogic8.1sp3上配置JDBC,远程数据库系统是Oracle8.0.5的,本机的Net8已装好,并已测试连接成功。可是通过Weblogic配置向导设置JDBC时,总是测试连接失败,不是报“Net8 protocol error”,就是“类型长度大于最大值”,看JDBC的驱动描述里最近的都是Oracle8.1.7,不知道Weblogic8.1sp3是否支持Oracle805?请大家帮忙指导一下,谢谢!

在Weblogic8.1sp3上连接Oracle8.0.5,在配置JDBC连接池时,测试总是失败,打电话去问,说是可能不支持低版本的Oracle,上网咨询也没有人答复,经过自己仔细查看有关文档,发现如下有关信息:
Using the Oracle Thin Driver
The 10g (10.1.0.2.0) version of the Oracle Thin driver (ojdbc14.jar) is installed in the WL_HOME\server\lib folder (where WL_HOME is the folder where WebLogic Server is installed) with weblogic.jar. The manifest in weblogic.jar lists this file so that it is loaded when weblogic.jar is loaded (when the server starts). Therefore, you do not need to add the Oracle Thin driver to your CLASSPATH.
Note: The ojdbc14.jar file replaces classes12.zip as the source for Oracle Thin driver classes. This version of the driver is for use with a Java 2 SDK version 1.4.
If you plan to use a different version of the driver, you must replace the ojdbc14.jar file in WL_HOME\server\lib with an updated version of the file from Oracle or add the new file to the front of your CLASSPATH. You can download driver updates from the Oracle Web site at http://otn.oracle.com/software/content.html.
Note: In WebLogic Server 8.1SP3, the default version of the Oracle Thin driver was changed to the 10g driver (the version in WL_HOME\server\lib). In previous releases of WebLogic Server 8.1, the 9.2.0 version of the Oracle Thin driver was the default version of the driver.
The WL_HOME\server\ext\jdbc\oracle folder (where WL_HOME is the folder where WebLogic Platform is installed) of your WebLogic Server installation includes subfolders for the 9.2.0 and 10g versions of the Oracle Thin driver. To use the 9.2.0 version of the driver, Follow these steps:
1. In Windows Explorer or a command shell, navigate to the WL_HOME\server\ext\jdbc\oracle\920 folder.
2. Copy ojdbc14.jar.
3. In Windows Explorer or a command shell, navigate to WL_HOME\server\lib and replace the existing version of ojdbc14.jar with the version you copied.
To revert to version 10g (the default), follow the instructions above, but copy from the following folder: WL_HOME\server\ext\jdbc\oracle\10g.
按照上面所述,把WL_HOME\server\ext\jdbc\oracle\920文件夹下的jdbc14.jar复制到WL_HOME\server\lib,然后不论在配置向导里还是在控制台下配置JDBC连接池,数据库选Oracle,Database Driver选“Oracle's Driver(Thin) Versions:8.1.7”,最后测试通过!
希望以上能对碰到同样问题的人有所帮助。

Similar Messages

  • 终于搞定Weblogic8.1sp3下奇怪的Oracle错误了!也算是新Bug喽!

    本来计划新服务器割接要在本月底完成,可是在部署完成以后在操作数据库的时候却出了岔子。怎么也不能用了,连接很正常,就是不能 select,update,insert等操作。最经常报的三个错误是:
    OALL8 is in an inconsistent state.
    Bigger type length than Maximum
    Protocol Violation
    三个错误随机出现,最常见的是前两个。
    因为现有的程序正在一台 Linux 服务器上正常运行,我只是把整套系统原模原样的重新部署到了一台 Sun V480 服务器上,操作系统是 Solaris 9,依然用的是 Weblogic。数据库依然同一台 DELL 服务器,不同的只是操作系统以及JDK,所以首先怀疑的是 Solaris 上的JDK是不是该打补丁了,去了Sun的网站也看到了for Solaris的补丁,但是好像没有关系。然后又重新下载了最新的JDK 1.4.6 beta ,问题依旧。然后又装了 JDK 1.5,这次连 weblogic 都运行不起来了。为了再次验证是不是JDK的问题,我在控制台下写了一个简单的Java程序来连接那台数据库服务器,惊讶的发现一切正常,说明跟JDK没关系了。
    莫非是驱动的问题?可是在linux服务器上用的就是这个驱动呀,都是ojdbc14,看了一下CLASSPATH,也有啊。DELL 服务器上的Oracle版本是8.0.5,要不换成它自带的ojdbc看看,更换以后问题依旧!
    于是又把怀疑的目光转向了 weblogic,觉得是不是因为字符集的问题?又按照bea提供的一份中文化文档一步一步操作了一遍,确保提交数据的编码、连接oracle的编码、页面输出编码都是GBK,问题依旧!
    然后又怀疑到了 Solaris 上,毫无有道理的怀疑是不是因为字符集的不同,导致连接Oracle时发生的错误?因为这台服务器的操作系统是数据分公司的工程师负责安装的,他在安装的时候没有安装中文语言包,所以我设置了 LANG=zh_CN.GBK 后,系统不停的提示 couldn't set locale correctly。于是我又去了IDC机房,找来 Solaris 9的语言包光盘,把中文语言包安装上去,再次测试,问题依旧!
    实在没辙了,决定装上Tomcat看看,去了apache的网站后,发现tomcat有了5.5的版本,也没仔细看发行说明就直接下载回来了,却发现不能用,提示只能运行在JDK1.5下。幸亏前面已经下回来JDK1.5了,重新设置了JAVA_HOME后,哈,成功了。于是又再次怀疑weblogic的问题。
    我静下来仔细想了一下两台服务器除了系统不同之外,还有哪里不同?Linux上weblogic没有配置cluster,新装的Sun V480上配置了Cluster,我的神经再次兴奋起来,我重新部署了一个新的配置,只写了一个简单的JSP页面,上面就是连接那台 Oracle 数据库,也没有用群集,问题依旧!
    看来与Cluster没有关系喽,问题会在哪里呢?于是又怀疑了我现在用的数据库连接池,这个连接池虽然简陋,但是已经用了很长时间,也从没见过这个问题的发生。于是在weblogic上配置了一个连接池,然后又写了一个页面,哈,问题依旧!可是先前我一直用的是我下载回来的那个ojdbc14啊。
    不会跟开发版的license有关吧,我又找来公司的一个有时间限制的license,明年1月15号就要到期了。不管他,先换了,可是问题依旧!
    于是又不停的在google上搜索,看来出现这种问题的几率实在小,就找到寥寥可数的几个页面,不过在oracle的官方论坛上看到了一个相关帖子,据说是oracle老驱动的问题,需要升级驱动,可是最新的驱动就是1.4,我现在用的就是啊,无果,继续找。
    实在找不到什么结果,看来问题十之八九就在 weblogic 自己身上,我又去bea网站上看有关 weblogic 8.1 sp3 的发行信息,主要看了有关Oracle的部分,上面写的是在 weblogic 8.1 sp3 上的Oracle数据库已经把ojdbc1.4默认安装上去,而且默认的驱动就是ojdbc1.4,可是在先前我没有用过weblogic自带的连接池,应该和这个没有什么关系吧,但是抱着死马当做活马医的心态看了一下weblogic里面的ojdbc,发现也有一个ojdbc14.jar,但是和我用的大小不一样。不过既然都是1.4的版本,那我就把我一直用的把Weblogic的覆盖了吧,然后又是重新启动服务,打开测试页面,哇呜呜,成功了!!!
    问题竟然就是 weblogic 下 ojdbc 的问题!!!可是我在系统的CLASSPATH中已经添加了我自己的ojdbc,但是可恶的weblogic却优先使用了自己带的ojdbc!版本分明都是一样的,weblogic下的却有问题。浪费了我好几天,正所谓家贼难防啊,呜呜呜呜……
    最后的总结:
    看来在weblogic上部署的web应用程序,在使用相同的类库的时候,weblogic自带的相同类库优先,其次是CLASSPATH里添加的,最后才是WEB-INF/lib里的。在前面的问题中,虽然我在CLASSPATH里添加了ojdbc14的驱动,但是weblogic里已经有了,所以当然是用的weblogic自带的那个驱动了,CLASSPATH是没有效果的了。
    至于为什么那台Linux服务器上很正常,是因为上面装的是Weblogic 8.1 sp2!!!
    本月的任务看来有望在明天完成了……
    Weblogic 里的 ojdbc 还是是个老版本的?该升级啦,这也算是Bug吧 :-(

    "看来在weblogic上部署的web应用程序,在使用相同的类库的时候,weblogic自带的相同类库优先,其次是CLASSPATH里添加的,最后才是WEB-INF/lib里的。"
    不是这样的吧? 这取决于在CLASSPATH里的先后顺序,你要想自己的覆盖weblogic自带的,就把你的path放在weblogic的path包前面。

  • Deployment validation failing to load DTDs for Struts

    I created a fresh webapp that includes the Struts 1.2.2 binaries and got some errors when deploying on WebLogic8.1sp3. My guess is that I need to configure some proxy setting in weblogic.
    Sep 7, 2004 4:07:14 PM org.apache.struts.tiles.TilesPlugin initDefinitionsFactoryINFO: Tiles definition factory loaded for module ''.
    Sep 7, 2004 4:07:14 PM org.apache.struts.validator.ValidatorPlugIn initResources
    INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
    Sep 7, 2004 4:07:14 PM org.apache.struts.validator.ValidatorPlugIn initResources
    INFO: Loading validation rules file from '/WEB-INF/validation.xml'
    <Sep 7, 2004 4:07:14 PM CDT> <Warning> <Net> <BEA-000905> <Could not open connection with host: jakarta.apache.org and port: 80.>
    Sep 7, 2004 4:07:14 PM org.apache.struts.validator.ValidatorPlugIn init
    SEVERE: Tried all: '1' addresses, but could not connect over HTTP to server: 'jakarta.apache.org', port: '80'
    java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: 'jakarta.apache.org', port: '80'
    at weblogic.net.http.HttpClient.openServer(Ljava.lang.String;I)V(HttpClient.java:275)
    at weblogic.net.http.HttpClient.openServer()V(HttpClient.java:329)
    I copied the referenced .DTDs locally and after adding the full path to the local copies, things worked fine. Unfortunately this is just a big hack. I would like to know either:
    1. how to package the things so that a local copy of the DTDs that I include in a .ear file can be found, or
    2. how to configure proxy settings in weblogic so I can validate against remote DTDs.
    Any ideas?

    the exception seems to suggest that you cant connect to the outside world. Can you check if you can connect to the mentioned remote server from your deployment machine ?
    anand

  • OAM WebLogic integration issue

    Hi
    I have integrated portal application hosted on WebLogic with OAM using SSPI.
    The integration is successful and the application is working fine but we see following Error message in the weblogic logs whenever user hits the Portal home page.
    <Dec 2, 2008 1:39:20 AM PST> <Error> <NetPointSecurityProviders> <700012> <Access system authorization failed for resource. Type [wl_authen], Name [Authen/Basic], Operation [LOGIN]. Reason - User's authentication level is insufficient for a requested resource.>
    We see this message only when user is not authenticated before and hits Portal home page which also has Login portlet. Once user is authenticated and access any resource on the portal application, we do not see such error messages.
    Has anyone faced this issue before? And what could be wrong with the integration?
    Thanks
    Kiran Thakkar

    Hi kiran,
    U hve said tht u r successfull in integrating weblogic application server with OAM using SSPI
    The same oly v are also trying to do but we are facing some issues:
    I'm using BEA weblogic8.1sp3,OAM10.1.4.0.1 and SSPI10.1.4.0.1
    During instillation of SSPI i have selected the advanced instillation so the policies are automatically getting deployed in my OAM but after tht my weblogic is not able to start.
    In the log file it is showing the following errors:
    ####<Jan 28, 2009 12:37:02 PM IST> <Debug> <NetPointSecurityProviders> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <000000> <ObUserSession ctor from username, password failed
    com.oblix.access.ObAccessException: Unprotected resource LOGIN wl_authen:/Authen/Basic used in an ObAuthenticationScheme or ObUserSession constructor.
    at com.oblix.access.ObUserSession.initCppSideAuthenticate(Native Method)
    at com.oblix.access.ObUserSession.<init>(ObUserSession.java:243)
    at com.oblix.weblogic.internal.OblixDatabase.login(OblixDatabase.java:192)
    at com.oblix.weblogic.security.providers.authentication.OblixLoginModuleImpl.login(OblixLoginModuleImpl.java:193)
    at weblogic.security.service.DelegateLoginModuleImpl.login(DelegateLoginModuleImpl.java:71)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    at weblogic.security.service.PrincipalAuthenticator.authInternal(PrincipalAuthenticator.java:326)
    at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:279)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceManagerDelegateImpl.java:786)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDelegateImpl.java:886)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:717)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:822)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:344)
    at weblogic.Server.main(Server.java:32)
    ####<Jan 28, 2009 12:37:02 PM IST> <Debug> <NetPointSecurityProviders> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <000000> <Entering OblixLoginModuleImpl.abort>
    ####<Jan 28, 2009 12:37:02 PM IST> <Critical> <Security> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
    Can you please help me to solve this problem.
    Thanks in advance.

  • Configuring WTC-service error

    hi,
    i have the following( toupper( remote call from weblogic)
    tolower( remote call from tuxedo)
    my win machine name is bea01..
    Tuxedo8.0
    appdir:c:\bea\tuxedo8.1\simpapp
    dom1config:*DM_RESOURCES
    VERSION=U22
    *DM_LOCAL_DOMAINS
    TDOM1     GWGRP=GROUP2
         TYPE=TDOMAIN
         DOMAINID="TDOM1"
         BLOCKTIME=20
         MAXDATALEN=56
         MAXRDOM=89
         DMTLOGDEV="c:\bea\tuxedo8.1\simpapp\tlog"
         DMTLOGNAME="DMTLOG_TUXDOM"
    *DM_REMOTE_DOMAINS
    TDOM2      TYPE=TDOMAIN
         DOMAINID="TDOM2"
    *DM_TDOMAIN
    TDOM1      NWADDR="//bea01:1234"
    TDOM2      NWADDR="//bea01:2234"
    *DM_REMOTE_SERVICES
    TOLOWER RDOM="TDOM2"
    ** started tux(tmboot -y) and see all the services running
    netstat -a results in the following:
    i see
    tcp bea01:1234 listening
    **but cannot see 2234 entry
    Weblogic8.1sp3
    "**start Examples server...through console,
    configured WTC as follows:
    myLocalAp as
    Access point id:TDOM2
    network address: //bea01:2234
    myremoteAp as
    Access point id:TDOM1
    local point:mylocalAp
    network address: //bea01:1234
    *"*tried various combinations of TDOM and accesspoint..
    when i target my wtc service to examplesServer, i get:
    Distributed Management [1 exceptions] startWTC failure: [WTC:180012]The LocalTDomain myLocalAp is not known.
    hence cannot run samples/examples/wtc/simpapp..
    therefore i get the following TuxedoConnection not found
    entry when i do:
    ant run.simpapp..
    any help is appreciated...
    thanks,,,

    i am using 8.1sp3 and
    examples/wtc/simpapp application in wtc. quick configuration demo
    dom1config is
    TDOM1 NWADDR="//bea01:1234"
    TDOM2 NWADDR="//bea01:2234"
    ( the following 2 lines r missing from WTC quick config guide)
    *DM_LOCAL_SERVICES
    TOUPPER LDOM="TDOM1"
    *DM_REMOTE_SERVICES
    TOLOWER RDOM="TDOM2"
    in weblogic
    LocalAp is
    TDom2
    //bea01:2234
    RemoteAp is
    TDom1
    //bea01:1234
    when i target Wtc-service to server..
    using 8.1sp3 and tuxedo8.1
    The LocalTDomain LocalAp is not known err....
    ok, i configure
    LocalAp is
    TDom2
    //xx.xx.xx.xx:2234
    still doesnot work....
    restart weblogic...
    same error..

  • Failing to move a webservice to a ProductionEnabled server

    Hi, I'm trying to deploy a workshop ear file to a
    production enabled server.
    I'm getting an error when trying to access the WSDL file
    for the webservice.
    I have added the -Dwelogic.jsw.ProductionMode=true switch
    to my startup script and also added a
    wlw-runtime-config.xml in the domain root, but it still does not work.
    On startup of the server I receive the following notification:
    <2005-jan-13 kl 13:00 IRST> <Warning> <Management> <BEA-141087> <Unrecognized property: jws.ProductionMode.>
    When trying to access the WSDL file I'm getting the following errors:
    for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <000000> <<SVIP> <com.bea.wlw.runtime.jws.dispatcher.JwsDispClass> Failed loading disp class "MyWebservice". Exception
    Throwable: java.lang.RuntimeException: frontEndHost is not configured for the cluster and hostname is not set in wlw-config or wlw-runtime-config
    Stack Trace:
    java.lang.RuntimeException: frontEndHost is not configured for the cluster and hostname is not set in wlw-config or wlw-runtime-config
         at com.bea.wlw.runtime.core.util.Util.getCallbackHttpUrl(Util.java:845)
         at com.bea.wlw.runtime.core.dispatcher.ServiceHandleImpl.getCallbackURL(ServiceHandleImpl.java:379)
         at com.bea.wlw.runtime.jws.dispatcher.JwsDispClass.<init>
    -- Rest of stacktrace ommitted --
    I'm using weblogic8.1sp3
    Thanks for any help
    /Tino

    Hi, I'm trying to deploy a workshop ear file to a
    production enabled server.
    I'm getting an error when trying to access the WSDL file
    for the webservice.
    I have added the -Dwelogic.jsw.ProductionMode=true switch
    to my startup script and also added a
    wlw-runtime-config.xml in the domain root, but it still does not work.
    On startup of the server I receive the following notification:
    <2005-jan-13 kl 13:00 IRST> <Warning> <Management> <BEA-141087> <Unrecognized property: jws.ProductionMode.>
    When trying to access the WSDL file I'm getting the following errors:
    for queue: 'weblogic.kernel.Default'> <<anonymous>> <> <000000> <<SVIP> <com.bea.wlw.runtime.jws.dispatcher.JwsDispClass> Failed loading disp class "MyWebservice". Exception
    Throwable: java.lang.RuntimeException: frontEndHost is not configured for the cluster and hostname is not set in wlw-config or wlw-runtime-config
    Stack Trace:
    java.lang.RuntimeException: frontEndHost is not configured for the cluster and hostname is not set in wlw-config or wlw-runtime-config
         at com.bea.wlw.runtime.core.util.Util.getCallbackHttpUrl(Util.java:845)
         at com.bea.wlw.runtime.core.dispatcher.ServiceHandleImpl.getCallbackURL(ServiceHandleImpl.java:379)
         at com.bea.wlw.runtime.jws.dispatcher.JwsDispClass.<init>
    -- Rest of stacktrace ommitted --
    I'm using weblogic8.1sp3
    Thanks for any help
    /Tino

  • Error while migrating JMS application from Weblogic8.1 to Weblogic10.3

    Hi All,
    I am migrating my JMS application from weblogic8.1 to 10.3. I'm able to publish and subscribe message from local weblogic server. But when i'm configuring ldap server in weblogic-ejb-jar.xml, while deploying the application itself i'm getting the below error. Same thing working fine in weblogic8.1.
    For this am i need to use foreignjms?. If this is the case please let me know how to configure foreignjms in weblogic10.3 server.
    below are the details i'm giving in weblogic-ejb-jar.xml:
    <message-driven-descriptor>
    <pool>
    <max-beans-in-free-pool>10</max-beans-in-free-pool>
    <initial-beans-in-free-pool>3</initial-beans-in-free-pool>
    </pool>
         <destination-jndi-name>evtTESTEH3Queue</destination-jndi-name>
    <initial-context-factory>com.sun.jndi.ldap.LdapCtxFactory</initial-context-factory>
    <provider-url>ldap://192.168.20.18:389/ou=mqseries,o=crimsonlogic.com</provider-url>
    <connection-factory-jndi-name>ivtQCF</connection-factory-jndi-name>
    </message-driven-descriptor>
    Error:
    weblogic.application.ModuleException: Exception activating module: EJBModule(evtEJB.jar)
    Unable to deploy EJB: JMSTESTEVTEventSubscriberMDBean from evtEJB.jar:
    unable to find EndPointFinder for ldap://192.168.20.18:389/ou=mqseries,o=crimsonlogic.com
    at weblogic.ejb.container.deployer.EJBModule.activate(EJBModule.java:493)
    at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:107)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:411)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:74)
    Truncated. see log file for complete stacktrace
    java.lang.AssertionError: unable to find EndPointFinder for ldap://192.168.20.18:389/ou=mqseries,o=crimsonlogic.com
    [email protected] on Mar 18, 2009 3:07 AM

    Hello TomB,
    Could you elaborate a bit on your explanation? I'm having the same problem as talk2srujan. I currently have an application which works fine in weblogic81 and, when migrated to weblogic103, fails at deployment time. The error I get is: unable to find EndPointFinder for tibjmsnaming://host:port
    We didn't have to register any foreign servers in weblogic81, should I do this in weblogic103?
    Could you also give a pointer to the known bug you mentioned?
    Thanks in advance,
    Rudra

  • Problem using file based JNDI with JMS Bridge, WL 6.1sp3

              I am trying to connect an MQ queue to a Weblogic JMS queue using the JMS bridge,
              WLS6.1sp3. I have the CR081404_61sp3.jar and CR081511_61sp3.jar patches.
              I am having trouble getting the bridge to look up the MQ queue in the file based
              JNDI. According to the log it is trying to use a weblogic.jndi.WLInitialContextFactory
              instead of a com.sun.jndi.fscontext.RefFSContextFactory, which is what it is configured
              to use. I am getting the following error:
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <MessagingBridge> <Bridge "Provd Messaging
              Bridge" is getting the connections to the two adapters.>
              <Sep 29, 2002 12:16:22 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              RUNTIME! Bridge Provd Messaging Bridge In getConnections: isStopped = false>
              <Sep 29, 2002 12:16:22 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              RUNTIME! Bridge Provd Messaging Bridge Getting source connection: sourceConnSpec
              = weblogic.jms.adapter.JMSConnectionSpec@27166f>
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to locate context: java:/comp/env/wls-connector-resref>
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to determine Resource
              Principal for Container Managed Security Context.>
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to locate context: java:/comp/env/wls-connector-resref>
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to determine Resource
              Principal for Container Managed Security Context.>
              <Sep 29, 2002 12:16:22 PM EDT> <Warning> <Connector> << Weblogic Messaging Bridge
              Adapter (XA) > ResourceAllocationException of javax.resource.ResourceException:
              ConnectionFactory: failed to get initial context (InitialContextFactory =weblogic.jndi.WLInitialContextFactory,
              url = file:/opt/mqm/java/mq-jndi, user name = guest, password = guest on createManagedConnection.>
              <Sep 29, 2002 12:16:22 PM EDT> <Error> <Connector> <Error granting connection
              request.>
              <Sep 29, 2002 12:16:22 PM EDT> <Info> <MessagingBridge> <Bridge "Provd Messaging
              Bridge" failed to connect to the source destination and will try again in 25 seconds.
              (javax.resource.spi.ResourceAllocationException: CreateManagedConnection Error:
              ConnectionFactory: failed to get initial context (InitialContextFactory =weblogic.jndi.WLInitialContextFactory,
              url = file:/opt/mqm/java/mq-jndi, user name = guest, password = guest)>
              <
              The configuration of the bridge, printed out in the log, is:
              <Sep 29, 2002 12:16:00 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              STARTUP! Bridge Provd Messaging Bridge's source properties are:
              AdapterJNDIName=eis.jms.WLSConnectionFactoryJNDIXA
              Classpath=null
              ConnectionFactoryJNDIName = PMS.mqQcf
              ConnectionURL = file:/opt/mqm/java/mq-jndi
              InitialConnectionFactory = com.sun.jndi.fscontext.RefFSContextFactory
              DestinationType = Queue
              DestinationJNDIName = PMS.mqProvdRequest>
              <Sep 29, 2002 12:16:00 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              STARTUP! Bridge Provd Messaging Bridge's target properties are:
              AdapterJNDIName=eis.jms.WLSConnectionFactoryJNDIXA
              Classpath=null
              DestinationType = Queue>
              Am I correct in assuming it should be using the fscontext connection factory?
              Why is it using the weblogic one?
              Jason
              

    CR081511_61sp3.jar patch should fix the problem. Make sure that the
              jar file is picked up. It should be put before other weblogic jar files.
              You should be able to tell if it is picked up by looking at the first
              couple of lines of your server log file.
              Dongbo
              Jason Kriese wrote:
              >
              > I am trying to connect an MQ queue to a Weblogic JMS queue using the JMS bridge,
              > WLS6.1sp3. I have the CR081404_61sp3.jar and CR081511_61sp3.jar patches.
              >
              > I am having trouble getting the bridge to look up the MQ queue in the file based
              > JNDI. According to the log it is trying to use a weblogic.jndi.WLInitialContextFactory
              > instead of a com.sun.jndi.fscontext.RefFSContextFactory, which is what it is configured
              > to use. I am getting the following error:
              >
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <MessagingBridge> <Bridge "Provd Messaging
              > Bridge" is getting the connections to the two adapters.>
              > <Sep 29, 2002 12:16:22 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              > RUNTIME! Bridge Provd Messaging Bridge In getConnections: isStopped = false>
              > <Sep 29, 2002 12:16:22 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              > RUNTIME! Bridge Provd Messaging Bridge Getting source connection: sourceConnSpec
              > = weblogic.jms.adapter.JMSConnectionSpec@27166f>
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to locate context: java:/comp/env/wls-connector-resref>
              >
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to determine Resource
              > Principal for Container Managed Security Context.>
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to locate context: java:/comp/env/wls-connector-resref>
              >
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <Connector> <Unable to determine Resource
              > Principal for Container Managed Security Context.>
              > <Sep 29, 2002 12:16:22 PM EDT> <Warning> <Connector> << Weblogic Messaging Bridge
              > Adapter (XA) > ResourceAllocationException of javax.resource.ResourceException:
              > ConnectionFactory: failed to get initial context (InitialContextFactory =weblogic.jndi.WLInitialContextFactory,
              > url = file:/opt/mqm/java/mq-jndi, user name = guest, password = guest on createManagedConnection.>
              >
              > <Sep 29, 2002 12:16:22 PM EDT> <Error> <Connector> <Error granting connection
              > request.>
              > <Sep 29, 2002 12:16:22 PM EDT> <Info> <MessagingBridge> <Bridge "Provd Messaging
              > Bridge" failed to connect to the source destination and will try again in 25 seconds.
              > (javax.resource.spi.ResourceAllocationException: CreateManagedConnection Error:
              > ConnectionFactory: failed to get initial context (InitialContextFactory =weblogic.jndi.WLInitialContextFactory,
              > url = file:/opt/mqm/java/mq-jndi, user name = guest, password = guest)>
              > <
              >
              > The configuration of the bridge, printed out in the log, is:
              >
              > <Sep 29, 2002 12:16:00 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              > STARTUP! Bridge Provd Messaging Bridge's source properties are:
              > AdapterJNDIName=eis.jms.WLSConnectionFactoryJNDIXA
              > Classpath=null
              > ConnectionFactoryJNDIName = PMS.mqQcf
              > ConnectionURL = file:/opt/mqm/java/mq-jndi
              > InitialConnectionFactory = com.sun.jndi.fscontext.RefFSContextFactory
              > DestinationType = Queue
              > DestinationJNDIName = PMS.mqProvdRequest>
              > <Sep 29, 2002 12:16:00 PM EDT> <Debug> <MessagingBridge> <Messaging Bridge Debugging
              > STARTUP! Bridge Provd Messaging Bridge's target properties are:
              > AdapterJNDIName=eis.jms.WLSConnectionFactoryJNDIXA
              > Classpath=null
              > DestinationType = Queue>
              >
              > Am I correct in assuming it should be using the fscontext connection factory?
              > Why is it using the weblogic one?
              >
              > Jason
              

  • How to use struts Logic tags in weblogic8.1

    hi
              i have used jakarta struts in JDeveloper there i used logic tags
              but the same i have to use in weblogic8.1 ,how should i use it
              i am new to weblogic platform
              it is very urgent
              please

    Hi harish,
              Procedure for using a Struts Tag Libraries in weblogic 8.1 :
              â€¢Copy the tag lib jar files under WEB-INF/lib ( if tag handler supplied as
              classes without package a jar file then we need to copy the classes
              under WEB_INF/classes.
              â€¢ Copy the tld files files under WEB-INF or create a directory under
              WEB-INF and copy tld files under this directory.
              â€¢ We need to give the information about the tag libraries in web.xml by
              adding the following lines to it as,
              <taglib>
              <taglib-uri>bean</taglib-uri>
              <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>html</taglib-uri>
              <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>logic</taglib-uri>
              <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              </taglib>
              To use tags in jsp file we need to add taglib directive as ,
              <%@ taglib uri="logic" prefix=“logic"%>
              <%@ taglib uri="html" prefix=“html"%>
              <%@ taglib uri="bean" prefix=“bean"%>
              Every tag can support zero or more number of attributes and a tag may or
              may not support body content
              Every Tag Library Uniquely identified by uri defined in web.xml.
              we can use the tags in jsp according to the tags and attributes which are defined in *.tld files.
              if we look at .tld files we can find several tags and its attributes.
              note :any jar files that are related to struts framework ,place under the lib directory of the webapplication.
              ----- Anilkumar kari

  • Weblogic8.1 console problem

    Hi,
    I recently downloaded the free weblogic8.1 server and
    installed it on a Windows 2000 pro pc, with IE6.0.
    After starting the Weblogic Server, I am not able to use
    the Tree in the Server Console. But, I can do all the
    possible settings thru the links on the right window.
    Some problem with the Applet. Any idea?
    bye,
    Nise

    This problem occurs with IE 6.0
    Try to uninstalll the microsoft VM and then reinstall the JDK 1.4 ( JRE ).
    In the browser enable the Java options.
    Jin

  • Question:BEA-101083 error  weblogic8.16???

    platform:AS5 weblogic8.16
    managed server log display error
    ####<2009-9-7 <Error> <HTTP> <web3> <web03> <ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <BEA-101083> <Connection failure.
    java.net.SocketException: Error in poll for fd=47, revents=32
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:131)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    so why display this error?? how can i solve this problem??

    是连接池的问题,调整一下试一试

  • Import Failure from oracle805 to Oracle8i

    Dear Friend:
    The upgrade of the oracle database from oracle805 to oracle8i in
    Linux fails in my side. After I successfully export the whole
    database into the dump files and try to import into oracle8i, the
    following error message appears:
    Import: Release 8.1.5.0.0 - Production on Mon Jul 26 10:47:00
    1999
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Enterprise Edition Release 8.1.5.0.0 -
    Production
    With the Partitioning and Java options
    PL/SQL Release 8.1.5.0.0 - Production
    Export file created by EXPORT:V08.00.05
    import done in US7ASCII character set and US7ASCII NCHAR
    character set
    . importing SYSTEM's objects into SYSTEM
    IMP-00017: following statement failed with ORACLE error 2143:
    "CREATE TABLE "DEF$_PROPAGATOR" ("USERID" NUMBER, "USERNAME"
    VARCHAR2(30) NO"
    "T NULL ENABLE, "CREATED" DATE NOT NULL ENABLE) PCTFREE 10
    PCTUSED 40 INITR"
    "ANS 1 MAXTRANS 255 LOGGING STORAGE(INITIAL 12288 NEXT 1"
    IMP-00003: ORACLE error 2143 encountered
    ORA-02143: invalid STORAGE option
    IMP-00008: unrecognized statement in the export file:
    ^E^E^E^E^E^H^HC###^Q#^H^HA##~C
    IMP-00008: unrecognized statement in the export file:
    ^E^E^E^E^E^H^HC###^Q#^H^HA##~C
    IMP-00008: unrecognized statement in the export file:
    ^E^E^E^E^E^H^HC###^Q#^H^HA##~C
    IMP-00009: abnormal end of export file
    Import terminated successfully with warnings.
    Anyone has any idea on this case.
    Thanks.
    Rgds Johnny
    null

    For music: Download Senuti for Mac - Copy music from iPods to Macs ...
    For photos: plug in to iMac. iPhoto should open automatically if photos are on your device.
    not sure about the contacts, etc.

  • JVM crash for weblogic8.1 running on solaris and JDK1.4.2_05

    Hi,
    I am an administrator of weblogic8.1 server platfrom running solaris8.1 There are 2 managed server runs on 2 solaris unix box and admin server run on a third solaris unix box. Since last couple of days, weblogic server crashing everyday creating a core file and hs_err_pidxxxx.log, on each manage server.Below is the content of hs_err_pidxxxx.log.
    Unexpected Signal : 11 occurred at PC=0xFE1CBCAC
    Function=[Unknown. Nearest: JVM_FillInStackTrace+0x4CE4]
    Library=/bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    Current Java thread:
    Dynamic libraries:
    0x10000 /bea/jdk142_05/bin/java
    0xff360000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff200000 /usr/lib/libc.so.1
    0xff340000 /usr/platform/SUNW,Sun-Fire-V240/lib/libc_psr.so.1
    0xfe000000 /bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    0xff2e0000 /usr/lib/libCrun.so.1
    0xff1e0000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff0d0000 /usr/lib/libm.so.1
    0xff1c0000 /usr/lib/libsched.so.1
    0xff310000 /usr/lib/libw.so.1
    0xff0a0000 /usr/lib/libmp.so.2
    0xff070000 /bea/jdk142_05/jre/lib/sparc/native_threads/libhpi.so
    0xff050000 /usr/lib/nss_files.so.1
    0xfe7d0000 /bea/jdk142_05/jre/lib/sparc/libverify.so
    0xfe790000 /bea/jdk142_05/jre/lib/sparc/libjava.so
    0xfe770000 /bea/jdk142_05/jre/lib/sparc/libzip.so
    0xf94a0000 /osmf/i3/i3v7/products/j2ee/lib/libPreciseLog.so
    0xf9480000 /usr/lib/libpthread.so.1
    0xf9460000 /usr/lib/libkstat.so.1
    0xa9050000 /bea/jdk142_05/jre/lib/sparc/libnet.so
    0xa9290000 /usr/lib/nss_dns.so.1
    0xa8db0000 /usr/lib/libresolv.so.2
    0xa9030000 /bea/weblogic814/server/lib/solaris/libmuxer.so
    0xa8b60000 /usr/ucblib/libucb.so.1
    0xa8b20000 /usr/lib/libelf.so.1
    0xa8d90000 /bea/jdk142_05/jre/lib/sparc/libnio.so
    0xa8a60000 /usr/lib/librt.so.1
    0xa8920000 /usr/lib/libaio.so.1
    0xa8900000 /usr/lib/libsendfile.so.1
    0xa83e0000 /bea/jdk142_05/jre/lib/sparc/libioser12.so
    Heap at VM Abort:
    Heap
    def new generation total 339264K, used 293091K [0xa9400000, 0xbe950000, 0xbe950000)
    eden space 329024K, 87% used [0xa9400000, 0xbac61f00, 0xbd550000)
    from space 10240K, 58% used [0xbd550000, 0xbdb26ea0, 0xbdf50000)
    to space 10240K, 0% used [0xbdf50000, 0xbdf50000, 0xbe950000)
    tenured generation total 699072K, used 204153K [0xbe950000, 0xe9400000, 0xe9400000)
    the space 699072K, 29% used [0xbe950000, 0xcb0ae7f8, 0xcb0ae800, 0xe9400000)
    compacting perm gen total 65024K, used 64974K [0xe9400000, 0xed380000, 0xf9400000)
    the space 65024K, 99% used [0xe9400000, 0xed373a30, 0xed373c00, 0xed380000)
    Local Time = Mon Nov 20 13:17:55 2006
    Elapsed Time = 150397
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_05-b04 mixed mode)
    any idea?

    Hi Jitesh
    JVM crash could be because of any code, it could be weblogic or your own application or a bug in JDK itself.
    1) You can run tools like GDB on the core file which will indicate the source of the crash.
    From the stack it looks like a Sun JDK bug
    2) Search on sun for this error code shows some known bugs. Checkout http://onesearch.sun.com/search/onesearch/index.jsp?charset=utf-8&col=developer-debugging&qt=4F530E43505002EF+01&rt=true&cs=false
    3) You can also upgrade the JVM to the latest version of 1.4.2. I believe you have 1.4.2_05
    Vimala-

  • Structure of servlets in weblogic8.1

    I insalled the weblogic8.1 these days only.Actually,i am not getting how the structure of web application(war file) and how to deploy it in the server.

    STFW
    http://e-docs.bea.com/wls/docs81/webapp/deployment.html#163278

  • How to set Global_dop in bods 4.1sp3

    One month ago, one of SAP staff told me that I could modify global_dop to 1 by editing C:\Program Files (x86)\SAP Business Objects\Data Services\conf\DSConfig.txt and restart bods service .
    Now I found it doesn't work .
    I have a job that could works only when degree of parallelism is set to 1 . ( Don't focus on this job , this is defect for BODS , but SAP only give me this workaround ).
    After I modified DSConfig.txt , this job still couldn't work . [Before this, I had modified the degree of parallelism of dataflow to "default" ]
    I have to change another way to modify Global_dop :
    "BODS designer" -> "Tool" -> "options" -> "job server" -> "General"
    Section:  AL_Engine
    Key: Global_DOP
    Value: 1
    If i click "refresh" , it will show DOP in "value" .
    I click "OK", it save this change .
    Then ,  my job could work successfully.
    Our product is integrated with bods .
    We don't want to tell our customers to modify this handy .
    So could someone tell me another way to modify Global_DOP ?
    e.g.  modify some .txt   ?
    Configuration:
    boe 4.0sp6
    bods 4.1sp3
    OS: windows 2008 server R2
    db: sql server 2008 r2

    I got it .
    I should edit below txt file :
    C:\ProgramData\SAP BusinessObjects\Data Services\conf\DSConfig.txt
    Not
    C:\Program Files (x86)\SAP Business Objects\Data Services\conf\DSConfig.txt.
    I modified DOP via designer , and found that the DSConfig.txt under "ProgramData" changed.

Maybe you are looking for

  • Delete file from app server

    hi, i am running a background job in bw and for that created a file on the application server.now how do i delete that file.to create the file i just gave the name in the bw and the file got created.i am not able to find how to delete it. or rather t

  • Bit locker Recovery

    Hi,   Can anyone help me on this, I am using Win 8.1 Ent edition and Hard-disk has been encrypted from control panel, now I changed my Laptop motherboard and prompting me the recovery key on booting :(, when I log into my Microsoft account error will

  • ODBC Connection problem with SQL Native Client driver with CR 11

    I am having an issue connecting my crystal reports to an ODBC connection that uses the SQL Native Client driver (Version 2005.90.2047.00).  My reports work fine when using the SQL Server driver (Version 2000.85.3006.00).   The ODBC connection is setu

  • Trust relation between mac server 2.2.1 (10.8 mountain lion) and windows server 2008 r2

    i have the following settings: windows 2008R2 domain server. mac server 2.2.1 mac client machines mac server machine is joined to Active Directory in windows 2008r2 without any problems. mac client machine is joined to mac server without any problem.

  • Returning Array Data

    Hello. I am trying to create an array of bank accounts and only return one of those accounts based on input from a scanner i.e entering a pin number. I know how to create the scanner and create the objects I just can not figure out for the life of me