Running JCORBA SAMPLE

Hi:
I am trying to get the ServerStack example (the server portion)
and i successfully compiled the source code using
jdeveloper2.0.184 beta, made the Server.jar file and then tried
to add to the application and when i submit the command i get:
java.lang.NullPointerException
at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.instantiateBeanDesc
riptor(EJBJarToDescUtil.java:551)
at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.populateDescUtilFro
mManifest(EJBJarToDescUtil.java:96)
at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.processEJBJar(EJBJa
rToDescUtil.java:89)
at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.(EJBJarToDescUtil.j
ava:55)
at
oracle.oas.beans.tools.descr.JarUtil.processEJBJar(JarUtil.java:1
16)
at oracle.oas.beans.tools.descr.JarUtil.(JarUtil.java:58)
at
oracle.oas.beans.tools.config.Scanner.scan(Scanner.java:170)
at
oracle.oas.beans.tools.config.OASInstaller.generate(OASInstaller.
java:41)
at
oracle.oas.beans.tools.config.OASInstaller.main(OASInstaller.java
:24)
Registration failed!
I added the following jar files to the CLASSPATH:
i:\orant\ows\4.0\classes\cosnam.jar
i:\orant\ows\4.0\classes\wrbjidl.jar
i:\orant\ows\4.0\classes\services.jar
i:\orant\ows\4.0\classes\jcorba.jar
Are there other jar files that must be included in the classpath,
and where can i start debugging. Other than JCORBA my installatio
n is fine, i've gotten PL/SQL, PERL, JWEB running w/o problems.
thanks,
ted
null

