VB/Delphi connectivity to Weblogic server

We have a application server currently running on BEA's Weblogic Server 6.0.
In addition to my webclients built using JSP Servlet etc., I would like to
build a intranet application using either Microsoft Visual Basic or Borland
Delphi or any other front end tool. Is there a way to have my application
build thus to connect to Weblogic server?
Thanks and appreciate any help.
Raj George

Check out Jintegra from Linar.com.
Michael Girdley
BEA Systems
Learning WebLogic? http://learnweblogic.com
"Raj George" <[email protected]> wrote in message
news:3b0da123$[email protected]..
We have a application server currently running on BEA's Weblogic Server6.0.
In addition to my webclients built using JSP Servlet etc., I would like to
build a intranet application using either Microsoft Visual Basic orBorland
Delphi or any other front end tool. Is there a way to have my application
build thus to connect to Weblogic server?
Thanks and appreciate any help.
Raj George

Similar Messages

  • Connect to weblogic Server's JVM

    Hello everybody,
    I´m trying connect to weblogic server´s JVM to execute a class inside the jar.
    It works fine, but my jar has a class with static atributes that I want change its values calling the following command line:
    %JAVA_HOME%\bin\java -Djavax.naming.Context.INITIAL_CONTEXT_FACTORY=weblogic.jndi.WLInitialContextFactory -Djavax.naming.Context.PROVIDER_URL=t3://localhost:7001 -jar %_APP_HOME%\WEB-INF\lib\AdminServer.jar -1
    Afer it the values of my class atribute has changed but my web application does not see this news values.
    I thinking... Am I connected to weblogic server´s JVM ?
    Could Anyone help me?

    You need to take a step back and think about what you're trying to achieve, Denilson.
    Using static attributes in classes has all sorts of side-effects because of how classloaders work in J2EE - if you're referencing a class used inside the web application and poking a static property, what is most likely happening is that your local application is loading the class in its own classloader, modifying the property, and then exiting. A separate copy of the class has been loaded by the web application.
    You can see more information on classloaders here: http://edocs.bea.com/wls/docs81/programming/classloading.html#1089798
    If you want to run an application to change some value on the server, there are a number of options available:
    - getting, changing and replacing an object in the JNDI tree (this is still an ugly solution)
    - using a servlet or stateless session bean to get the job done (this is a better solution - simple, but still not as good as you could potentially get)
    I'd suggest using a servlet to modify an attribute scoped at the web application level as a lightweight way to do what you're trying to. <i>(if I'm understanding what your goal is correctly)</i>. That way you could test making changes with your browser, not just a Java application.
    Does any of that help?
    <br>
    Kevin Powe
    http://www.integral-techsolutions.com

  • Enable SSL between oracle JDBC Connection in weblogic server.

    Hi ALL,
    I have an requirement to enable SSL Mechanism in weblogic JDBC Connection Pool.we are using Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production and Driver as "jdbc:oracle:thin@..." / oracle.jdbc.OracleDriver.
    weblogic server 8.1 SP4
    can anybody know what are the steps / configuration has to be done for enable Oracle Advanced Security encryption on the JDBC Oracle Thin driver with a WebLogic JDBC Connection Pool.
    Thanks,
    Karthik,

    Hi,
    I changed the code as given below. Still getting the same error. Can I migrate my question to jdbc section? I am new to this forum.
    import java.sql.*;
    public class jdbc {
    public static void main(String[] args) throws ClassNotFoundException, SQLException
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url = "jdbc:oracle:thin:@localhost:1521:xe";
    Connection conn =
    DriverManager.getConnection(url,"jestin","jj");
    conn.setAutoCommit(false);
    Statement stmt = conn.createStatement();
    ResultSet rset =
    stmt.executeQuery("select BANNER from SYS.V_$VERSION");
    while (rset.next()) {
    System.out.println (rset.getString(1));
    stmt.close();
    System.out.println ("Ok.");
    jestinjoy@debian:~/java$ javac -classpath /usr/lib/java/ jdbc.java
    jestinjoy@debian:~/java$ java jdbc
    Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at jdbc.main(jdbc.java:7)
    same error when I give the command without classpath

  • Datasource connection in Weblogic server using JDeveloper

    Hi,
    I am using JDeveloper 11g Release 2 (11.1.2.1.0) and WebLogic Server Version: 10.3.5.0.
    We have a project (ant build.xml) with some Application Modules.
    In JDeveloper we did the following to create a connection to datasource in the WebLogic:
    1- Created an Application Server Connection (called ActivityModuleConnection) testing this gives success so we have connection to WebLogic.
    2- Created a database connection (called ActivityModuleCore) and test goes well here as well.
    3- In WebLogic Server created a datasource (called jdbc/ActivityModuleCordeDS).
    And here are the bc4j.xcfg file that we have:
    <AppModuleConfig DeployPlatform="EjbWls" oracle.jbo.usemds="false" jbo.pers.max.active.nodes="-1" oracle.adfm.usemds="false" name="J2EEDS" ApplicationName="dv.framework.activity.model.ActivityModule">
    <Security AppModuleJndiName="dv.framework.activity.model.ActivityModule"/>
    <Custom JDBCDataSource="java:comp/env/jdbc/VeraActivityModuleCoreDS" AppServerConnectionName="ActivityModuleConnection"/>
    </AppModuleConfig>
    <ConnectionDefinition name="ActivityModuleConnection">
    <Entry value="7002" name="JMX_CONNECTOR_SSL_PORT"/>
    <Entry value="WebLogic_10.x" name="ConnectionType"/>
    <Entry value="weblogic" name="user"/>
    <Entry value="base_domain" name="weblogic.domain"/>
    <Entry value="localhost" name="JMX_CONNECTOR_HOST"/>
    <Entry value="false" name="USE_SSL"/>
    <Entry value="7001" name="JMX_CONNECTOR_PORT"/>
    <SecureEntry name="password">
    <XXXXXXXX>
    </SecureEntry>
    <Entry name="DeployPassword" value="true"/>
    </ConnectionDefinition>
    </BC4JConfig>
    But when running the application it seems that it can not find the datasource:
    oracle.jbo.ConfigException: JBO-33003: The connection file ActivityModuleConnection has not been defined.
    at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1255)
    at oracle.jbo.client.Configuration.getConfiguration(Configuration.java:648)
    at oracle.jbo.common.ampool.PoolMgr.loadConfiguration(PoolMgr.java:605)
    at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:332)
    Could you help please? what am I doing wrong here?
    I also tried with
    JDBCDataSource="jdbc/VeraActivityModuleCoreDS" but no luck.
    Best Regards
    Keyvan

    Hi Johan and thanks for comments,
    Now I made some changes and it looks like :
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig xmlns="http://xmlns.oracle.com/bc4j/configuration" version="11.1">
    <AppModuleConfigBag ApplicationName="dv.framework.activity.model.ActivityModule">
    <AppModuleConfig name="J2EEDS" DeployPlatform="LOCAL" jbo.pers.max.active.nodes="-1" java.naming.factory.initial="oracle.jbo.common.JboInitialContextFactory" ApplicationName="dv.framework.activity.model.ActivityModule" oracle.jbo.usemds="false" oracle.adfm.usemds="false">
    <Security AppModuleJndiName="dv.framework.activity.model.ActivityModule"/>
    <Custom JDBCDataSource="jdbc/VeraActivityModuleCoreDS"/>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>
    But the error message is:
    oracle.jbo.DMLException: JBO-27200: JNDI-fel. couldn't search for datasource in the context jdbc/VeraActivityModuleCoreDS
         at oracle.jbo.server.DBTransactionImpl.lookupDataSource(DBTransactionImpl.java:1476)
         at oracle.jbo.server.DBTransactionImpl2.connectToDataSource(DBTransactionImpl2.java:332)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.connect(DefaultConnectionStrategy.java:203)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolConnect(ApplicationPoolMessageHandler.java:592)
         at oracle.jbo.server.ApplicationPoolMessageHandler.doPoolMessage(ApplicationPoolMessageHandler.java:422)
         at oracle.jbo.server.ApplicationModuleImpl.doPoolMessage(ApplicationModuleImpl.java:8995)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.sendPoolMessage(ApplicationPoolImpl.java:4603)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2533)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2343)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3242)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:572)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:505)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:500)
    Best Regards
    Keyvan
    Edited by: 916815 on 2012-mar-24 08:55

  • BAM Connection in Weblogic Server 10.3

    The application uses a BAM connection to create visualization components in ADF. It works fine in the integrated weblogic server. I deployed the application on a stand alone weblogic server. I am able to launch the page but get an error for the BAM Connection. How can I create a BAM connection in the stand alone weblogic server. Is there something similar to creating a JNDI for a database.

    Looks like a possibility that some files got corrupted after the reboot. Looks like a OS specific issue.

  • Unable to Connect to WebLogic Server 7.0 Win 2000

    Hi,
    I have successfully installed weblogic 7.0 evaluation version on win 2000
    and Iam just tryung to start weblogic server 7.0 by
    Programs->BEA Weblogic Platform 7.0 --> Weblogic Server 7.0 --> Weblogic Builder
    and when i try to connect to server through Weblogic Builder screen with default paramaters
    such as..
    Protocol:t3
    Host:Localhost
    Port:7001
    Server name:myserver
    System username: admin and default passwd
    It gives me the following error
    javax.naming.CommunicationException. Root exception is java.net.ConnectException: t3://localhost:7001: Destination
    unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination     at
    weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:173)     at
    weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:262)     at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:323)     at
    weblogic.jndi.Environment.getContext(Environment.java:154)     at
    weblogic.jndi.Environment.getInitialContext(Environment.java:137)     at
    weblogic.marathon.server.ServerData.initHome(ServerData.java:421)     at
    weblogic.marathon.server.ServerData.connectToServer(ServerData.java:137)     at
    weblogic.marathon.tasks.ConnectServerTask.runBackground(ConnectServerTask.java:27)     at
    weblogic.jellybeans.core.task.TaskThread.execute(TaskThread.java:114)     at
    weblogic.jellybeans.core.task.TaskThread.run(TaskThread.java:55)--------------- nested within:
    ------------------weblogic.marathon.server.ServerException - with nested exception:[javax.naming.CommunicationException [Root
    exception is java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination]]     at
    weblogic.marathon.server.ServerData.connectToServer(ServerData.java:150)     at
    weblogic.marathon.tasks.ConnectServerTask.runBackground(ConnectServerTask.java:27)     at
    weblogic.jellybeans.core.task.TaskThread.execute(TaskThread.java:114)     at
    weblogic.jellybeans.core.task.TaskThread.run(TaskThread.java:55)
    Prior itself, (with help from this forum) I have installed
    1). j2sdk1.4.0_01
    2). j2sdkee1.3.1
    compiled all EJB beans successfully and now i need to deploy..please do guide me
    what all paramters and classpath variables to start/connect weblogic server...Once again my OS is Win 2000
    Thanks for the Forum and People.

    I also have the same version of WLS and run on win200 prof .... well i installed from the same ... ya uninstall the server ... do it again .... then on completion
    Start --> BEA WebLogic Platform 7.0 --->Domain Configuration Wizard then a new window opens with the message Choose Domain Type and Name ---> select the template WLS Domain name=mydomain -->Next --->SingleServer -->Next --><specify directory for mydomain>-->next-->server name etc -->next and finally do finish ....
    i hope this will solve yr problem else keep posting and i will try to help ya by installing the same in a new m/c

  • Goldengate Director admin connect crash weblogic server

    Hi
    I am running the golden gate director on 64 bit windows 2008R2. I have fired up the goldengate admin server. I have two issues.
    1) When I connect to localhost:9001/acon with weblogic for the header and left hand panel i get 403 forbidden error. right side frame shows up. I don't know what is causing that.
    2) when i connect using golden gate administration tool with admin user the weblogic crashes :( and here is the output. Looks like it goes through loop and fails. I have the schema stored in SQL 2012.
    please help on this..
    Error Message: Unhandled native exception [85]
    Exception Rec: EXCEPTION_STACK_OVERFLOW (00000000c00000fd) at 0x000007FEFC7D3D0F
    Minidump : Wrote mdmp. Size is 1409MB
    SafeDllMode : -1
    Version : Oracle JRockit(R) R28.2.5-20-152429-1.6.0_37-20120927-1915-windows-x86_64
    CPU : Intel Core 2 SSE SSE2 SSE3 SSSE3 Core Intel64
    Number CPUs : 16
    Tot Phys Mem : 73011105792 (69628 MB)
    OS version : Microsoft Windows 2008 R2 version 6.1 Service Pack 1 (Build 7601) (64-bit)
    Thread System: Windows Threads
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State : JVM is running
    Command Line : -Xms1024m -Xmx2048m -Xverify:none -da -Dplatform.home=E:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=E:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=E:\Oracle\MIDDLE~1\patch_wls1036\profiles\default\sysext_manifest_classpath;E:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\sysext_manifest_classpath -Dlog4j.configuration=log4j.properties -Dweblogic.Name=FM7SGENIDBBM01.AMR.CORP.INTEL.COM -Djava.security.policy=E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Dsun.java.command=weblogic.Server -Dsun.java.launcher=SUN_STANDARD weblogic.Server
    Repository : C:\Users\AD_SNA~1\AppData\Local\Temp\2\2013_02_16_21_05_41_13440
    java.home : E:\Java\JROCKI~1.0\jre
    j.class.path : ;E:\Oracle\MIDDLE~1\patch_wls1036\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\sys_manifest_classpath\weblogic_patch.jar;E:\Java\JROCKI~1.0\lib\tools.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;E:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.6.0.jar;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;E:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;E:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;;E:\GG_Directorgg-director\domain\lib;;./;
    j.lib.path : E:\Java\JROCKI~1.0\bin;C:\Windows\system32;C:\Windows;E:\Oracle\MIDDLE~1\patch_wls1036\profiles\default\native;E:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\native;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;E:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;E:\Java\JROCKI~1.0\jre\bin;E:\Java\JROCKI~1.0\bin;E:\DB\oracle\11gR2\bin;C:\Program Files\EMC\PowerCommon\;C:\Program Files\EMC\PowerPath\;C:\Program Files\EMC\PowerPath\32bit\;C:\Program Files\HP\NCU;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\System Center Operations Manager 2007\;C:\Program Files (X86)\Softek\TDMF (IP);C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8;.
    JAVA_HOME : E:\Java\JROCKI~1.0
    JAVAOPTIONS: <not set>
    PATH : E:\Oracle\MIDDLE~1\patch_wls1036\profiles\default\native;E:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\native;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;E:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;E:\Java\JROCKI~1.0\jre\bin;E:\Java\JROCKI~1.0\bin;E:\DB\oracle\11gR2\bin;C:\Program Files\EMC\PowerCommon\;C:\Program Files\EMC\PowerPath\;C:\Program Files\EMC\PowerPath\32bit\;C:\Program Files\HP\NCU;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\System Center Operations Manager 2007\;C:\Program Files (X86)\Softek\TDMF (IP);C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;;E:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    C Heap : Good; no memory allocations have failed
    GC Strategy : Mode: throughput, with strategy: genparpar (basic strategy: genparpar)
    GC Status : OC is not running. Last finished OC was OC#0.
    : YC is not running. Last finished YC was YC#1.
    YC Promotion : Last YC successfully promoted all objects
    YC History : Ran 1 YCs since last OC.
    Heap : 0x000000007FFF0000 - 0x00000000BFFF0000 (Size: 1024 MB)
    Compaction : (no compaction area)
    Allocation : TLA-min: 2048, TLA-preferred: 65536 TLA-waste limit: 2048
    NurseryList : 0x000000007FFF0000 - 0x000000009FFF0000
    KeepArea : 0x000000008FFEFFF8 - 0x0000000097FEFFF0
    KA Markers : [ 0x000000008FFEFFF8,  0x0000000097FEFFF0 , 0x000000009FFF0000 ]
    Forbidden A : (none)
    Previous KA : 0x0000000097FEFFF0 - 0x000000009FFF0000
    Previous FA : (none)
    CompRefs : References are compressed, with heap base 0x0 and shift 0.
    Registers (from ThreadContext: 0x0000000050313A30:
    rax = 0000000000000103 rcx = 000000000000000f
    rdx = 00000000000009b4 rbx = 0000000000000000
    rsp = 0000000050313ff0 rbp = 0000000000000002
    rsi = 0000000000000acc rdi = 00000000000009b4
    r8 = 0000000000000002 r9 = 0000000000000006
    r10 = 0000000000000000 r11 = 0000000000000246
    r12 = 0000000000000006 r13 = 00000000000009b4
    r14 = 0000000000000000 r15 = 0000000050314118
    cs = 0000000000000033 fs = 0000000000000053
    gs = 000000000000002b
    rip = 000007fefc7d3d0f flags = 0000000000010206
    Loaded modules:
    (* denotes the module where the exception occured)
    0000000140000000-000000014003efff E:\Java\JROCKI~1.0\bin\java.exe
    0000000077080000-0000000077228fff C:\Windows\SYSTEM32\ntdll.dll
    0000000076e60000-0000000076f7efff C:\Windows\system32\kernel32.dll
    000007fefd330000-000007fefd39bfff C:\Windows\system32\KERNELBASE.dll
    000007feff060000-000007feff13afff C:\Windows\system32\ADVAPI32.dll
    000007fefec20000-000007fefecbefff C:\Windows\system32\msvcrt.dll
    000007fefdc90000-000007fefdcaefff C:\Windows\SYSTEM32\sechost.dll
    000007fefd720000-000007fefd84cfff C:\Windows\system32\RPCRT4.dll
    0000000180000000-000000018040bfff E:\Java\JROCKI~1.0\jre\bin\jrockit\jvm.dll
    000007fefed00000-000007fefed4cfff C:\Windows\system32\WS2_32.dll
    000007fefd850000-000007fefd857fff C:\Windows\system32\NSI.dll
    000007fef39b0000-000007fef39eafff C:\Windows\system32\WINMM.dll
    0000000076f80000-0000000077079fff C:\Windows\system32\USER32.dll
    000007feff210000-000007feff276fff C:\Windows\system32\GDI32.dll
    000007fefecc0000-000007fefeccdfff C:\Windows\system32\LPK.dll
    000007feff140000-000007feff208fff C:\Windows\system32\USP10.dll
    000007fefecd0000-000007fefecfdfff C:\Windows\system32\IMM32.DLL
    000007feff280000-000007feff388fff C:\Windows\system32\MSCTF.dll
    0000000002150000-0000000002195fff E:\Java\JROCKI~1.0\jre\bin\jrosal.dll
    00000000022a0000-00000000022d7fff E:\Java\JROCKI~1.0\jre\bin\jrutil.DLL
    000007fefce30000-000007fefce54fff C:\Windows\system32\SspiCli.dll
    000007fef6660000-000007fef66adfff C:\Windows\system32\pdh.dll
    000007fefc0e0000-000007fefc10cfff C:\Windows\system32\ntmarta.dll
    000007fefebc0000-000007fefec11fff C:\Windows\system32\WLDAP32.dll
    000007fee72b0000-000007fee72bdfff C:\Windows\System32\perfproc.dll
    000007fee71a0000-000007fee71aafff C:\Windows\System32\perfos.dll
    0000000002950000-000000000297cfff E:\Java\JROCKI~1.0\jre\bin\jfr.dll
    000000006d820000-000000006d82dfff E:\Java\JROCKI~1.0\jre\bin\verify.dll
    000000006d450000-000000006d476fff E:\Java\JROCKI~1.0\jre\bin\java.dll
    000000006d3b0000-000000006d3b9fff E:\Java\JROCKI~1.0\jre\bin\hpi.dll
    000000006d870000-000000006d881fff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\zip.dll
    0000000077240000-0000000077246fff C:\Windows\system32\psapi.DLL
    000000006d6b0000-000000006d6c6fff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\net.dll
    000007fefc7d0000-000007fefc824fff *C:\Windows\system32\mswsock.dll
    000007fefc1e0000-000007fefc1e6fff C:\Windows\System32\wshtcpip.dll
    000007fefc950000-000007fefc956fff C:\Windows\System32\wship6.dll
    000007fefb960000-000007fefb974fff C:\Windows\system32\NLAapi.dll
    000007fefab80000-000007fefab94fff C:\Windows\system32\napinsp.dll
    000007fefc660000-000007fefc6bafff C:\Windows\system32\DNSAPI.dll
    000007fefabb0000-000007fefabbafff C:\Windows\System32\winrnr.dll
    000007fefb550000-000007fefb576fff C:\Windows\system32\IPHLPAPI.DLL
    000007fefb540000-000007fefb54afff C:\Windows\system32\WINNSI.DLL
    000007fefabd0000-000007fefabd7fff C:\Windows\system32\rasadhlp.dll
    000007fefb440000-000007fefb492fff C:\Windows\System32\fwpuclnt.dll
    000000004ace0000-000000004ad04fff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\orii.dll
    000000006d6d0000-000000006d6dafff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\nio.dll
    000000006d5f0000-000000006d5f9fff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\management.dll
    000007fefc960000-000007fefc976fff C:\Windows\system32\CRYPTSP.dll
    000007fefc540000-000007fefc586fff C:\Windows\system32\rsaenh.dll
    000007fefc370000-000007fefc38dfff C:\Windows\system32\USERENV.dll
    000007fefcfd0000-000007fefcfdefff C:\Windows\system32\profapi.dll
    000007fefcec0000-000007fefcecefff C:\Windows\system32\CRYPTBASE.dll
    000000004a790000-000000004a7befff E:\Java\jrockit-jdk1.6.0_37-R28.2.5-4.1.0\jre\bin\jmapi.dll
    000007fefb3d0000-000007fefb3e0fff C:\Windows\system32\dhcpcsvc6.DLL
    000007fefb3b0000-000007fefb3c7fff C:\Windows\system32\dhcpcsvc.DLL
    0000000002e60000-0000000002e67fff E:\Oracle\Middleware\wlserver_10.3\server\native\win\x64\wlntio.dll
    0000000048e00000-0000000048e17fff E:\Oracle\Middleware\wlserver_10.3\server\native\win\x64\wlfileio3.dll
    000000005b270000-000000005b3cdfff E:\Java\JROCKI~1.0\jre\bin\dbghelp.dll
    Stack:
    (* marks the word pointed to by the stack pointer)
    0000000050313ff0: 0000000000000000* 0000000000000000 0000000000000000 000007fefc7d1667
    0000000050314010: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
    0000000050314030: 00000000503140b8 000000000001201f 0000000000000000 0000000000000acc
    0000000050314050: 0000000000000000 0000000002d5db50 00000000a16cd1a0 000007fefc7e3eae
    0000000050314070: 0000000000000acc 00000000503141c0 0000000000000001 0000000000000000
    0000000050314090: 0000000050314118 0000000000012017 00000000503140c8 0000000000000018
    Code:
    (* marks the word pointed to by the instruction pointer)
    000007fefc7d3ca8: a0249c8b4800010a 2a850fff85000000 c48348c033000109 c35e5f5d415e4178
    000007fefc7d3cc8: 9090909090909090 0f0100049b893d83 90c3f30000bc4284 9090909090909090
    000007fefc7d3ce8: 9090909090909090 415541544156f5ff f18b4850ec834856 8b4500049a2a0d8b
    000007fefc7d3d08: ffea8b4ce88b41e1* 448d4c0004089b15 4cce8b4801b22824 ffff2c2444c7f08b
    000007fefc7d3d28: b4c0282444c7ffff 000404b015ffffb3 0000df30850fc085 c4834800000001b8
    000007fefc7d3d48: 5e5c415d415e4150 909090909090c35d 9090909090909090 0f0100049af93d83
    Last optimized methods:
    No methods optimized.
    Thread:
    "[STANDBY] ExecuteThread: '1' fo" id=22 idx=0x80 tid=14052 lastJavaFrame=0x0000000050314270
    Stack 0: start=0x0000000050310000, end=0x0000000050350000, guards=0x0000000050314000 (ok), forbidden=0x0000000050311000
    Thread Stack Trace:
    at WSPStartup+44366()@0x000007FEFC7E3EAE
    at recv+315()@0x000007FEFED0E07C
    at RJNI_jrockit_net_SocketNativeIO_readBytesPinned+602(rnisocketnativeio.c:125+154)@0x00000001801B624B
    -- Java stack --
    at jrockit/net/SocketNativeIO.readBytesPinned(Ljava/io/FileDescriptor;[BIII)I(Native Method)
        at jrockit/net/SocketNativeIO.socketRead(SocketNativeIO.java:32)
        at java/net/SocketInputStream.socketRead0(Ljava/io/FileDescriptor;[BIII)I(SocketInputStream.java)
        at java/net/SocketInputStream.read(SocketInputStream.java:129)
        at weblogic/jdbc/sqlserver/dda.w()V(Unknown Source)
        at weblogic/jdbc/sqlserver/dda.o()V(Unknown Source)
        at weblogic/jdbc/sqlserver/tds/ddq.a(Lweblogic/jdbc/sqlserver/ddj;)V(Unknown Source)
        at weblogic/jdbc/sqlserver/tds/ddo.e(Lweblogic/jdbc/sqlserver/ddj;Lweblogic/jdbc/sqlserverbase/ddez;)V(Unknown Source)
        at weblogic/jdbc/sqlserver/tds/ddn.a(Lweblogic/jdbc/sqlserver/ddj;Lweblogic/jdbc/sqlserverbase/ddez;)V(Unknown Source)
        at weblogic/jdbc/sqlserver/ddj.h()V(Unknown Source)
        at weblogic/jdbc/sqlserverbase/ddel.v()V(Unknown Source)
        at weblogic/jdbc/sqlserverbase/ddel.r()Z(Unknown Source)
        at weblogic/jdbc/sqlserverbase/ddde.execute()Z(Unknown Source)
        at weblogic/jdbc/wrapper/PreparedStatement.execute(PreparedStatement.java:99)
        at weblogic/security/providers/authentication/shared/DBMSSQLRuntimeQueryImpl.executeStringArrayResultStatement(DBMSSQLRuntimeQueryImpl.java:169)
        at weblogic/security/providers/authentication/shared/DBMSSQLRuntimeQueryImpl.stringArrayQuery(DBMSSQLRuntimeQueryImpl.java:153)
        at weblogic/security/providers/authentication/shared/DBMSSQLRuntimeQueryImpl.executeMemberGroups(DBMSSQLRuntimeQueryImpl.java:65)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:831)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        ---------------------------1000's times.. same thing
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsUnlimited(DBMSAtnLoginModuleImpl.java:869)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroupsInternal(DBMSAtnLoginModuleImpl.java:899)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.findMemberGroups(DBMSAtnLoginModuleImpl.java:742)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.addGroupsFromDBMS(DBMSAtnLoginModuleImpl.java:526)
        at weblogic/security/providers/authentication/shared/DBMSAtnLoginModuleImpl.login(DBMSAtnLoginModuleImpl.java:341)
        at com/bea/common/security/internal/service/LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:254)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:268)
        at com/bea/common/security/internal/service/LoginModuleWrapper.login(LoginModuleWrapper.java:106)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(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:597)
        at javax/security/auth/login/LoginContext.invoke(LoginContext.java:769)
        at javax/security/auth/login/LoginContext.access$000(LoginContext.java:186)
        at javax/security/auth/login/LoginContext$4.run(LoginContext.java:683)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:254)
        at jrockit/vm/AccessController.doPrivileged(AccessController.java:268)
        at javax/security/auth/login/LoginContext.invokePriv(LoginContext.java:680)
        at javax/security/auth/login/LoginContext.login(LoginContext.java:579)
        at com/bea/common/security/internal/service/JAASLoginServiceImpl.login(JAASLoginServiceImpl.java:113)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(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:597)
        at com/bea/common/security/internal/utils/Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
        at $Proxy20.login(Ljava/lang/String;Ljavax/security/auth/callback/CallbackHandler;Lweblogic/security/service/ContextHandler;)Lcom/bea/common/security/service/Identity;(Unknown Source)
        at weblogic/security/service/internal/WLSJAASLoginServiceImpl$ServiceImpl.login(WLSJAASLoginServiceImpl.java:89)
        at com/bea/common/security/internal/service/JAASAuthenticationServiceImpl.authenticate(JAASAuthenticationServiceImpl.java:82)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(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:597)
        at com/bea/common/security/internal/utils/Delegator$ProxyInvocationHandler.invoke(Delegator.java:57)
        at $Proxy40.authenticate(Ljavax/security/auth/callback/CallbackHandler;Lweblogic/security/service/ContextHandler;)Lcom/bea/common/security/service/Identity;(Unknown Source)
        at weblogic/security/service/WLSJAASAuthenticationServiceWrapper.authenticate(WLSJAASAuthenticationServiceWrapper.java:40)
        at weblogic/security/service/PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:338)
        at weblogic/common/internal/RMIBootServiceImpl.authenticate(RMIBootServiceImpl.java:109)
        at weblogic/common/internal/RMIBootServiceImpl_WLSkel.invoke(ILweblogic/rmi/spi/InboundRequest;Lweblogic/rmi/spi/OutboundResponse;Ljava/lang/Object;)Lweblogic/rmi/spi/OutboundResponse;(Unknown Source)
        at weblogic/rmi/internal/BasicServerRef.invoke(BasicServerRef.java:667)
        at weblogic/rmi/internal/BasicServerRef$1.run(BasicServerRef.java:522)
        at weblogic/security/acl/internal/AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
        at weblogic/security/service/SecurityManager.runAs(SecurityManager.java:146)
        at weblogic/rmi/internal/BasicServerRef.handleRequest(BasicServerRef.java:518)
        at weblogic/rmi/internal/wls/WLSExecuteRequest.run(WLSExecuteRequest.java:118)
        at weblogic/work/ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic/work/ExecuteThread.run(ExecuteThread.java:221)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

    Hi,
    This crash issue usually happens when the application requires more stack size (Xss) and the default stack size of JRockit JDK is not enough. To resolve this JRockit JDK crash issue increase StackSize by adding -Xss:<value in kb> JRockit JDK argument to start script by specifying value in kb based on your application requirement.
    Mark if this helps.
    Regards,
    Kishore

  • What to do when connection to Weblogic server cant be guranteed ?

    hello,
    I have the following scenario:
    the connection to the weblogic server can't be guaranteed, it can be that
    the connection drops in the middle of transaction (some clients connect via
    mobile phones).
    We had a non ejb solution, stored the data we wanted to write in the
    database loca in an xml object and tried to replicate the xml object into
    the database when we got back connection.
    Is there any mechanism to solve this problem or is it possible to hold an
    entity bean on the client (in some kind of thin container) which writes the
    data in the databse in case the connection is back ?
    Oh, btw this is not a web application, we use java application client.
    Any hints appreciated !

    max trenks wrote:
    hello,
    I have the following scenario:
    the connection to the weblogic server can't be guaranteed, it can be that
    the connection drops in the middle of transaction (some clients connect
    via mobile phones).
    We had a non ejb solution, stored the data we wanted to write in the
    database loca in an xml object and tried to replicate the xml object into
    the database when we got back connection.
    Is there any mechanism to solve this problem or is it possible to hold an
    entity bean on the client (in some kind of thin container) which writes
    the data in the databse in case the connection is back ?
    Oh, btw this is not a web application, we use java application client.
    Any hints appreciated !Use transaction to ensure Atomicity, Consistency, Integrity and Durability.
    Thanks,
    Neo Gigs
    "Follow the white rabbit..."

  • Unable to make a connection to weblogic server 6.0

    I need urgent help on this:
    I have installed BEA weblogic server on my machine(Win2000). Following is the classpath:
    ClassPath=C:\Program Files\Exceed.nt\hcljrcsv.zip;C:\Program Files\Exceed.nt;c:\
    jdk1.3.1\bin;.;c:\downloads;c:\downloads\weblogic510sp5.jar;c:\downloads\weblogi
    caux.jar;c:\downloads\common.jar;c:\downloads\SecurityTest.class;c:\downloads\Se
    curityTestHome.class;c:\bea\wlserver6.0\lib\weblogic.jar;c:\bea\wlserver6.0\lib\
    jms450.jar;c:\bea\wlserver6.0\lib\jms451.jar;c:\bea\wlserver6.0\lib\jms500.jar;c
    :\bea\wlserver6.0\lib\jms510.jar;c:\bea\wlserver6.0\lib\mssqlserver4v65.jar;c:\b
    ea\wlserver6.0\lib\wleorb.jar;c:\bea\wlserver6.0\lib\wlepool.jar;c:\bea\wlserver
    6.0\lib\xmlx.jar;c:\bea\wlserver6.0\lib\zac.jar;c:\jdk1.3.1\lib;c:\downloads\lib
    \jndi.jar;c:\downloads\ejb.jar;c:\bea\utils\utils.jar;
    The code that I am using is:
    import javax.naming.*;
    import java.util.Hashtable;
    public class myClass {
    public static void main(String[] args) {
    Context ctx = null;
         boolean result = false;
         Hashtable ht = new Hashtable();
         ht.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
         ht.put(Context.PROVIDER_URL, "t3://localhost:7001");
         ht.put(Context.SECURITY_PRINCIPAL, "username");
         ht.put(Context.SECURITY_CREDENTIALS, "password");
              try {
                   ctx = new InitialContext(ht);
                   result = true;
              catch (NamingException ne) {
                   System.out.println("JNDI Exception: ");
                   ne.printStackTrace();
                   result = false;
    Code gets compiled but when I run, following is the error that I get:
    Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/t3/services/
    PropertyDef
    at weblogic.jndi.WLInitialContextFactoryDelegate.<init>(WLInitialContext
    FactoryDelegate.java:134)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Unknown Source)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialCont
    extFactory.java:118)
    at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
    at javax.naming.InitialContext.init(Unknown Source)
    at javax.naming.InitialContext.<init>(Unknown Source)
    at myClass.main(myClass.java:18)
    Tell me where I am wrong-do I need to include something else in my classpath or weblogic server needs some configuration-weblogic's classpath needs to be set. I don't know. I tried a lot but exhausted. Please help. I would appreciate it.
    -ajain3

    No, that was on 5.1. For 6.0, my classpath has just:
    %JAVA_HOME%\lib\tools.jar;%WL_HOME%\lib\weblogic_sp.jar;%WL_HOME%\lib\weblogic.jar;
    %CLASSPATH%
    This works fine.

  • NES proxy connection to WebLogic server

    Is there a service pack available which enables SSL traffic (https rather than http)
    between the weblogic NES proxy and weblogic server 5.1?

    Copy the <Weblogic81>\server\lib\weblogic.jar to the <JDeveloper>\jdev\lib\ext directory. <WebLogic81> is the directory in which your WebLogic 8.1 server is installed. <JDeveloper> is the directory in which JDeveloper 10g is installed.

  • Problem connecting to Weblogic Server

    I have a JMS application for which I am trying to create a connection factory for Oracle ESB (Weblogic). I added the wlfullclient.jar to my classpath and start the application. I receive the following error in my application's log?
    Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jms.connection.oracle' defined in ServletContext resource [WEB-INF/spring/context-oracle.xml]: Invocation of init method failed; nested exception is javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1338)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
         at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
         at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
         at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
         at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
         at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:269)
         ... 87 more
    Caused by: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at org.springframework.jndi.JndiTemplate.createInitialContext(JndiTemplate.java:137)
         at org.springframework.jndi.JndiTemplate.getContext(JndiTemplate.java:104)
         at org.springframework.jndi.JndiTemplate.execute(JndiTemplate.java:86)
         at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:153)
         at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:178)
         at org.springframework.jndi.JndiLocatorSupport.lookup(JndiLocatorSupport.java:95)
         at org.springframework.jndi.JndiObjectLocator.lookup(JndiObjectLocator.java:105)
         at org.springframework.jndi.JndiObjectTargetSource.afterPropertiesSet(JndiObjectTargetSource.java:96)
         at org.springframework.jndi.JndiObjectFactoryBean$JndiObjectProxyFactory.createJndiObjectProxy(JndiObjectFactoryBean.java:284)
         at org.springframework.jndi.JndiObjectFactoryBean$JndiObjectProxyFactory.access$000(JndiObjectFactoryBean.java:273)
         at org.springframework.jndi.JndiObjectFactoryBean.afterPropertiesSet(JndiObjectFactoryBean.java:176)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1369)
         at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1335)
         ... 97 more
    Caused by: java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:46)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
         ... 113 more
    Is this the correct JAR to add and if so how can I resolve this problem?

    Exception that you shows clearly says your enviroment does not find weblogic.jndi.WLInitialContextFactory class, this class is inside weblogic.jar, wlclient.jar, etc, however. If you only has added wlclient and wljmsclient probably there are missing some libraries that your application requires, I suggest try with weblogic.jar instead of wlclient.jar + wljmsclient.jar.
    If this works, maybe you are not building your wlfullclient.jar correctly.

  • Unable to establish connection to weblogic server

    Hi Everyone,
    I am getting the following error:
    Testing JSR-160 Runtime                ... success.
    Testing JSR-160 DomainRuntime          ... failed.
    Cannot establish connection.
    Testing JSR-88                         ... skipped.
    Testing JSR-88-LOCAL                   ... skipped.
    Testing JNDI                           ... success.
    Testing JSR-160 Edit                   ... failed.
    Cannot establish connection.
    Testing HTTP                           ... success.
    Testing Server MBeans Model            ... skipped.
    Testing HTTP Authentication            ... success.
    4 of 9 tests successful.I have "Use HTTp Proxy Server" unchecked. However I am still not able to establish connection.
    I also restarted my jdev, but no luck.
    I am using JDeveloper Studio 11.1.1.5.0.
    Thanks in advance.

    Hi
    From the admin console ... Are you able to check the status of Node Manager ?
    If yes ... please check the SSL configuration of managed servers ...
    Check the domain administration port also.
    Jin

  • JDeveloper to WebLogic Server 6.1 connectivity problem

    Hello,
    I am try to connect to WebLogic Server 6.1 from JDeveloper Version 9.0.3.9.93.
    The JDeveloper is installed in Windows XPe. The WebLogic Server is installed in a Sun Box.
    The weblogic.jar is already in the lib/ext directory in my local machine whether the JDeveloper runs. Any help in rectifying this is greatly appreciated.
    Below is the error :
    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException:
    attempting to add an object which is not an instance o java.security.Principal to a Subject's Principal Set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Take a look at this otn thread
    oracle9i3.0_prev /weblogic problem
    Seems that WebLogic has its own java.security.Principal Class. The only workaround is....
    Edit bin\jdev.conf and added the following line:
    AddJavaLibFile ../lib/ext/weblogic.jar
    Place this new line before any other AddJavaLibFile.
    This is a problem with only a specific version of WebLogic.

  • Deployment Application To Weblogic Server Failed

    Hello every body
    I need your help in this problem please :
    I'm using Oracle JDeveloper 11.1 in my local machine, I Installed Weblogic Server 10.3 on the server and it's works well, I made new JDBC connection in Weblogic Server and it's works well too.
    I made new ADF Fusion web Application and I used the same connection that I used in Weblogic server and it's works well.
    I made new Application Server Connection from my local machine and It's works well with my user account.
    In my project I made new WAR deployment, Also I configured my Application properties to Bind Application to the Weblogic server Instance.
    1-when I try to deploy my project to Weblogic server I get this error message :
    Deploying Application...
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application test_webapp on AdminServer.: Failed to load webapp: 'test_webapp.war'.
    weblogic.application.ModuleException: Failed to load webapp: 'test_webapp.war'
    #### Deployment incomplete. #### Feb 15, 2009 12:18:01 PM
    Deployment Failed
    2-Another application was deployed before to Weblogic server, it seems running well, whereas Weblogic Server marks my deployment health as OK, but when I try to run it for test using this URL : http://serverIP:Port/Deployment Name, I get this Error : Error 403--Forbidden
    What Should I do for both cases ?
    Thanks a lot ...

    Thanks Timo
    But first I don't use any library at my project , this is last log in Weblogic Server logfile :
    ####<Feb 16, 2009 1:56:58 PM EET> <Warning> <DeploymentService> <D2KR2> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <Osama> <> <> <1234785418343> <BEA-290008> <Deployment service servlet encountered while extracting uploaded file to directory ".\servers\AdminServer\upload\test_webapp". Exception is: "invalid distance code".>
    Where D2KR2 is my Server Name
    Osama is my user in Weblogic Server
    test_webapp is the Application name
    My problem didn't solved yet, and I'm new at JDeveloper ADF.
    Where I can find clear information about deploying projects to Weblogic server.
    Thank's Agin ...
    Edited by: user8330337 on 15/02/2009 04:09 ص

  • PI 7.11 JMS adapter using JNDI weblogic server issue

    Hi SAP experts,
    I have a scenario to integrate to a application using JMS adapters. we use SAP PI 7.11 version.
    We have deployed JMS drivers successfully and We face issue here to connect to weblogic server
    We are using JMS adapter using JNDI to connect to weblogic server version 10.3.
    Can anyone help with the exact format to be used in JMS properties table and additional parameters table in JMS communication channel. Your quick help will be appreciated.
    A channel error occurred. The detailed error (if any) : com.sap.aii.adapter.jms.api.connector.ConnectorException: Error looking up destination: AccrualDetailsQueue for profile:  ConnectionProfile of channel: CC_SND_JMS on node: 3010950 having object id: 673696a9fe8c39fdab32213f0930afb3: javax.naming.NameNotFoundException: Unable to resolve 'AccrualDetailsQueue'. Resolved ''<br> at com.sap.aii.adapter.jms.core.connector.JndiConnectorImpl.createDestination(JndiConnectorImpl.java:168)<br

    Hi Padmini,
    Refer to the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/24/4cad3baabd4737bab64d0201bc0c6c/content.htm
    It was very helpful to me, for configuring the additional parameters in the communication Channel JMS.
    I leave you some screenshots of the settings that I did.
    I seize the opportunity to ask you, where do I can get the drivers (.Jar) for Weblogic?
    Regards.
    Rodrigo.