Thanks, here is what i have:
using jar xf S1.jar i basically get (piped results):
META-INF/
META-INF/MANIFEST.MF
myStack/ServerStack.class
myStack/ServerStackRemote.class
myStack/StackException.class
META-INF/jco.app
I then exptracted the jco.app file using winzip to make sure
there's something in there in jco.app:
[APPLICATION]
name=myStack
[ServerStack]
className=myStack.ServerStack
remoteInterface=myStack.ServerStackRemote
[ServerStack.ENV]
initialStackSize=20
and in manifest.mf:
Manifest-Version: 1.0
Created-By: 1.2 (Sun Microsystems Inc.)
***** there must be something basic i am not getting
i am going through the documentation trying to figure
out how the jcorba works and so i can step through it manually
and debug. Any suggestions?
ServerStackRemote.java:
package myStack;
public interface ServerStackRemote extends
oracle.oas.jco.JCORemote
public int getStackSize();
public void setStackSize(int size)
throws StackException;
public void push(String value)
throws StackException;
public String pop()
throws StackException;
StackException Java:
package myStack;
public final class StackException extends Exception
public StackException()
ServerStack.java:
package myStack;
import oracle.oas.jco.*;
import java.util.Properties;
public class ServerStack implements Lifecycle
private int stackSize = 0;
private String stackElements[];
private int top = -1;
private ObjectManager mgr = null;
private Logger logger = null;
// Lifecycle method: This method is called by OAS after it
creates the
// JCO and registers it with the runtime. The JCO cannot create
an
// ObjectManager object in its constructor because it's not
registered
// with OAS yet.
public void jcoCreate()
mgr = ObjectManager.getObjectManager(this);
logger = mgr.getLogger();
logger.setSeverity(Logger.LOG_SEVERITY_DEBUG);
try {
Properties env = mgr.getEnvironment();
setStackSize(Integer.parseInt(env.getProperty("initialStackSize")
catch (Exception e) {
// Lifecycle method: This method is called by OAS just before
terminating
// a JCO. This can happen either because the client has invoked
the destroy
// method on an instance or the instance has timed out (in both
cases, the
// JCO must not be reusable or the jcoPassivate method is
called instead).
// Doing nothing special.
public void jcoDestroy() {
// Lifecycle method: This method is called by OAS if the client
has invoked
// the destroy method on an instance or the instance has timed
out, and the
// JCO is reusable.
// Throwing NonReusableException as the JCO is not reusable.
public void jcoPassivate()
throws NonReusableException
throw new NonReusableException();
// Lifecycle method: This method is called by OAS to activate a
JCO in the
// reusable pool for a client.
// JCO is not reusable, so this is not relevant.
public void jcoActivate() {
public int getStackSize()
logger.println(" Getting stack size...");
return stackSize;
public void setStackSize(int size) throws StackException
if (size < 0)
throw new StackException();
logger.println(" Setting stack size to " + size + "...");
top = -1;
stackSize = size;
stackElements = new String[size];
public void push(String value) throws StackException
if (top == stackSize - 1)
throw new StackException();
logger.println(" Pushing \"" + value + "\" onto the
stack...");
stackElements[++top] = value;
public String pop() throws StackException
if (top == -1)
throw new StackException();
logger.println(" Popping the stack (returning element " +
stackElements[top] + ")...");
return stackElements[top--];
JDeveloper Product Management (guest) wrote:
: Ted,
: You need a jco.app file that you can create, it should contain
: - Remote Interface
: - Specification of which CORBA Objects you wish to publish
: Federico
: ted (guest) wrote:
: : Hi:
: : I am trying to get the ServerStack example (the server
portion)
: : and i successfully compiled the source code using
: : jdeveloper2.0.184 beta, made the Server.jar file and then
tried
: : to add to the application and when i submit the command i
get:
: : java.lang.NullPointerException
: : at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.instantiateBeanDesc
: : riptor(EJBJarToDescUtil.java:551)
: : at
oracle.oas.beans.tools.descr.EJBJarToDescUtil.populateDescUtilFro
: : mManifest(EJBJarToDescUtil.java:96)
: : at
: : oracle.oas.beans.tools.descr.EJBJarToDescUtil.processEJBJar
: (EJBJa
: : rToDescUtil.java:89)
: : at
: : oracle.oas.beans.tools.descr.EJBJarToDescUtil.
: (EJBJarToDescUtil.j
: : ava:55)
: : at
: : oracle.oas.beans.tools.descr.JarUtil.processEJBJar
: (JarUtil.java:1
: : 16)
: : at oracle.oas.beans.tools.descr.JarUtil.
: (JarUtil.java:58)
: : at
: : oracle.oas.beans.tools.config.Scanner.scan(Scanner.java:170)
: : at
: : oracle.oas.beans.tools.config.OASInstaller.generate
: (OASInstaller.
: : java:41)
: : at
: : oracle.oas.beans.tools.config.OASInstaller.main
: (OASInstaller.java
: : :24)
: : Registration failed!
: : I added the following jar files to the CLASSPATH:
: : i:\orant\ows\4.0\classes\cosnam.jar
: : i:\orant\ows\4.0\classes\wrbjidl.jar
: : i:\orant\ows\4.0\classes\services.jar
: : i:\orant\ows\4.0\classes\jcorba.jar
: : Are there other jar files that must be included in the
: classpath,
: : and where can i start debugging. Other than JCORBA my
: installatio
: : n is fine, i've gotten PL/SQL, PERL, JWEB running w/o
problems.
: : thanks,
: : ted
null

Similar Messages

  • Error while running a sample code

    Hello,
    I 'm getting the following error while i'm trying to run a
    sample code which I have imported into Flex 3.
    ===================================================================
    Severity and Description Path Resource Location Creation Time
    Id
    unable to open 'C:\Documents and Settings\sn55179\My
    Documents\Flex Builder
    3\FlexForDummies_Chapter3_Code\libs'FlexForDummies_Chapter3_Code
    Unknown 1237909480511 215
    ===================================================================
    Can anyone help me in resolving this issue.
    Many thanks in advance.

    It's very frustrating that FB stops working when the libs
    folder is missing. If you are checking in project files to a source
    control app like Perforce, empty folders don't get added, so if you
    don't add an initial dummy file, the next time you do a clean sync,
    the libs folder may not be there, and even though there is nothing
    there, FB complains. :-(

  • Error while running a sample XSQL from XML bible book from Steve Muench

    I am running the sample XSQL code from Chapter 03, which deals with exporting XML and transform into SQL statements. I'm using JDeveloper and I believe I've setup libraries and HTML root directory etc. I'm getting the following error:
    XSQL-011 Error processing XSLT stylesheet.
    XSL-1009 Attribute xsl:version not found in xsl:stylesheet.
    Can I get some help in fixing this error?
    Thanks a lot,
    Murali
    null

    Hi,
    This is the example I took from Steve Muench's book.
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text"/>
    <xsl:template match="/">
    </xsl:template1>
    </xsl:stylesheet>
    As you can see, I do have the version=1.0 attribute. Why is it complaining still?

  • I am trying to run this sample on my machine

    I am trying to run this sample on my machine as per the instructions to
    install the sample in WLISampleUserGuide.pdf. When I go to the step 6 of the
    installation, I get the following error in the Weblogic Server Console.
    <Sep 17, 2001 10:47:36 AM GMT+05:30> <Error> <Management> <Error
    initializing module certificate.war
    of application samples:Name=certificate,Type=Application from path
    .\config\samples\applications: w
    eblogic.management.MBeanCreationException: cannot find referenced module
    certificate.war>
    <Sep 17, 2001 10:47:46 AM GMT+05:30> <Error> <Management> <Error
    initializing module console.war of
    application samples:Name=console,Type=Application from path
    .\config\samples\applications: weblogic.
    management.MBeanCreationException: cannot find referenced module
    console.war>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component cer
    tificate.war of application samples:Name=certificate,Type=Application:
    java.io.FileNotFoundException
    : .\config\samples\applications\certificate.war (The system cannot find the
    file specified) ((localP
    ath: java.io.FileNotFoundException:
    .\config\samples\applications\certificate.war (The system cannot
    find the file specified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application certificate: error
    retrieving component [Caching Stub]Proxy for
    samples:Name=certificate,Location=myserver,Type=WebAppC
    omponentConfig,ApplicationConfig=certificate>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component con
    sole.war of application samples:Name=console,Type=Application:
    java.io.FileNotFoundException: .\conf
    ig\samples\applications\console.war (The system cannot find the file
    specified) ((localPath: java.io
    .FileNotFoundException: .\config\samples\applications\console.war (The
    system cannot find the file s
    pecified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application console: error retr
    ieving component [Caching Stub]Proxy for
    samples:Name=console,Location=myserver,Type=WebAppComponent
    Config,ApplicationConfig=console>
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    .java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    .java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicCollaborate> <INFO:
    WebLogic Collaborate Serv
    er started successfully.>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <WebLogic
    Server started>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer>
    <SSLListenThread listening on port 70
    02>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <ListenThread
    listening on port 7001>
    Once I put the certificate.war and console.war from
    D:\bea\wlintegration2.0\config\mydomain\applications, the errors related to
    the
    certificate.war and console.war file are not shown. The Weblogic Server
    Console now shows the following
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    .java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    .java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    Did anybody face this problem with this sample? Can somebody help me out
    with this. I am also looking for some basic ways of developing a PIP using
    Rosettanet. Is there is any site that gives such information. I have seen
    the BEA site on rosettanet. That does not help me.
    Regards,
    Dharnidhar Vemuri
    mailto: [email protected]

    Hi
    I am also facing this similar problem. Could any one tell me the root cause of
    this problem.
    Thanks in advance.
    Thanks and Regards
    Ramko
    "weblogic.integrator.developer" <[email protected]> wrote:
    I am trying to run this sample on my machine as per the instructions
    to
    install the sample in WLISampleUserGuide.pdf. When I go to the step 6
    of the
    installation, I get the following error in the Weblogic Server Console.
    <Sep 17, 2001 10:47:36 AM GMT+05:30> <Error> <Management> <Error
    initializing module certificate.war
    of application samples:Name=certificate,Type=Application from path
    ..\config\samples\applications: w
    eblogic.management.MBeanCreationException: cannot find referenced module
    certificate.war>
    <Sep 17, 2001 10:47:46 AM GMT+05:30> <Error> <Management> <Error
    initializing module console.war of
    application samples:Name=console,Type=Application from path
    ..\config\samples\applications: weblogic.
    management.MBeanCreationException: cannot find referenced module
    console.war>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component cer
    tificate.war of application samples:Name=certificate,Type=Application:
    java.io.FileNotFoundException
    : .\config\samples\applications\certificate.war (The system cannot find
    the
    file specified) ((localP
    ath: java.io.FileNotFoundException:
    ..\config\samples\applications\certificate.war (The system cannot
    find the file specified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application certificate: error
    retrieving component [Caching Stub]Proxy for
    samples:Name=certificate,Location=myserver,Type=WebAppC
    omponentConfig,ApplicationConfig=certificate>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <Management> <Error preparing
    application component con
    sole.war of application samples:Name=console,Type=Application:
    java.io.FileNotFoundException: .\conf
    ig\samples\applications\console.war (The system cannot find the file
    specified) ((localPath: java.io
    ..FileNotFoundException: .\config\samples\applications\console.war (The
    system cannot find the file s
    pecified))>
    <Sep 17, 2001 10:48:27 AM GMT+05:30> <Error> <J2EE> <Error deploying
    application console: error retr
    ieving component [Caching Stub]Proxy for
    samples:Name=console,Location=myserver,Type=WebAppComponent
    Config,ApplicationConfig=console>
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    ..java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    ..java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicCollaborate> <INFO:
    WebLogic Collaborate Serv
    er started successfully.>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <WebLogic
    Server started>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer>
    <SSLListenThread listening on port 70
    02>
    <Sep 17, 2001 10:49:46 AM GMT+05:30> <Notice> <WebLogicServer> <ListenThread
    listening on port 7001>
    Once I put the certificate.war and console.war from
    D:\bea\wlintegration2.0\config\mydomain\applications, the errors related
    to
    the
    certificate.war and console.war file are not shown. The Weblogic Server
    Console now shows the following
    Loaded resources from
    '/D:/bea/wlintegration2.0/config/samples/wlai/wlai.properties'
    [SerializationTester] : isSerializable(class javax.naming.Binding)
    java.io.NotSerializableException: javax.mail.Session
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1148)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    java.io.ObjectOutputStream.outputClassFields(ObjectOutputStream.java:1841)
    at
    java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:480)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1214)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.jndi.internal.SerializationTester.isSerializable(SerializationTeste
    r.java:36)
    at
    weblogic.jndi.internal.BindingEnumeration.fixNonSerializableBindings(Binding
    Enumeration.j
    ava:29)
    at
    weblogic.jndi.internal.BindingEnumeration.writeExternal(BindingEnumeration.j
    ava:48)
    at
    java.io.ObjectOutputStream.outputObject(ObjectOutputStream.java:1180)
    at
    java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:366)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObjectInternal(CBVOutputStream.ja
    va:220)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:213)
    at
    weblogic.rmi.internal.CBVOutputStream.writeObject(CBVOutputStream.java:190)
    at
    weblogic.jndi.internal.ServerNamingNode_WLSkel.invoke(ServerNamingNode_WLSke
    l.java:262)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicRequestDispatcher.dispatch(BasicRequestDispatcher
    ..java:115)
    at
    weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:88)
    at
    weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:108)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java
    :225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.listBindings(ServerNamingNode
    _WLStub.java:
    374)
    at
    weblogic.jndi.internal.WLContextImpl.listBindings(WLContextImpl.java:293)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :724)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.traverseContext(PluginManage
    rCfgImpl.java
    :747)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getDeployedPlugins(PluginMan
    agerCfgImpl.j
    ava:710)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(PluginMana
    gerCfgImpl.ja
    va:811)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfgImpl.ja
    va:75)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanImpl.init(PluginManagerCfgBea
    nImpl.java:79
    0)
    at
    com.bea.wlpi.server.plugin.PluginManagerCfgBeanEOImpl.init(PluginManagerCfgB
    eanEOImpl.jav
    a:1270)
    at
    com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListenerBean
    ..java:151)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:221)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:175)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1933)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1892)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.Kernel.execute(Kernel.java:250)
    at weblogic.jms.client.JMSSession.pushEnvelope(JMSSession.java:1779)
    at weblogic.jms.client.JMSCallback.pushEnvelope(JMSCallback.java:69)
    at weblogic.jms.frontend.FESession.execute(FESession.java:1972)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Initialized WebLogic Process Integrator Plugin Framework version 1.0
    Started WebLogic Process Integrator version 2.0 SP 3
    Did anybody face this problem with this sample? Can somebody help me
    out
    with this. I am also looking for some basic ways of developing a PIP
    using
    Rosettanet. Is there is any site that gives such information. I have
    seen
    the BEA site on rosettanet. That does not help me.
    Regards,
    Dharnidhar Vemuri
    mailto: [email protected]

  • Error while running the Sample code

    Hi,
    I am using jdeveloper 10.3 and I was trying to run the sample application that is present in the following url. I didnt change any thing in the code.
    http://www.oracle.com/technology/sample_code/products/jdev/readmes/samples/ldapdatacontrol/ldapapplication/public_html/index.html
    But While running the Test.java I get the following error. Is there any one who can help me in this please?
    javax.naming.OperationNotSupportedException: [LDAP: error code 53 - Please enter more characters]; remaining name 'dc=yourcompany,dc=users'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3058)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2931)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2737)
    at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1808)
    at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1731)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirContext.java:368)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeDirContext.java:338)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeDirContext.java:321)
    at javax.naming.directory.InitialDirContext.search(InitialDirContext.java:248)
    at dc.ldap.model.LDAPSearch.executeSearch(LDAPSearch.java:55)
    at dc.ldap.runtime.Test.main(Test.java:19)
    Exception in thread "main" java.lang.NullPointerException
    Thanks,
    Haripriya.S

    Probably you'll get more answers when you post this kinda questions in the JDev forum.

  • Exception while running RTLDemo Sample Server ????

    We have installed Weblogic 8.1 SP4 and BEA Weblogic Liquid data 8.5 as given in the Installation documentation.But we unable to run RTLDemo Sample Server.
    It throws following: error:weblogic.management.configuration.ConfigurationException:"weblogic Can't load security MBean instance"
    pls help

    Hi Mike,
    Could you pls tell what does it mean by weblogic platform.I had installed Weblogic Workshop and weblogic Server 8.1 SP 4.0.
    Following is error which i get on the console:
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
    BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1 (build ari-38120-20041118-1131-w
    in-ia32, Native Threads, GC strategy: parallel)
    Starting WLS with line:
    e:\bea\JROCKI~1\bin\java -jrockit -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socke
    t,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms96m -Xmx256m -Xveri
    fy:none -ea -da:com.bea... -da:javelin... -da:weblogic... -Dplatform.home=e:\bea
    \WEBLOG~1 -Dwls.home=e:\bea\WEBLOG~1\server -Dwli.home=e:\bea\WEBLOG~1\integrati
    on -Dlog4j.configuration=file:e:\bea\WEBLOG~1\common\lib\workshopLogCfg.xml -Dw
    eblogic.management.discover=true -Dweblogic.ProductionModeEnabled= -Dejbruntime.
    database=pointbase44 -Dweblogic.security.SSL.ignoreHostnameVerify=false -Dwlw.it
    erativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -Dweblogic.
    Name=cgServer -Djava.security.policy=e:\bea\WEBLOG~1\server\lib\weblogic.policy
    weblogic.Server
    === Debugging ===
    This window is necessary for debugging code using WebLogic Workshop
    <Jul 25, 2005 12:21:09 PM GMT+05:30> <Info> <WebLogicServer> <BEA-000377> <Start
    ing WebLogic Server with BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1 Version
    ari-38120-20041118-1131-win-ia32 from BEA Systems, Inc.>
    <Jul 25, 2005 12:21:10 PM GMT+05:30> <Info> <Configuration Management> <BEA-1500
    16> <This server is being started as the administration server.>
    <Jul 25, 2005 12:21:10 PM GMT+05:30> <Info> <Management> <BEA-141107> <Version:
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic XMLX Module 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic BEA Liquid Data for WebLogic 8.1 SP4 Fri Jun 10 02:09:49 PDT 2005 #5829
    48-20050610-020949
    WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647 >
    <Jul 25, 2005 12:21:11 PM GMT+05:30> <Notice> <Management> <BEA-140005> <Loading
    domain configuration from configuration repository at E:\bea\WEBLOG~1\samples\d
    omains\LDPLAT~1\.\config.xml.>
    The WebLogic Server did not start up properly.
    Exception raised: 'weblogic.management.configuration.ConfigurationException: (2)
    Can't load security MBean instance: "Security:Name=myrealmWSRPIdentityAsserter"
    . Type: "com.bea.wsrp.security.WSRPIdentityAsserter" is missing - with nested ex
    ception:
    [weblogic.management.configuration.ConfigurationException: (1) Can't load securi
    ty MBean instance: "Security:Name=myrealmWSRPIdentityAsserter". Type: "com.bea.w
    srp.security.WSRPIdentityAsserter" is missing]'
    Reason: weblogic.management.configuration.ConfigurationException: (2) Can't load
    security MBean instance: "Security:Name=myrealmWSRPIdentityAsserter". Type: "co
    m.bea.wsrp.security.WSRPIdentityAsserter" is missing - with nested exception:
    [weblogic.management.configuration.ConfigurationException: (1) Can't load securi
    ty MBean instance: "Security:Name=myrealmWSRPIdentityAsserter". Type: "com.bea.w
    srp.security.WSRPIdentityAsserter" is missing]
    Stopping the Weblogic Workshop debugger...
    Debugger Stopped.
    Stopping Pointbase server...
    and following is my config.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <Domain Name="ldplatform" ConfigurationVersion="8.1.4.0">
    <Server Name="cgServer" AcceptBacklog="50" HttpdEnabled="true"
    ListenAddress="" ListenPort="7001"
    ReliableDeliveryPolicy="RMDefaultPolicy"
    TransactionLogFilePrefix="./logs/" TunnelingClientPingSecs="45"
    TunnelingClientTimeoutSecs="40" DefaultProtocol="t3"
    DefaultSecureProtocol="t3s" NativeIOEnabled="true"
    StdoutDebugEnabled="false" StdoutSeverityLevel="32">
    <WebServer Name="cgServer" AuthCookieEnabled="true"
    LogFileName="./logs/access.log" LoggingEnabled="true"/>
    <COM Name="cgServer"/>
    <ServerStart Name="cgServer"/>
    <SSL Name="cgServer" Enabled="true"
    IdentityAndTrustLocations="KeyStores" ListenPort="7002"/>
    <Log Name="cgServer" FileMinSize="20000" RotationType="bySize"/>
    <KernelDebug Name="cgServer"/>
    <KernelDebug Name="cgServer"/>
    <ServerDebug Name="cgServer"/>
    <ExecuteQueue Name="weblogic.kernel.Default" ThreadCount="15"/>
    <JTAMigratableTarget Name="cgServer" UserPreferredServer="cgServer"/>
    </Server>
    <ApplicationManager Name="ldplatform"/>
    <Application Name="paymentWSApp" Deployed="false"
    Path="e:\bea\weblogic81/portal/lib/paymentWSApp.ear" TwoPhase="true">
    <EJBComponent Name="payment" Targets="cgServer" URI="payment.jar"/>
    <WebServiceComponent Name="payws" Targets="cgServer" URI="pay-ws"/>
    </Application>
    <Application Name="taxWSApp" Deployed="false"
    Path="e:\bea\weblogic81/portal/lib/taxWSApp.ear" TwoPhase="true">
    <EJBComponent Name="tax" Targets="cgServer" URI="tax.jar"/>
    <WebServiceComponent Name="taxws" Targets="cgServer" URI="tax-ws"/>
    </Application>
    <Application Name="WLI-AI Design-time" Deployed="true"
    Path="e:\bea\weblogic81/integration/lib/wlai-designtime.ear" TwoPhase="true">
    <EJBComponent Name="WLI-AI Manager EJBs" Targets="cgServer" URI="wlai-manager-ejb.jar"/>
    <WebAppComponent Name="wlai" Targets="cgServer" URI="wlai.war"/>
    </Application>
    <Application Name="ldconsole"
    Path="e:\bea\weblogic81/liquiddata/application/ldconsole.ear"
    StagingMode="nostage" TwoPhase="true">
    <WebAppComponent Name="ldconsole" Targets="cgServer" URI="ldconsole"/>
    </Application>
    <Application Name="JWSQueueTransport" Deployed="true"
    LoadOrder="1000" Path="e:\bea\weblogic81/server/lib/" TwoPhase="true">
    <EJBComponent Name="QueueTransportEJB" Targets="cgServer" URI="QueueTransportEJB.jar"/>
    </Application>
    <Application Name="WLI System EJBs" Deployed="true" LoadOrder="500"
    Path="e:\bea\weblogic81/integration/lib/wli-ejbs.ear" TwoPhase="true">
    <EJBComponent Name="WLI Admin" Targets="cgServer" URI="wliadmin"/>
    <EJBComponent Name="WLI Admin Helper" Targets="cgServer" URI="adminhelper"/>
    <EJBComponent Name="WLI Process Tracking" Targets="cgServer" URI="tracking"/>
    <EJBComponent Name="WLI Calendar Persistence" Targets="cgServer" URI="calendar/generic"/>
    <EJBComponent Name="WLI Worklist Persistence" Targets="cgServer" URI="worklist/persistence/generic"/>
    <EJBComponent Name="WLI Worklist Selection" Targets="cgServer" URI="worklist/selection"/>
    <EJBComponent Name="WLI Process Proxy Dispatcher"
    Targets="cgServer" URI="proxydispatcher"/>
    <EJBComponent Name="WLI Sync2Async Response Listener"
    Targets="cgServer" URI="transport/responsehandler"/>
    <EJBComponent Name="WLI AI Message Processors"
    Targets="cgServer" URI="wlai-processors-ejb.jar"/>
    <EJBComponent Name="WLI AI RAR Upload" Targets="cgServer" URI="wlai-rarupload-ejb.jar"/>
    <EJBComponent Name="WLI RosettaNet" Targets="cgServer" URI="rosettanet"/>
    <EJBComponent Name="WLI ebXML" Targets="cgServer" URI="ebxml"/>
    <EJBComponent Name="WLI Message Tracking" Targets="cgServer" URI="message-tracking"/>
    <WebAppComponent Name="WLI Sync2Async Transport Servlet"
    Targets="cgServer" URI="transport/http"/>
    <WebAppComponent Name="WLI-B2B HTTP Transport"
    Targets="cgServer" URI="b2btransport-webapp"/>
    </Application>
    <Application Name="WLI Console" Deployed="true" LoadOrder="200"
    Path="e:\bea\weblogic81/integration/lib/console" TwoPhase="true">
    <WebAppComponent Name="wliconsole" Targets="cgServer" URI="wliconsole.war"/>
    </Application>
    <Application Name="WLI Worklist" Deployed="true" LoadOrder="200"
    Path="e:\bea\weblogic81/integration/lib/worklistApp/worklistApp.ear" TwoPhase="true">
    <EJBComponent Name=".workshop/worklist/EJB/ProjectBeans"
    Targets="cgServer" URI=".workshop/worklist/EJB/ProjectBeans"/>
    <EJBComponent Name=".workshop/worklist/EJB/GenericStateless"
    Targets="cgServer" URI=".workshop/worklist/EJB/GenericStateless"/>
    <WebAppComponent Name="worklist" Targets="cgServer" URI="worklist"/>
    </Application>
    <Application Name="B2BDefaultWebAppApplication" Deployed="true"
    Path="e:\bea\weblogic81\samples\domains\ldplatform" TwoPhase="true">
    <WebAppComponent Name="B2BDefaultWebApp" Targets="cgServer"
    URI="B2BDefaultWebApp" IndexDirectoryEnabled="true"/>
    </Application>
    <Application Name="BEA_WLS_DBMS_ADK"
    Path="e:\bea\weblogic81/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear" TwoPhase="true">
    <WebAppComponent Name="BEA_WLS_DBMS_ADK_Web" Targets="cgServer" URI="BEA_WLS_DBMS_ADK_Web.war"/>
    <ConnectorComponent Name="BEA_WLS_DBMS_ADK" Targets="cgServer" URI="BEA_WLS_DBMS_ADK.rar"/>
    <ConnectorComponent Name="BEA_WLS_DBMS_ADK_LOCALTX"
    Targets="cgServer" URI="BEA_WLS_DBMS_ADK_LOCALTX.rar"/>
    </Application>
    <FileRealm Name="wl_default_file_realm"/>
    <Realm Name="wl_default_realm" FileRealm="wl_default_file_realm"/>
    <PasswordPolicy Name="wl_default_password_policy"/>
    <Security Name="ldplatform"
    PasswordPolicy="wl_default_password_policy"
    Realm="wl_default_realm" RealmSetup="true">
    <weblogic.security.providers.authentication.DefaultAuthenticator
    Name="Security:Name=myrealmDefaultAuthenticator" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authentication.DefaultIdentityAsserter
    ActiveTypes="AuthenticatedUser"
    Name="Security:Name=myrealmDefaultIdentityAsserter" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultRoleMapper
    Name="Security:Name=myrealmDefaultRoleMapper" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultAuthorizer
    Name="Security:Name=myrealmDefaultAuthorizer" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.authorization.DefaultAdjudicator
    Name="Security:Name=myrealmDefaultAdjudicator" Realm="Security:Name=myrealm"/>
    <weblogic.security.providers.credentials.DefaultCredentialMapper
    Name="Security:Name=myrealmDefaultCredentialMapper" Realm="Security:Name=myrealm"/>
    <weblogic.management.security.authentication.UserLockoutManager
    Name="Security:Name=myrealmUserLockoutManager" Realm="Security:Name=myrealm"/>
    <weblogic.management.security.Realm
    Adjudicator="Security:Name=myrealmDefaultAdjudicator"
    AuthenticationProviders="Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaultIdentityAsserter|Security:Name=myrealmWSRPIdentityAsserter"
    Authorizers="Security:Name=myrealmDefaultAuthorizer"
    CredentialMappers="Security:Name=myrealmDefaultCredentialMapper"
    DefaultRealm="true" DisplayName="myrealm"
    Name="Security:Name=myrealm"
    FullyDelegateAuthorization="true"
    RoleMappers="Security:Name=myrealmDefaultRoleMapper" UserLockoutManager="Security:Name=myrealmUserLockoutManager"/>
    <com.bea.wsrp.security.WSRPIdentityAsserter
    ActiveTypes="WSRPPerimeterAtnToken"
    Base64DecodingRequired="false"
    Name="Security:Name=myrealmWSRPIdentityAsserter" Realm="Security:Name=myrealm"/>
    </Security>
    <SNMPAgent Name="ldplatform"/>
    <ShutdownClass Name="WLI Shutdown Class" Targets="cgServer" ClassName="com.bea.wli.init.BPMShutdown"/>
    <StartupClass Name="WLI Startup Class" Targets="cgServer"
    ClassName="com.bea.wli.init.BPMStartup" FailureIsFatal="true" LoadBeforeAppActivation="true"/>
    <StartupClass Name="WLI Post-Activation Startup Class"
    Targets="cgServer"
    ClassName="com.bea.wli.init.BPMStartupAfterActivation" LoadBeforeAppActivation="false"/>
    <Log Name="ldplatform" FileMinSize="20000"
    FileName="./wl-domain.log" RotationType="bySize"/>
    <JMSConnectionFactory Name="cgQueue"
    Notes="User transactions must be enabled to ensure transaction coordination for persistence and asynchronous operations"
    Targets="cgServer"
    JNDIName="weblogic.jws.jms.QueueConnectionFactory" UserTransactionsEnabled="true"/>
    <JMSConnectionFactory
    Name="wli.internal.egrdbms.XAQueueConnectionFactory"
    Targets="cgServer" DefaultRedeliveryDelay="20000"
    JNDIName="wli.internal.egrdbms.XAQueueConnectionFactory"
    ServerAffinityEnabled="false" XAConnectionFactoryEnabled="true"/>
    <JMSConnectionFactory Name="WLI-B2B System Topic Factory"
    Targets="cgServer" AllowCloseInOnMessage="true"
    JNDIName="com.bea.wli.b2b.server.TopicConnectionFactory" UserTransactionsEnabled="true"/>
    <JMSFileStore Name="FileStore" Directory="rmfilestore"/>
    <JMSJDBCStore Name="cgJMSStore" ConnectionPool="cgJMSPool-nonXA" PrefixName="weblogic"/>
    <JMSServer Name="cgJMSServer" Targets="cgServer" Store="cgJMSStore" TemporaryTemplate="TemporaryTmplt">
    <JMSQueue Name="wli.internal.b2b.rosettanetencoder.queue"
    RedeliveryLimit="2"
    JNDIName="wli.internal.b2b.rosettanetencoder.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.b2b.mt.event.stream_error"
    RedeliveryLimit="0" JNDIName="wli.b2b.mt.event.stream_error" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.msgtracking.queue"
    RedeliveryLimit="2"
    JNDIName="wli.internal.msgtracking.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.process.event.stream_error"
    RedeliveryLimit="0"
    JNDIName="wli.process.event.stream_error" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.scheduling.queue"
    ErrorDestination="wli.internal.scheduling.queue_error"
    RedeliveryDelayOverride="500" RedeliveryLimit="1"
    JNDIName="wli.internal.scheduling.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.scheduling.queue_error"
    RedeliveryLimit="0"
    JNDIName="wli.internal.scheduling.queue_error" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.ai.event_suspend"
    RedeliveryLimit="2" JNDIName="wli.internal.ai.event_suspend" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.egfile.queue" RedeliveryLimit="2"
    JNDIName="wli.internal.egfile.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.b2b.failedmessage.queue" RedeliveryLimit="2"
    JNDIName="wli.b2b.failedmessage.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.egmq.queue" RedeliveryLimit="2"
    JNDIName="wli.internal.egmq.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.instance.info.buffer_error"
    RedeliveryLimit="0"
    JNDIName="wli.internal.instance.info.buffer_error" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.b2b.ebxmlencoder.queue"
    RedeliveryLimit="2"
    JNDIName="wli.internal.b2b.ebxmlencoder.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.tracking.buffer_error"
    RedeliveryLimit="0"
    JNDIName="wli.internal.tracking.buffer_error" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.instance.info.buffer"
    ErrorDestination="wli.internal.instance.info.buffer_error"
    RedeliveryDelayOverride="5000" RedeliveryLimit="200"
    JNDIName="wli.internal.instance.info.buffer" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.egmail.queue" RedeliveryLimit="2"
    JNDIName="wli.internal.egmail.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.egrdbms.queue" RedeliveryLimit="-1"
    JNDIName="wli.internal.egrdbms.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.b2b.mt.event.stream"
    ErrorDestination="wli.b2b.mt.event.stream_error"
    RedeliveryDelayOverride="5000" RedeliveryLimit="1"
    JNDIName="wli.b2b.mt.event.stream" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.worklist.timer.queue"
    RedeliveryLimit="2"
    JNDIName="wli.internal.worklist.timer.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.configfile.request.queue"
    RedeliveryLimit="2"
    JNDIName="wli.internal.configfile.request.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.process.event.stream"
    ErrorDestination="wli.process.event.stream_error"
    RedeliveryDelayOverride="5000" RedeliveryLimit="1"
    JNDIName="wli.process.event.stream" StoreEnabled="default"/>
    <JMSQueue Name="cgJWSQueue" RedeliveryLimit="2"
    JNDIName="jws.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.sync2Async.soapResponse"
    RedeliveryLimit="2"
    JNDIName="wli.internal.sync2Async.soapResponse" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.ai.async.response"
    RedeliveryLimit="2"
    JNDIName="wli.internal.ai.async.response" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.egtimer.queue" RedeliveryLimit="2"
    JNDIName="wli.internal.egtimer.queue" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.SQLStore.cleanup.documents"
    RedeliveryLimit="2"
    JNDIName="wli.internal.SQLStore.cleanup.documents" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.ai.async.request"
    RedeliveryLimit="2" JNDIName="wli.internal.ai.async.request" StoreEnabled="default"/>
    <JMSQueue Name="wli.internal.tracking.buffer"
    ErrorDestination="wli.internal.tracking.buffer_error"
    RedeliveryDelayOverride="5000" RedeliveryLimit="1"
    JNDIName="wli.internal.tracking.buffer" StoreEnabled="default"/>
    <JMSQueue Name="wli.sample.egjms.queue" RedeliveryLimit="2"
    JNDIName="wli.sample.egjms.queue" StoreEnabled="default"/>
    <JMSTopic Name="wli.internal.b2b.events.topic"
    RedeliveryLimit="2" JNDIName="wli.internal.b2b.events.topic" StoreEnabled="default"/>
    <JMSTopic Name="wli.internal.ai.event" RedeliveryLimit="2"
    JNDIName="wli.internal.ai.event" StoreEnabled="default"/>
    <JMSTopic Name="wli.internal.configfile.update.topic"
    RedeliveryLimit="2"
    JNDIName="wli.internal.configfile.update.topic" StoreEnabled="default"/>
    </JMSServer>
    <JMSTemplate Name="TemporaryTmplt"/>
    <WSReliableDeliveryPolicy Name="RMDefaultPolicy" Store="FileStore"
    DefaultRetryCount="10" DefaultTimeToLive="60000"/>
    <JDBCConnectionPool Name="portalPool" Targets="cgServer"
    CapacityIncrement="1"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="5" MaxCapacity="20"
    Password="{3DES}Ht7+sb+UC1EwrTC7dpOjAA=="
    Properties="user=weblogic;" RefreshMinutes="0"
    ShrinkPeriodMinutes="15" ShrinkingEnabled="true"
    TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="cgPool" Targets="cgServer"
    CapacityIncrement="1"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="5" MaxCapacity="20"
    Password="{3DES}Ht7+sb+UC1EwrTC7dpOjAA=="
    Properties="user=weblogic;" RefreshMinutes="0"
    ShrinkPeriodMinutes="15" ShrinkingEnabled="true"
    SupportsLocalTransaction="true" TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="cgJMSPool-nonXA" Targets="cgServer"
    CapacityIncrement="1"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="5" MaxCapacity="20"
    Password="{3DES}Ht7+sb+UC1EwrTC7dpOjAA=="
    Properties="user=weblogic;" RefreshMinutes="0"
    ShrinkPeriodMinutes="15" ShrinkingEnabled="true"
    SupportsLocalTransaction="true" TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="bpmArchPool" Targets="cgServer"
    CapacityIncrement="1"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="5" MaxCapacity="20"
    Password="{3DES}Ht7+sb+UC1EwrTC7dpOjAA=="
    Properties="user=weblogic;" RefreshMinutes="0"
    ShrinkPeriodMinutes="15" ShrinkingEnabled="true"
    SupportsLocalTransaction="true" TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="pprtlelecomsp" Targets="cgServer"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="1" MaxCapacity="15"
    Password="{3DES}LdW0ah3dXdAz4X9vWg55Yg=="
    Properties="user=rtlelecoms" SupportsLocalTransaction="true" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="pprtlapplomsp" Targets="cgServer"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="1" MaxCapacity="15"
    Password="{3DES}wgrAEXXLS/qQGxJT2U8UTA=="
    Properties="user=rtlapploms" SupportsLocalTransaction="true" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="pprtlservicep" Targets="cgServer"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="1" MaxCapacity="15"
    Password="{3DES}sGElgYwVhX4c4Zao5kAKhg=="
    Properties="user=rtlservice" SupportsLocalTransaction="true" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCConnectionPool Name="pprtlcustomerp" Targets="cgServer"
    DriverName="com.pointbase.jdbc.jdbcUniversalDriver"
    InitialCapacity="1" MaxCapacity="15"
    Password="{3DES}bjQfu4R40BxZ8AtSsv9fqA=="
    Properties="user=rtlcustomer" SupportsLocalTransaction="true" URL="jdbc:pointbase:server://localhost:9093/workshop"/>
    <JDBCDataSource Name="p13n_trackingDataSource" Targets="cgServer"
    JNDIName="p13n.trackingDataSource" PoolName="cgJMSPool-nonXA"/>
    <JDBCDataSource Name="p13nDataSource" Targets="cgServer"
    JNDIName="p13n.sequencerDataSource;p13n.dataSyncDataSource;p13n.entitlementsDataSource" PoolName="cgJMSPool-nonXA"/>
    <JDBCTxDataSource Name="portalFrameworkPool" Targets="cgServer"
    EnableTwoPhaseCommit="false"
    JNDIName="portalFrameworkPool;contentDataSource;weblogic.jdbc.jts.commercePool" PoolName="portalPool"/>
    <JDBCTxDataSource Name="cgDataSource" Targets="cgServer"
    EnableTwoPhaseCommit="true"
    JNDIName="cgDataSource;cgSampleDataSource" PoolName="cgPool"/>
    <JDBCTxDataSource Name="cgDataSource-nonXA" Targets="cgServer"
    EnableTwoPhaseCommit="true"
    JNDIName="cgDataSource-nonXA;weblogic.jdbc.jts.ebusinessPool" PoolName="cgJMSPool-nonXA"/>
    <JDBCTxDataSource Name="bpmArchDataSource" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="bpmArchDataSource" PoolName="bpmArchPool"/>
    <JDBCTxDataSource Name="pprtlserviceds" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="pprtlserviceds" PoolName="pprtlservicep"/>
    <JDBCTxDataSource Name="pprtlcustomerds" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="pprtlcustomerds" PoolName="pprtlcustomerp"/>
    <JDBCTxDataSource Name="pprtlapplomsds" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="pprtlapplomsds" PoolName="pprtlapplomsp"/>
    <JDBCTxDataSource Name="pprtlelecomsds" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="pprtlelecomsds" PoolName="pprtlelecomsp"/>
    <JDBCTxDataSource Name="cgDataSource1" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="cgDataSource1" PoolName="cgPool"/>
    <JDBCTxDataSource Name="cgDataSource2" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="cgDataSource2" PoolName="cgPool"/>
    <JDBCTxDataSource Name="cgDataSource3" Targets="cgServer"
    EnableTwoPhaseCommit="true" JNDIName="cgDataSource3" PoolName="cgPool"/>
    <JTA Name="ldplatform" TimeoutSeconds="500"/>
    </Domain>

  • How ro run a sample report in oracle9i reports?

    Hi,
    I just installed oracle9i release 2 (v9.0.2.0.1) and like to run a sample report. all the configurations are default (automatically configured when install). I found the server name rep_solaris03 in reports/conf. The port no is from the portlist of the mid_tier server.
    There are some reports in ORACLE_HOME/reports/samples/demo and I used following URL to run it:
    http://myserver.domain:1950/reports/samples/demo/rwservlet?scott/tiger@iasdb+report=test.rdf+server=rep_solaris03+destype=cache+desformat=pdf
    but I get error "the page can't be displayed" . Could you help me to figure out what's wrong?
    Thanks

    Hi
    First make sure the Report servlet and server are up and running. Try
    http://hostname:port/reports and http://hostname:port/reports/rwservlet and
    http://hostname:port/reports/rwservlet/showjobs?server=(name of server)
    Make sure the port you are specifying is correct. Reports provide following ear file in iAS for demos:
    reports_demo.ear - used in OC4J_Demos instance
    They are under $ORACLE_HOME/reports/j2ee directory.Make sure OC4J_Demos instance is up and running.
    Thanks
    Rohit

  • How to run a sample Jolt client

    Can any one explain me how to run a sample jolt client.
    Iam trying to run the following jolt client code ToUpper.java at the command prompt but I am getting the following error.I am getting the same error when i run the Jrepository Applet RE.html.
    D:\ToUpper>javac ToUpper.java
    D:\ToUpper>java ToUpper
    bea.jolt.SessionException: Cannot connect to any //localhost:3050.
    Reason:NwHdlr: Network Error: chkauth: J_CHECKAUTH FAILED
    at bea.jolt.JoltSessionAttributes.getDomainInfoJoltSessionAttributes.java:584)
    at bea.jolt.JoltSessionAttributes.checkAuthenticationLevel(JoltSessionAttributes.java:507)
    at ToUpper.main(ToUpper.java:20).
    I have the tlistener running and provided apppassword and userpassword as my System login password where I have the complete Tuxedo Installation(server and client). Please see the attached sample jolt client program I am trying to run. I am not sure what configuration Settings I need to do.
    ToUpper.java
    /* Copyright 1996 BEA Systems, Inc. All Rights Reserved */
    import bea.jolt.*;
    public class ToUpper
    public static void main (String[] args)
    JoltSession session;
    JoltSessionAttributes sattr;
    JoltRemoteService toupper;
    JoltTransaction trans;
    String userName=null;
    String userPassword=null;
    String appPassword=null;
    String userRole="myapp";
    String outstr;
              try{
    sattr = new JoltSessionAttributes();
    sattr.setString(sattr.APPADDRESS, "//GVC3ZA03TESTING:3050");
    switch (sattr.checkAuthenticationLevel())
    case JoltSessionAttributes.NOAUTH:
    break;
    case JoltSessionAttributes.APPASSWORD:
    appPassword = "123456"//"appPassword";
    break;
    case JoltSessionAttributes.USRPASSWORD:
    userName = "myname";
    userPassword = "123456";
    appPassword = "123456";
    break;
    sattr.setInt(sattr.IDLETIMEOUT, 300);
    session = new JoltSession(sattr, userName, userRole,
    userPassword, appPassword);
    toupper = new JoltRemoteService ("TOUPPER", session);
    toupper.setString("STRING", "hello world");
    toupper.call(null);
    outstr = toupper.getStringDef("STRING", null);
    if (outstr != null)
    System.out.println(outstr);
    session.endSession();
    System.exit(0);
              }catch(Exception e){
              e.printStackTrace();
    } // end main
    } // end ToUpper

    Hi Todd,
    I am not getting the jcheckauthentication error now as i changed the port no. to the port where JSL is running.Now I am getting this error.Also find the ULOG contents pasted below.
    D:\bea\tuxedo9.1\samples\jolt\ToUpper>java ToUpper
    Authentication Level set To :0
    Exception caught error no is:6
    bea.jolt.ServiceException: TPENOENT - no entry found
    at bea.jolt.JoltRemoteService.decodeCALL(JoltRemoteService.java:460)
    at bea.jolt.JoltRemoteService.call(JoltRemoteService.java:345)
    at bea.jolt.JoltRemoteService.call(JoltRemoteService.java:267)
    at ToUpper.main(ToUpper.java:39)
    I have checked the jrepository file and also the Applet window for the service defination(TOUPPER)but still its not recognizing the service.Is there some configuration thing I have missed out before running JOLT client.
    ULOG File Contents
    132947.GVC3ZA03TESTING!JSH.4000.2464.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name ''; client name 'myapp'"
    132956.GVC3ZA03TESTING!WSL.432.5308.0: WSNAT_CAT:1196: INFO: Terminating handlers in preparation for shutdown
    132956.GVC3ZA03TESTING!WSL.432.5308.0: WSNAT_CAT:1197: INFO: Exiting system
    132956.GVC3ZA03TESTING!JSL.2644.2356.0: JOLT_CAT:1506: "INFO: Terminating Jolt administration services in preparation for shutdown"
    132956.GVC3ZA03TESTING!JSL.2644.2356.0: JOLT_CAT:1196: "INFO: Terminating handlers in preparation for shutdown"
    132956.GVC3ZA03TESTING!JSH.4000.2464.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name 'jolt'; client name 'joltadmin'"
    132956.GVC3ZA03TESTING!JSL.2644.2356.0: JOLT_CAT:1197: "INFO: Exiting system"
    132956.GVC3ZA03TESTING!DMADM.5844.5348.0: CMDGW_CAT:1655: INFO: DMADMSVR is exiting
    132959.GVC3ZA03TESTING!BBL.3216.4372.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    133021.GVC3ZA03TESTING!tmloadcf.6104.3164.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133021.GVC3ZA03TESTING!tmloadcf.6104.3164.-2: CMDTUX_CAT:872: INFO: TUXCONFIG file D:\bea\tuxedo9.1\samples\jolt\ToUpper\tuxconfig has been updated
    133028.GVC3ZA03TESTING!BBL.6140.5124.0: 02-01-2007: Tuxedo Version 9.1, 32-bit, Patch Level (none)
    133028.GVC3ZA03TESTING!BBL.6140.5124.0: LIBTUX_CAT:262: INFO: Standard main starting
    133028.GVC3ZA03TESTING!DMADM.4928.1868.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133028.GVC3ZA03TESTING!DMADM.4928.1868.0: LIBTUX_CAT:262: INFO: Standard main starting
    133028.GVC3ZA03TESTING!DMADM.4928.1868.0: CMDGW_CAT:3149: INFO: BDMCONFIG environment variable not set. Using $APPDIR/BDMCONFIG
    133028.GVC3ZA03TESTING!DMADM.4928.1868.0: CMDGW_CAT:3761: INFO: Using version 2 BDMCONFIG, 3DES is enabled.
    133028.GVC3ZA03TESTING!JSL.5608.6088.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133028.GVC3ZA03TESTING!JSL.5608.6088.0: LIBTUX_CAT:262: INFO: Standard main starting
    133028.GVC3ZA03TESTING!JSL.5608.6088.0: INFO: JOLT Listener version-BEA Jolt 9.1
    133028.GVC3ZA03TESTING!JSL.5608.6088.0: JOLT_CAT:1563: "INFO: Serial Number : <454493271161-2140437240256>, Expiration Date : <2007-02-15>"
    133028.GVC3ZA03TESTING!JSL.5608.6088.0: JOLT_CAT:1564: "INFO: Licensee : <BEA Evaluation Customer>"
    133029.GVC3ZA03TESTING!JSH.6028.5748.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133029.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1030: "INFO: Jolt Handler joining application"
    133029.GVC3ZA03TESTING!JSH.6028.5748.-2: INFO: JOLT Handler version-BEA Jolt 9.1
    133029.GVC3ZA03TESTING!JREPSVR.3476.4980.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133029.GVC3ZA03TESTING!JREPSVR.3476.4980.0: LIBTUX_CAT:262: INFO: Standard main starting
    133029.GVC3ZA03TESTING!JREPSVR.3476.4980.0: Current version: BEA Jolt 9.1
    133029.GVC3ZA03TESTING!JREPSVR.3476.4980.0: Repository "D:\bea\tuxedo9.1\udataobj\jolt\repository\jrepository" (16 records) is writable.
    133029.GVC3ZA03TESTING!WSL.3292.4892.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133029.GVC3ZA03TESTING!WSL.3292.4892.0: LIBTUX_CAT:262: INFO: Standard main starting
    133029.GVC3ZA03TESTING!WSH.2568.3772.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133029.GVC3ZA03TESTING!WSH.2568.3772.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    133029.GVC3ZA03TESTING!WSH.5764.3836.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    133029.GVC3ZA03TESTING!WSH.5764.3836.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    133242.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    133300.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name ''; client name 'myapp'"
    133300.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    133359.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name ''; client name 'myapp'"
    133456.GVC3ZA03TESTING!JSH.6028.5748.-2: Fldid32(ACCOUNT_ID) failed for INQUIRY: LIBFML_CAT:8: ERROR: Unknown field name. Maybe FIELDTBLS32 is not set properly.
    133612.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    143325.GVC3ZA03TESTING!JSH.6028.5748.-2: Fldid(SAMOUNT) failed for DEPOSIT: LIBFML_CAT:11: ERROR: Cannot find or open field table. Maybe FIELDTBLS is not set properly.
    144116.GVC3ZA03TESTING!WSL.3292.4892.0: WSNAT_CAT:1196: INFO: Terminating handlers in preparation for shutdown
    144116.GVC3ZA03TESTING!WSL.3292.4892.0: WSNAT_CAT:1197: INFO: Exiting system
    144116.GVC3ZA03TESTING!JSL.5608.6088.0: JOLT_CAT:1506: "INFO: Terminating Jolt administration services in preparation for shutdown"
    144116.GVC3ZA03TESTING!JSL.5608.6088.0: JOLT_CAT:1196: "INFO: Terminating handlers in preparation for shutdown"
    144116.GVC3ZA03TESTING!JSH.6028.5748.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name 'jolt'; client name 'joltadmin'"
    144116.GVC3ZA03TESTING!JSL.5608.6088.0: JOLT_CAT:1197: "INFO: Exiting system"
    144116.GVC3ZA03TESTING!DMADM.4928.1868.0: CMDGW_CAT:1655: INFO: DMADMSVR is exiting
    144119.GVC3ZA03TESTING!BBL.6140.5124.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    144142.GVC3ZA03TESTING!tmloadcf.2668.3316.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144142.GVC3ZA03TESTING!tmloadcf.2668.3316.-2: CMDTUX_CAT:872: INFO: TUXCONFIG file D:\bea\tuxedo9.1\samples\jolt\ToUpper\tuxconfig has been updated
    144148.GVC3ZA03TESTING!BBL.4144.4376.0: 02-01-2007: Tuxedo Version 9.1, 32-bit, Patch Level (none)
    144148.GVC3ZA03TESTING!BBL.4144.4376.0: LIBTUX_CAT:262: INFO: Standard main starting
    144148.GVC3ZA03TESTING!DMADM.4436.5968.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!DMADM.4436.5968.0: LIBTUX_CAT:262: INFO: Standard main starting
    144148.GVC3ZA03TESTING!DMADM.4436.5968.0: CMDGW_CAT:3149: INFO: BDMCONFIG environment variable not set. Using $APPDIR/BDMCONFIG
    144148.GVC3ZA03TESTING!DMADM.4436.5968.0: CMDGW_CAT:3761: INFO: Using version 2 BDMCONFIG, 3DES is enabled.
    144148.GVC3ZA03TESTING!JSL.5072.2444.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!JSL.5072.2444.0: LIBTUX_CAT:262: INFO: Standard main starting
    144148.GVC3ZA03TESTING!JSL.5072.2444.0: INFO: JOLT Listener version-BEA Jolt 9.1
    144148.GVC3ZA03TESTING!JSL.5072.2444.0: JOLT_CAT:1563: "INFO: Serial Number : <454493271161-2140437240256>, Expiration Date : <2007-02-15>"
    144148.GVC3ZA03TESTING!JSL.5072.2444.0: JOLT_CAT:1564: "INFO: Licensee : <BEA Evaluation Customer>"
    144148.GVC3ZA03TESTING!JSH.5856.5268.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1030: "INFO: Jolt Handler joining application"
    144148.GVC3ZA03TESTING!JSH.5856.5268.-2: INFO: JOLT Handler version-BEA Jolt 9.1
    144148.GVC3ZA03TESTING!JREPSVR.2952.1248.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!JREPSVR.2952.1248.0: LIBTUX_CAT:262: INFO: Standard main starting
    144148.GVC3ZA03TESTING!JREPSVR.2952.1248.0: Current version: BEA Jolt 9.1
    144148.GVC3ZA03TESTING!JREPSVR.2952.1248.0: Repository "D:\bea\tuxedo9.1\udataobj\jolt\repository\jrepository" (16 records) is writable.
    144148.GVC3ZA03TESTING!WSL.3040.5488.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!WSL.3040.5488.0: LIBTUX_CAT:262: INFO: Standard main starting
    144148.GVC3ZA03TESTING!WSH.5740.2764.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!WSH.5740.2764.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    144148.GVC3ZA03TESTING!WSH.1784.5448.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144148.GVC3ZA03TESTING!WSH.1784.5448.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    144157.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    144207.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name ''; client name 'myapp'"
    144226.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    144229.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    144518.GVC3ZA03TESTING!WSL.3040.5488.0: WSNAT_CAT:1196: INFO: Terminating handlers in preparation for shutdown
    144518.GVC3ZA03TESTING!WSL.3040.5488.0: WSNAT_CAT:1197: INFO: Exiting system
    144518.GVC3ZA03TESTING!JSL.5072.2444.0: JOLT_CAT:1506: "INFO: Terminating Jolt administration services in preparation for shutdown"
    144518.GVC3ZA03TESTING!JSL.5072.2444.0: JOLT_CAT:1196: "INFO: Terminating handlers in preparation for shutdown"
    144518.GVC3ZA03TESTING!JSH.5856.5268.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name 'jolt'; client name 'joltadmin'"
    144518.GVC3ZA03TESTING!JSL.5072.2444.0: JOLT_CAT:1197: "INFO: Exiting system"
    144519.GVC3ZA03TESTING!DMADM.4436.5968.0: CMDGW_CAT:1655: INFO: DMADMSVR is exiting
    144522.GVC3ZA03TESTING!BBL.4144.4376.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    144537.GVC3ZA03TESTING!tmloadcf.4892.4980.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144537.GVC3ZA03TESTING!tmloadcf.4892.4980.-2: CMDTUX_CAT:872: INFO: TUXCONFIG file D:\bea\tuxedo9.1\samples\jolt\ToUpper\tuxconfig has been updated
    144543.GVC3ZA03TESTING!BBL.5440.4548.0: 02-01-2007: Tuxedo Version 9.1, 32-bit, Patch Level (none)
    144543.GVC3ZA03TESTING!BBL.5440.4548.0: LIBTUX_CAT:262: INFO: Standard main starting
    144543.GVC3ZA03TESTING!DMADM.1016.6128.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!DMADM.1016.6128.0: LIBTUX_CAT:262: INFO: Standard main starting
    144543.GVC3ZA03TESTING!DMADM.1016.6128.0: CMDGW_CAT:3149: INFO: BDMCONFIG environment variable not set. Using $APPDIR/BDMCONFIG
    144543.GVC3ZA03TESTING!DMADM.1016.6128.0: CMDGW_CAT:3761: INFO: Using version 2 BDMCONFIG, 3DES is enabled.
    144543.GVC3ZA03TESTING!JSL.1796.5232.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!JSL.1796.5232.0: LIBTUX_CAT:262: INFO: Standard main starting
    144543.GVC3ZA03TESTING!JSL.1796.5232.0: INFO: JOLT Listener version-BEA Jolt 9.1
    144543.GVC3ZA03TESTING!JSL.1796.5232.0: JOLT_CAT:1563: "INFO: Serial Number : <454493271161-2140437240256>, Expiration Date : <2007-02-15>"
    144543.GVC3ZA03TESTING!JSL.1796.5232.0: JOLT_CAT:1564: "INFO: Licensee : <BEA Evaluation Customer>"
    144543.GVC3ZA03TESTING!JSH.3164.4076.-2: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!JSH.3164.4076.-2: JOLT_CAT:1030: "INFO: Jolt Handler joining application"
    144543.GVC3ZA03TESTING!JSH.3164.4076.-2: INFO: JOLT Handler version-BEA Jolt 9.1
    144543.GVC3ZA03TESTING!JREPSVR.860.2916.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!JREPSVR.860.2916.0: LIBTUX_CAT:262: INFO: Standard main starting
    144543.GVC3ZA03TESTING!JREPSVR.860.2916.0: Current version: BEA Jolt 9.1
    144543.GVC3ZA03TESTING!JREPSVR.860.2916.0: Repository "D:\bea\tuxedo9.1\udataobj\jolt\repository\jrepository" (16 records) is writable.
    144543.GVC3ZA03TESTING!WSL.2596.4404.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!WSL.2596.4404.0: LIBTUX_CAT:262: INFO: Standard main starting
    144543.GVC3ZA03TESTING!WSH.3508.5136.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!WSH.3508.5136.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    144543.GVC3ZA03TESTING!WSH.4288.5676.0: 02-01-2007: Tuxedo Version 9.1, 32-bit
    144543.GVC3ZA03TESTING!WSH.4288.5676.0: WSNAT_CAT:1030: INFO: Work Station Handler joining application
    144548.GVC3ZA03TESTING!JSH.3164.4076.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"
    144634.GVC3ZA03TESTING!JSH.3164.4076.-2: JOLT_CAT:1198: "WARN: Forced shutdown of client; user name ''; client name 'myapp'"
    144734.GVC3ZA03TESTING!JSH.3164.4076.-2: JOLT_CAT:1043: "ERROR: tpacall() call failed, tperrno = 6"

  • Run a sample JSP in eclipse

    I want to run a sample JSP code in eclipse. Can anyone tell how to add server in Eclipse 3.1. And from where to get the server. I have heard that Tomcat 5.0 can be used. Can anyone provide some solution,

    RishiDugar wrote:
    I had tried this, thats when I get the version mismatch error. I am not very clear on the compatible version of Apache and Eclipse. Can u help...STOP! stop posting and go online
    there are many versions of eclipse and tomcat
    many compatibility issues, etc.
    now go through a tutorial
    you're wasting your time here

  • I try to run oracle sample,but error appear ,how can i avoid the error

    after installing database and sample,i tried to run the sample ,but error appeared
    D:\app\yu\product\11.2.0\dbhome_1\OCI\samples>bcmake.bat
    Please set environment variable BORLAND_HOME
    how to get borland compier?
    why used borland compier? i think most developer use visual studio .
    please tell me how to compile the given sample by oracle?
    thanks
    Edited by: user12070477 on 2013-5-8 下午8:44
    Edited by: user12070477 on 2013-5-9 下午8:20

    Check this support document for update and restore errors. Resolve iOS update and restore errors - Apple Support
    Looks like that can be a hardware error, but go ahead and follow the other steps in the document.

  • The way to run a sample.

    I installed Flash Media Server 2, Flash 5, Extension Manager,
    Dreamweaver 8 both in "C:\Program Files\Macromedia" directory. I
    uncompressed "fms2_sample_apps.zip" in applications directory. But
    I don't know how to run these sample.
    I readed " Tutorial 1: Recording a Stream" but don't
    understand "add an embedded Video object by selecting New Video
    from the library's Options menu" sentence and thens.
    Please help me!
    Thanks very much!

    Hi Xian,
    What system are you running this code on and are you using the LabVIEW Real-Time Module? There is a presentation online on Optimizing and Benchmarking Real-Time code with useful related links as well as other articles in the DevZone on things like Benchmarking an Application Using LabVIW Real-Time and DAQmx.
    As you can see, this is not a simple question, so take a look at the information in these links and see if you can narrow down what in your code is running slowly and how much you might be able to improve the speed.
    Regards,Stephen S.
    National Instruments
    Applications Engineering

  • Problem running the sample adf demo

    Hi,
    I'm a new user of JDeveloper and trying to use ADF Faces.
    I followed the instructions to setup ADF faces in JDeveloper.
    While trying to run the sample demo provided(adffacesdemo), I get the following error messages
    Error: "http://java.sun.com/jsf/core" is not a registered TLD namespace.
    Error: Unable to load taghandler class: http://java.sun.com/jsf/core
    Error: "http://xmlns.oracle.com/adf/faces/EA14/html" is not a registered TLD namespace.
    and many more errors of this sort.
    Now I have managed to succesfully run JSF applications in JDeveloper without using ADF faces. No problems with that.
    I have no clue as to why these errors are coming.
    Any help is appreciated.
    thanks,
    Rashmi

    Hi,
    I'm a new user of JDeveloper and trying to use ADF Faces.
    I followed the instructions to setup ADF faces in JDeveloper.
    While trying to run the sample demo provided(adffacesdemo), I get the following error messages
    Error: "http://java.sun.com/jsf/core" is not a registered TLD namespace.
    Error: Unable to load taghandler class: http://java.sun.com/jsf/core
    Error: "http://xmlns.oracle.com/adf/faces/EA14/html" is not a registered TLD namespace.
    and many more errors of this sort.
    Now I have managed to succesfully run JSF applications in JDeveloper without using ADF faces. No problems with that.
    I have no clue as to why these errors are coming.
    Any help is appreciated.
    thanks,
    Rashmi

  • RuntimeException when running javafx sample StopWatch on raspberry pi

    Hi ..
    I installed JDK 8 (with JavaFX) for ARM Early Access on my raspberry pi ,when i am trying to run a sample app i am getting this exception
    Exception in thread "main" java.lang.RuntimeException: java.lang.UnsatisfiedLinkError: Can't load library: /opt/jdk1.8.0/jre/lib/arm/libglass.so
         at com.sun.javafx.tk.quantum.QuantumToolkit.startup(QuantumToolkit.java:325)
         at com.sun.javafx.application.PlatformImpl.startup(PlatformImpl.java:122)
         at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:163)
         at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:47)
         at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.UnsatisfiedLinkError: Can't load library: /opt/jdk1.8.0/jre/lib/arm/libglass.so
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1846)
         at java.lang.Runtime.load0(Runtime.java:792)
         at java.lang.System.load(System.java:1060)
         at com.sun.glass.utils.NativeLibLoader.loadLibraryFullPath(Unknown Source)
         at com.sun.glass.utils.NativeLibLoader.loadLibraryInternal(Unknown Source)
         at com.sun.glass.utils.NativeLibLoader.loadLibrary(Unknown Source)
         at com.sun.glass.ui.Application.loadNativeLibrary(Unknown Source)
         at com.sun.glass.ui.Application.loadNativeLibrary(Unknown Source)
         at com.sun.glass.ui.gtk.GtkApplication$1.run(Unknown Source)
         at com.sun.glass.ui.gtk.GtkApplication$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication.<clinit>(Unknown Source)
         at com.sun.glass.ui.gtk.GtkPlatformFactory.createApplication(Unknown Source)
         at com.sun.glass.ui.Application.run(Unknown Source)
         at com.sun.javafx.tk.quantum.QuantumToolkit.startup(QuantumToolkit.java:315)
         ... 5 more
    any idea why this is happening ?
    Edited by: chandu0101 on Jan 8, 2013 7:14 PM

    there is a typo in my command :( , i am missing letter 'm' in platform . Thank you :)
    Edited by: chandu0101 on Jan 10, 2013 4:29 PM
    Edited by: chandu0101 on Jan 12, 2013 11:10 AM

  • Newbie trying to run JUnit sample

    Hi All
    I'm learning java with a view to replacing ColdFusion with J2EE back ends for the Flex apps that I create.
    At the moment I am trying to create a JUnit test harness for my sample model class.
    I am trying to run the sample maths class that is included in the download.
    If I try this command:
    (please note I have most likely got the package name and syntax slightly wrong as I am doing this from memory as I am at work not home)
    java junit.samples.maths.TestAll
    I got an error as I had expected. I thin try:
    java -classpath ../junit-4.4.jar junit.samples.maths.testAll
    this time I get another unexpected result:
    NoClassDefFoundError
    I am getting the same problem in my very simple test class that at the moment is just a Hello World class that extends TestCase. it compiles fine (so it obviously found the TestCase class) but again can't run.
    What am I doing wrong? I appreciate that you might need more details but I can't give them just yet.
    Can I put the junit-4.4.jar somewhere within my JDK directory so that I don't need to add a classpath argument to compile / run?
    Sorry for the basic questions, I hope someone can help.
    Thanks
    Giles

    Thanks for that. I'm slightly confused by the -callspath argument in your example:
    ".;./juni4.4.jar"
    Looking at the docs this seems to be saying the current directory AND the jar. If I remove the .; at the start it doesn't work. Is this because it overrides the default ( just ".") and just looks in the jar and then doesn't find the AllTests class that I am trying to run?
    Many thanks

  • Plz help about,  Running Wallet sample without CAD

    I want to run Wallet sample without (CAD)CardReader
    1. I have append follwing in the wallet.scr
    a. powerup;
    b. select instller applet and id as per given in
    UserGuide
    c. powerdown;
    step a and b i have append at the starting of the file
    and step c. at the end
    2. started cref
    3. Run apduttol wallet.scr in other Dos window
    It is giving ouput like
    establising connection to localhost to port 9025
    and other ASCII commands(APDU commands)
    But not asking anything to input like debit/credit?
    plz, tell me how to run wallet applet without card
    Thanks
    Pramod

    I am running the sample wallet program.
    through scriptgen i got wallet.scr file
    i added two line at top of the wallet.scr file
    powerup;
    // Select the installer applet
    0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x0c 0x06 0x7F;
    I got this(0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x0c 0x06) from wallet.opt file i.e. wallet applet id
    i appended powerdown;
    In one command window i am starting cref
    c:\wallet>cref -o wallet.out
    another window i am executing apdutool
    c:\wallet\javacard>apdutool wallet.scr
    Java Card 2.2 ApduTool (version 0.20)
    Copyright 2002 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
    Opening connection to localhost on port 9025.
    Connected.
    Received ATR = 0x3b 0xf0 0x11 0x00 0xff 0x00
    Some ASCII text like CLA: .. SW:
    cref closed automatically.
    i don't know what is happening.
    But not asking anything to input like debit/credit?
    plz, tell me how to run wallet applet without card
    Subhashini

Maybe you are looking for

  • Std web services

    Hi, Can you please provide the Std web services available for Purchase order creation and Goods receipt creation? Is any link where i can check for this related information? Thanks Srini

  • HT1620 Can I update iOS 7.1 in my iPhone 8 gb

    Can I update iOS 7.1 in my iPhone 4 8 gb

  • Migrating System Center Databases from cluster to Standalone

    Hi We have been advised to migrate all our System Center SQL DB's (mainly ConfigMgr, OpsMgr, ServiceMgr and Scorch) which are currently running on mostly 4 nodes SQL clusters (with different other business services and impacting the System Center Per

  • How to exit from aplication

    My application has to be closed when i click logout button. I am not using servlets. When I click logout button the session should get invalidated and also the browser is to be closed. I am using two framsets. Topframeset and bottom frameset. In the

  • Just purchased MBP with OSX 10.8.5....

    I bought this off of eBay and I love it. I also purchased a old iMac that has Snow Leopard 10.6.3 on it. I read that when you purchase and download the OS through the App Store that you can put it on all of your computers. Since the MBP came with it