Maybe you are looking for

  • Just did the 2.1 SW update, can no longer connect to Exchange Mail Srvr

    Just Updated to the 2.1 iPhone SW. Now can not connect to my email account on Exchange Server 2007 which I had no problem with prior to the SW update. Can not send or receive email and all email previously in account on iPhone is now GONE! After SW U

  • In Table contol,add and subtract button getting disabled.

    Hi , My requirement is that in table control when user adds  more than four rows,error message will be displayed i.e maximum of 4 rows allowed. But after error message is displayed ,add and subtract button is disabled in table control and I am  not a

  • 64-Bit Bootcamp on MBP

    I bought a MBP last year around this time (2.4 GHz model, 4GB RAM). I have always wanted to install 64-bit Vista so I could use all of RAM (32-bit only recognizes only 2.98GB). Now to my knowledge, you can now install a 64-bit windows OS on a Mac Pro

  • Compliance Remediation Script parameter

    Hello, I am working on some remediation scripting in SCCM 2012 and am running into what I believe to be a bug. According to the SCCM window below, SCCM should be sending the 'Non-Compliant' Value to the script (which should be the value that you echo

  • Everythings hangs for no reason

    i have no idea what is happening to my laptop. ever since i installed a RAW processing software, bibble pro, the hanging problems start. initially it started with the program itself. now it seems to have spread to any program, anytime. i can still mo