EJB deployment in clustering

The clustering document seems to indicate that (cluster-awared) EJBs
          should only be deployed
          (by placing the the jar files in the /applications directory) on the
          Administration Server, (not to each
          individual WL server makes up the cluster), and assign the 'target'
          attribute to the 'cluster' created on
          the Admimistration Server,, rather individual servers that are mapped to
          each WL server in the cluster.
          It seems to be working, but what if I want to only deploy some of
          (cluster-awared) EJBs to some of the
          WL servers in the cluster, which is a feasible, although not
          recommended, configuration, indicated by
          the clustering related document at BEA,
          Can somebody confirm both of these to me?
          thanks
          Xiaodong
          

Xiaodong Zhou wrote:
          > The clustering document seems to indicate that (cluster-awared) EJBs
          > should only be deployed
          > (by placing the the jar files in the /applications directory) on the
          > Administration Server, (not to each
          > individual WL server makes up the cluster), and assign the 'target'
          > attribute to the 'cluster' created on
          > the Admimistration Server,, rather individual servers that are mapped to
          > each WL server in the cluster.
          Not true. You shouldn't deploy it on the admin server. Instead in the
          application attribute of the bean you should give a comma delimited list of
          servers that you want to deploy the bean on.
          > It seems to be working, but what if I want to only deploy some of
          > (cluster-awared) EJBs to some of the
          > WL servers in the cluster, which is a feasible, although not
          > recommended, configuration, indicated by
          > the clustering related document at BEA,
          It will work as long as stubs are available on all the servers in the
          cluster.
          -- Prasad
          >
          > Can somebody confirm both of these to me?
          >
          > thanks
          >
          > Xiaodong
          

Similar Messages

  • JNDI / EJB deployment and clustering

    I'm aware that replication isn't supported for stateful EJBs. But the
              "serialization of the handle isn't supported" statement has me concerned.
              So I'm looking for a little clarification on this scenario:
              Let's say I've got a stateful session bean, which is accessed from a
              servlet. For performance reasons, you want to find the colocated instance -
              the smart stub should do this, right? To have it colocated in all
              instances, then I need to deploy it into each server of the cluster. This
              essentially bind()/rebind()'s (whichever call the container does during a
              deploy operation) the EJB n times. Does each of those JNDI bind/rebind
              calls "overwrite" the previous one, or does the replicated JNDI tree somehow
              "keep" all the entries?
              What happens if I bind/rebind "non-cluster enabled" objects into the JNDI
              tree in each server to the same name (like a reference data table - doesn't
              really need to be an RMI object, one per server is fine)? Will they get
              "overwritten"? Should I need to take into account the server name when
              binding into the tree, and then also use that for subsequent lookups?
              Thanks for any input!
              --Jason
              

    Guys,
    Thanks for the information.
    The problem was that classpath, some other packages required for the Bean
    were not in the weblogic\classes directory.
    so that was it.
    Thanks
    /selvan
    Murali Krishna Devarakonda wrote in message
    <7qjkr1$7dl$[email protected]>...
    Are you using the HOT DEPLOY feature(startweblogic.bat does it)?
    Then you could go to the WebLogic Console, select the Bean, and Redploy.
    You could also do it from a command line utility "weblogic.deploy".
    If you didn't start the server with the hot deploy, you need to restartyour
    server after any changes.
    You should read the weblogic docs on the Hot Deploy feature. A different
    classloader is used for it. Also, the standard weblogic classpath cannot
    coexist with it.
    Hot Deploy uses: (assuming your weblogic installation is in D:/WebLogic
    D:\WebLogic\classes/boot
    It will throw an exception if you have D:\weblogic\classes or
    D:\WebLogic\lib\weblogicaux.jar in the system classpath. You need to use
    the weblogic.classpath instead.
    Regards,
    Murali Krishna Devarakonda
    Tamilselvan Ramasamy <[email protected]> wrote in message
    news:7qi0ln$kpc$[email protected]..
    Hello,
    I have created bunch of EJB Components and deployed for WLS4.0 using the
    following way. It works fine under WLS4.0
    To compile java code -> javac *.java
    Create SER file -> java weblogic.ejb.utils.DDCreator -d .
    DeploymentDescriptor.txt
    Create JAR file -> jar cmf manifest Bean.jar /directory
    EJBC and deployment -> java weblogic.ejbc -d /targetDirectory Bean.jar
    and also add an entry in the welogic.properties file
    weblogic.ejb.deploy= ...
    When I do the samething in the WLS4.5, it doesn't work, first of all,
    JNDI
    is not finding the home interface. It throws a naming Exception
    please give me an idea hw do I deploy my Beans in the WLS4.5 using the
    command line option. I don't have Visual Cafe to do that automatically.So
    I
    have to do that manually.
    Thanks
    /selvan
    Captura Software Inc
    [email protected]

  • EJB & Servlet deployment in Clustered Env.

              Hi,
              I have made a cluster of 3 weblogic servers. I would like to send a request to one
              server (e.g. http://myserver1:7001/TestServlet). The servlet utilizes an EJB which
              is not located and not deployed on myserver1 , but on other 2 servers in the cluster.
              The algorithm is round-robin. It gives me a lot of errors (Impl... classes not found
              etc etc).
              Do I have to deploy everything on all the servers?
              If I do that, the request is not routed to other servers. Since the servlet finds
              the EJB locally, it never goes to the other servers, regardless of the algorithm.
              I have set up the "home-is-clusterable" and all other relevant properties for EJB
              deployment.
              Any ideas??
              Sharad
              

    If the ejb is deployed on the server that is looking for the ejb, then it
              won't go network to use the ejb. That is a "big" WL optimization, and helps
              quite a bit for most apps.
              If you want to segregate the ejb and web functionality, you should probably
              consider running two distinct clusters (in 5.1 parlance).
              I suggest putting web and ejb together though and clustering that. Latency
              is lower. Scalability is not particularly affected. Configuration is much
              simpler.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "Sharad Joshi" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Hi,
              >
              > I have made a cluster of 3 weblogic servers. I would like to send a
              request to one
              > server (e.g. http://myserver1:7001/TestServlet). The servlet utilizes an
              EJB which
              > is not located and not deployed on myserver1 , but on other 2 servers in
              the cluster.
              > The algorithm is round-robin. It gives me a lot of errors (Impl... classes
              not found
              > etc etc).
              >
              > Do I have to deploy everything on all the servers?
              > If I do that, the request is not routed to other servers. Since the
              servlet finds
              > the EJB locally, it never goes to the other servers, regardless of the
              algorithm.
              > I have set up the "home-is-clusterable" and all other relevant properties
              for EJB
              > deployment.
              >
              > Any ideas??
              >
              > Sharad
              

  • EJB deployment descriptors in clustered environment

              I was wondering how EJB deployment descriptor settings work in a clustered environment. Are the deployment descriptors per WebLogic instance they are deployed in or the entire clustered environment? For example, if my descriptor for a stateless session ejb has max-beans-in-free-pool set to 5 and I deploy this stateless ejb in 4 WebLogic instances of one cluster, does this mean that there will be a max of 5 instance of this bean in the free pool for the entire cluster or will there be a max of 20 (5 per WebLogic instance and 4 WebLogic instances in the cluster) instances of this bean for the entire cluster?
              Thanks,
              Bryan
              

    Those settings are per server instance.
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              +1.617.623.5782
              WebLogic Consulting Available
              "Bryan Dixon" <[email protected]> wrote in message
              news:3a6b51a0$[email protected]..
              >
              > I was wondering how EJB deployment descriptor settings work in a clustered
              environment. Are the deployment descriptors per WebLogic instance they are
              deployed in or the entire clustered environment? For example, if my
              descriptor for a stateless session ejb has max-beans-in-free-pool set to 5
              and I deploy this stateless ejb in 4 WebLogic instances of one cluster, does
              this mean that there will be a max of 5 instance of this bean in the free
              pool for the entire cluster or will there be a max of 20 (5 per WebLogic
              instance and 4 WebLogic instances in the cluster) instances of this bean for
              the entire cluster?
              >
              > Thanks,
              > Bryan
              >
              

  • ExportException+StubNotFoundException in Clustered EJB Deployment

              Hi All,
              I'm a Newbie to WebLogic and would appreciate help in solving my problem.
              I am running WLS 5.1sp6 on NT4 and am trying to implement a two server cluster on one machine.
              The cluster runs fine, but as soon as I try to deploy our EJBs in the cluster level properties file I get the exceptions listed in the attached log.
              In a standalone environment the EJBs function flawlessly but not in a cluster.
              Notice that the EJB is successfully deployed to the server but the exception crops up a little further down the track.
              The only unusual thing about the environment I can think of is the WebLogic CLASSPATH is disabled.
              The EJB deployment descriptor contains:
              <clustering-descriptor>
              <home-is-clusterable>True</home-is-clusterable>
              <stateless-bean-is-clusterable>True</stateless-bean-is-clusterable>
              </clustering-descriptor>
              Any ideas?
              Thanks in advance,
              Andrew
              [weblogic.log]
              

              Hi all,
              It seems it was a classpath problem ...I put the ejb jar file in the java classpath and now it works like a charm.
              Thanks for the tip Chris!
              Andrew
              "Chris Jones" <[email protected]> wrote:
              >
              >Hi,
              >
              >Sounds like a classpath problem. The cluster is trying to instantiate the EJB but the stub is not in the weblogicclasspath. I&#8217;m not sure what you mean when you say it is disabled.
              >
              >Hope this helps,
              >
              >Chris
              >
              >"Andrew Quinan" <[email protected]> wrote:
              >>
              >>
              >>
              >>Hi All,
              >>
              >>I'm a Newbie to WebLogic and would appreciate help in solving my problem.
              >>
              >>I am running WLS 5.1sp6 on NT4 and am trying to implement a two server cluster on one machine.
              >>
              >>The cluster runs fine, but as soon as I try to deploy our EJBs in the cluster level properties file I get the exceptions listed in the attached log.
              >>
              >>In a standalone environment the EJBs function flawlessly but not in a cluster.
              >>Notice that the EJB is successfully deployed to the server but the exception crops up a little further down the track.
              >>
              >>The only unusual thing about the environment I can think of is the WebLogic CLASSPATH is disabled.
              >>
              >>The EJB deployment descriptor contains:
              >><clustering-descriptor>
              >> <home-is-clusterable>True</home-is-clusterable>
              >> <stateless-bean-is-clusterable>True</stateless-bean-is-clusterable>
              >></clustering-descriptor>
              >>
              >>Any ideas?
              >>
              >>Thanks in advance,
              >>Andrew
              >
              

  • EJB Deployment Question

    If your servlets are running in the same instance as your EJBs, do you
              need to make the EJBs clusterable (i.e. set the deployment descriptor
              properties)? We have the same EJBs deployed on each server (5.1 SP8)
              and we have been getting conflict handler errors for each EJB when we
              start the second server (shown below)
              Wed Aug 01 09:05:37 CEST 2001:<I> <ConflictHandler> ConflictStop
              com.es.messaging.ESMessageQueueManagerHome_EO:com.es.messaging.ESMessageQueueManagerBeanEOImpl
              (from
              [email protected]:[7001,7001,7002,7002,7001,-1])
              Support tells us that if EJBs are deployed on every server in a cluster,
              then they MUST be configured to be clusterable. Why is that? Since
              they are running in the same JVM as the servlets, we don't want EJB load
              balancing or fault tolerance.. I would think that the non-clusterable
              EJBs would not be added to the the cluster-wide JNDI. Also, we have
              deployed this way in SP 5 and 6.0 SP2 and we never got any conflict
              errors. If we do need to make them clusterable, can someone explain
              why? Thanks.
              Kirk
              

    If you're using WLS 9.x, then I would package the ejb-client-jar as a library.
    If you're using an older version, then you have the 2 choices you mentioned (packaging it in each war file or putting in on the classpath.)
    The advantage of the classpath is you have the file in only 1 place. The disadvantage is you must restart the server to update it.
    Placing it in each webapp means you have N copies of the jar file, but you'll be able to take an update by just redeploying the webapp not restarting the entire server.
    WLS 9.x's libraries give you the best of both worlds. You only manage 1 copy of the file, but you do not need to restart the server. You can also have multiple versions of a given library.
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Starting up j2ee and EJB deployment tool on Windows 98

    I will start off this question with an apology if it is too stupid,
    basic, or placed in the wrong group. I am relatively new to the world
    of Java and even newer to the world of Server-side Java and EJBs.
    However, I am plugging away.
    I am using my trusty 4 year old system with Windows 98 second edition
    to dabble with Server-side Java and EJB applications. I am using
    Tomcat 4.0 as my server. When I try and start the j2ee server or the
    EJB deployment tool I get the following scrolling messages:
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Syntax error
    Syntax error
    Syntax error
    Out of environment space
    Bad command or file name
    I have tried to adjust the memory settings in the DOS window with no
    success. My question has three parts:
    1) Can these applications be run using Windows 98 and if so what are
    the exact DOS window memory settings for this?
    2) Where exactly can I find the documentation that specifies this?
    (please be specific as possible as I have read the readme.txt files
    supplied with j2ee)
    3) Should this and similar questions be posted in another
    group/section?
    I truly appreciate anyone's help with this.
    Sincerely,
    Tim

    You're going to have a lot of pain unless you upgrade to Windows 2000 or XP.
    In the mean time, set your environment size much larger (google for "Out of
    environment space") and use WinOne from http://www.cia.com.au/luke/ ...
    that's how I scraped by on Windows 98 for a while.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Tim" <[email protected]> wrote in message
    news:[email protected]..
    I will start off this question with an apology if it is too stupid,
    basic, or placed in the wrong group. I am relatively new to the world
    of Java and even newer to the world of Server-side Java and EJBs.
    However, I am plugging away.
    I am using my trusty 4 year old system with Windows 98 second edition
    to dabble with Server-side Java and EJB applications. I am using
    Tomcat 4.0 as my server. When I try and start the j2ee server or the
    EJB deployment tool I get the following scrolling messages:
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Out of environment space
    Syntax error
    Syntax error
    Syntax error
    Out of environment space
    Bad command or file name
    I have tried to adjust the memory settings in the DOS window with no
    success. My question has three parts:
    1) Can these applications be run using Windows 98 and if so what are
    the exact DOS window memory settings for this?
    2) Where exactly can I find the documentation that specifies this?
    (please be specific as possible as I have read the readme.txt files
    supplied with j2ee)
    3) Should this and similar questions be posted in another
    group/section?
    I truly appreciate anyone's help with this.
    Sincerely,
    Tim

  • 5.1, VisualAge, EJB Deployment, JAR Files, NT4, Win2000, Solaris

     

    Note - the original post was only to w.d.i.environment.
    Here's a transcript of a run that failed.
    help...
    The messed up thing is that it WORKS on my machine, but not on the other
    machines. I've gone as far as reinstalling onto another machine,
    mapping the same folders to the same drive letters, and copying the
    resource files -- in effect, creating an identical setup -- and still
    have problems.
    Fri Jan 12 13:36:15 PST 2001:<I> <WebLogicServer> Read global properties
    n:\weblogic.va\weblogic.properties
    Fri Jan 12 13:36:15 PST 2001:<I> <WebLogicServer> Read per-server
    properties n:\weblogic.va\myserver\weblogic.properties
    Fri Jan 12 13:36:15 PST 2001:<I> <Logging> FileLogger initialized.
    Fri Jan 12 13:36:15 PST 2001:<I> <WebLogicServer> ************ WebLogic
    Server (5.1.0 Service Pack 6 09/20/2000 21:03:19 #84511) 'myserver' from
    directory path n:/weblogic.va
    Fri Jan 12 13:36:15 PST 2001:<I> <WebLogicServer> ************ (c) 1995,
    1996, 1997, 1998 WebLogic, Inc., (c) 1999 BEA Systems, Inc.
    Fri Jan 12 13:36:15 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.swapIntervalSecs', current value: '10'
    Fri Jan 12 13:36:15 PST 2001:<I> <Config> Property name:
    'weblogic.jms.ConnectionConsumer', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.enforceClientCert', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.login.readTimeoutMillis', current value: '5000'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.bindAddr', current value: 'localhost'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.propertiesFile', current value:
    'n:/weblogic.va\weblogic.properties'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadCheckSecs', current value: '-1'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.authRealmName', current value: 'WebLogic Server'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.SSLHandler.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.startupFailureIsFatal', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.http.keepAliveSecs', current value: '15'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.servlet.classpath', current value:
    'N:/bobcat/weblogic/servletclasses'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.tunneling.clientPingSecs', current value: '45'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.defaultWebApp', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStoreDir', current value: 'session_db'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.perServerPropertiesFile', current value:
    'n:/weblogic.va\myserver\weblogic.properties'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.maxQueueExpansionSize', current value: '10'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.queue', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.invalidationIntervalSecs', current value: '60'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.persistence', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.realm.cache.user.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.rmi.dgc.callSystemGC', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.maxTransactedDurableSubscribers', current value: '0'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.weight', current value: '100'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.connectionPoolArgs', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.disableGuest', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStorePool', current value: ''
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.URLAclFile', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.percentSocketReaders', current value: '33'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.zac.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jdbc.TXDataSource', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.DNSName', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.ejb.deploy', current value:
    'n:/bobcat/weblogic/serverclasses/bobcat.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_admin.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_adunit.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_community.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_customer.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_preview.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_memberaccountprofile.jar,
    n:/bobcat/weblogic/serverclasses/bobcat_affiliate.jar'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.workspace.showUserKeysOnly', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.allow', current value:
    '[weblogic.allow.read.weblogic.workspace=everyone
    weblogic.allow.write.weblogic.workspace=everyone
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.AdminA=guest
    weblogic.allow.execute.weblogic.servlet=everyone ]'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.listenPort', current value: '80'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.allow', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadOnModify', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.io.fileSystem', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.startupArgs', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jdbc.enableLogFile', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.domain', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.realm.debug', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.clustering.enable', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.shutdownArgs', current value:
    '[weblogic.system.shutdownArgs.VisualAge= ]'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.rmi.startupClass', current value:
    '[weblogic.rmi.startupClass.RMI
    Registry=weblogic.rmi.internal.RegistryImpl ]'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.keepAlive.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.jdbc.connTimeoutSecs', current value: '120'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.name', current value: 'myserver'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.sessionIDLength', current value: '52'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.helpPageURL', current value:
    'd:\ibmvjava2\ide\project_resources\WebLogic Server/docs/adminhelp/'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.multicastPort', current value: '-1'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.key.server', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.rmi.startupArgs', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.topicSessionPool', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.home', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.documentRoot', current value:
    'n:/bobcat/weblogic/public_html/'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadOnModifyRecursive', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.errorPage', current value:
    '[weblogic.httpd.errorPage.500=/shared/siteerror.jsp
    weblogic.httpd.errorPage.404=/shared/notfound.jsp ]'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.certificate.authority3', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.administrativePort', current value: '0'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.certificate.authority2', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.startupClass', current value:
    '[weblogic.system.startupClass.cacheResetListener=com.fl.listener.CacheResetListener
    weblogic.system.startupClass.cachePreload=com.fl.util.lookup.CodeTable
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.nonPrivGroup', current value: 'nobody'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.multicastTTL', current value: '1'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.nonBlockingExecuteThreadCount', current value: '2'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.home', current value: 'n:/weblogic.va'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.https.keepAliveSecs', current value: '60'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jndi.transportableObjectFactories', current value: ''
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.certificateCacheSize', current value: '3'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.tunneling.clientTimeoutSecs', current value: '40'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jdbc.DataSource', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.maxLogFileSizeKBytes', current value: '0'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.nonPrivUser', current value: 'nobody'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.zac.publishRoot', current value: 'exports'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.clientRootCA', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.defaultLoadAlgorithm', current value: 'round-robin'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.administrator.phone', current value: '(None)'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jdbc.connectionPool', current value:
    '[weblogic.jdbc.connectionPool.AdminA=url=jdbc20:oracle:thin:@172.16.3.10:1521:ADMINDBT,driver=oracle.jdbc.driver.OracleDriver,loginDelaySecs=0,initialCapacity=4,maxCapacity=80,capacityIncrement=2,allowShrinking=true,shrinkPeriodMins=15,refreshMinutes=10,testTable=dual,props=user=devbc1;password=devbc1;
    weblogic.jdbc.connectionPool.SearchA=url=jdbc20:oracle:thin:@10.1.2.41:1521:SRCHDBP,driver=oracle.jdbc.driver.OracleDriver,loginDelaySecs=0,initialCapacity=3,maxCapacity=80,capacityIncrement=2,allowShrinking=true,shrinkPeriodMins=15,refreshMinutes=10,testTable=dual,props=user=devbc1;password=devbc1;
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.debug', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jdbc.logFileName', current value:
    'n:/weblogic.va\myserver\jdbc.log'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.dnsName', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.requireAuthentication', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.multicastAddress', current value: '224.0.10.10'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.defaultSecureProtocol', current value: 't3s'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.realm.cache.auth.enable', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.executeThreadCount', current value: '10'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.comment', current value: 'Weblogic Server
    Session Tracking Cookie'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.tableNamePrefix', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.connectionPool', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.shutdownClass', current value:
    '[weblogic.system.shutdownClass.VisualAge=weblogic.integration.visualage.server.Server
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.defaultServlet', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.name', current value: 'mycluster'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.defaultProtocol', current value: 't3'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.postTimeoutSecs', current value: '30'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.group', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.tunnelingenabled', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.realm.cache.caseSensitive', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.certificate.server', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.mimeType', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.logRotationBeginTime', current value: ''
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.webApp', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.minPasswordLen', current value: '4'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.connectionFactoryArgs', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStoreType', current value: 'file'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.cacheEntries', current value: '1024'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.queueCompactionPeriod', current value: '10'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.certificate.authority', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.resource.MailSession', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.maxAgeSecs', current value: '-1'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.login.readTimeoutMillisSSL', current value: '25000'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.cluster.enable', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.SSL.ciphersuites', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.indexFiles', current value:
    'index.html,index.htm,index.jsp'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.password', current value: '[weblogic.password.system=********
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.enableLogFile', current value: 'true'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.enableReverseDNSLookups', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.indexDirectories', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.maxLogFileSize', current value: '0'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.logFile', current value:
    'n:/weblogic.va\myserver\weblogic.log'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.timeoutSecs', current value: '3600'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.logRotationType', current value: 'size'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.logFileFormat', current value: 'common'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.perClusterPropertiesFile', current value:
    'n:/weblogic.va\myserver\weblogic.properties'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.security.key.export.lifespan', current value: '500'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.CORBA.connectionPool', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'java.system.property', current value: '[]'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.logFileName', current value:
    'n:/weblogic.va\myserver\access.log'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.defaultMimeType', current value: 'text/plain'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.debug.httpd.servlet', current value: 'false'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.connectionFactoryName', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.system.SSLListenPort', current value: '81'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.logRotationPeriodMins', current value: '1440'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.URLResource', current value: 'null'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.name', current value: 'WebLogicSession'
    Fri Jan 12 13:36:16 PST 2001:<I> <Config> Property name:
    'weblogic.jms.quiescent', current value: 'false'
    Fri Jan 12 13:36:17 PST 2001:<I> <Config> Property name:
    'weblogic.httpd.register', current value:
    '[weblogic.httpd.register.ADMIN=com.fl.control.handler.AdminServlet
    weblogic.httpd.register.site/surveyreward=com.fl.control.handler.site.rwds.SurveyRewardServlet
    weblogic.httpd.register.Admin/secure=com.fl.control.handler.SecureAdminServlet
    weblogic.httpd.register.123qpwoeiruty321=com.fl.control.handler.FileServlet
    weblogic.httpd.register.affiliatelanding=com.fl.control.handler.affiliate.AffiliateExtranetLanding
    weblogic.httpd.register.site/Ecard=com.fl.control.handler.site.community.ECardServlet
    weblogic.httpd.register.client/secure/AcctRegLogin=com.fl.control.handler.client.regloginServlet
    weblogic.httpd.register.ADMIN/SECURE/DEACTMEM=com.fl.control.handler.admin.clientaccount.MemberDeactivationServlet
    weblogic.httpd.register.admin/secure/maintainpromotion=com.fl.control.handler.admin.marketing.MaintainPromotionServlet
    weblogic.httpd.register.site/ecard=com.fl.control.handler.site.community.ECardServlet
    weblogic.httpd.register.site/member/forgotemail=com.fl.control.handler.member.LegacyServlet
    weblogic.httpd.register.admin/Profile=com.fl.control.handler.admin.adminaccount.AdminProfileServlet
    weblogic.httpd.register.Site/test=com.fl.control.handler.preview.TestServlet
    weblogic.httpd.register.site/referfriend=com.fl.control.handler.site.community.ReferAFriendServlet
    weblogic.httpd.register.servletimages=weblogic.servlet.internal.InternalImageServlet
    weblogic.httpd.register.site/ShipDetail=com.fl.control.handler.site.rdctr.ShipDetailServlet
    weblogic.httpd.register.index.jsp=com.fl.control.handler.SiteServlet
    weblogic.httpd.register.AFFILIATE=com.fl.control.handler.AffiliateServlet
    weblogic.httpd.register.site/referfriendconf=com.fl.control.handler.site.community.ReferAFriendConfServlet
    weblogic.httpd.register.Site/preview=com.fl.control.handler.preview.PreviewServlet
    weblogic.httpd.register.site/search=com.fl.control.handler.site.search.SearchServlet
    weblogic.httpd.register.admin/MemberProfile=com.fl.control.handler.admin.adminaccount.AdminMemberProfileServlet
    weblogic.httpd.register.site/preview/mediaurl=com.fl.control.handler.preview.MediaURLServlet
    weblogic.httpd.register.affiliate/Reg2=com.fl.control.handler.affiliate.reg.AffiliateContactInfoServlet
    weblogic.httpd.register.affiliate/Reg1=com.fl.control.handler.affiliate.reg.AffiliateInfoServlet
    weblogic.httpd.register.site/PrizeDetail=com.fl.control.handler.site.rdctr.PrizeDetailServlet
    weblogic.httpd.register.site/RevAdd=com.fl.control.handler.site.revprev.RevAddServlet
    weblogic.httpd.register.affiliate=com.fl.control.handler.AffiliateServlet
    weblogic.httpd.register.admin/find=com.fl.control.handler.admin.adminaccount.AdminFindServlet
    weblogic.httpd.register.SITE/preview/chart=com.fl.control.handler.preview.ChartServlet
    weblogic.httpd.register.admin/secure/maintainsurveySave=com.fl.control.handler.admin.marketing.MaintainSurveySaveServlet
    weblogic.httpd.register.admin/secure/login=com.fl.control.handler.admin.adminaccount.AdminLoginServlet
    weblogic.httpd.register.Client/secure/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.client/secure/acctreglogin=com.fl.control.handler.client.regloginServlet
    weblogic.httpd.register.SITE/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.site/campaign=com.fl.control.handler.site.community.CampaignServlet
    weblogic.httpd.register.*.swf=weblogic.servlet.FileServlet
    weblogic.httpd.register.admin/secure/MaintainSurvey=com.fl.control.handler.admin.marketing.MaintainSurveyServlet
    weblogic.httpd.register.client=com.fl.control.handler.ClientServlet
    weblogic.httpd.register.Firstlook.cfm=com.fl.control.handler.affiliate.ColdFusionLinksServlet
    weblogic.httpd.register.affiliate/Login=com.fl.control.handler.affiliate.LoginServlet
    weblogic.httpd.register.admin/secure/reviews=com.fl.control.handler.admin.review.ReviewsServlet
    weblogic.httpd.register.Client=com.fl.control.handler.ClientServlet
    weblogic.httpd.register.linkshare=com.fl.control.handler.affiliate.LinkShareServlet
    weblogic.httpd.register.site/prizehome=com.fl.control.handler.site.rdctr.PrizeHomeServlet
    weblogic.httpd.register.affiliate/login=com.fl.control.handler.affiliate.LoginServlet
    weblogic.httpd.register.client/secure/BidMgrLogin=com.fl.control.handler.client.loginServlet
    weblogic.httpd.register.site/prizedetail=com.fl.control.handler.site.rdctr.PrizeDetailServlet
    weblogic.httpd.register.site/Survey=com.fl.control.handler.site.community.SurveyServlet
    weblogic.httpd.register.GetNewuserID.cfm=com.fl.control.handler.affiliate.ColdFusionLinksRegServlet
    weblogic.httpd.register.SITE/preview=com.fl.control.handler.preview.PreviewServlet
    weblogic.httpd.register.site/logincampaign=com.fl.control.handler.site.community.LoginCampaign
    weblogic.httpd.register.site/getpreviews=com.fl.control.handler.preview.GetPreviewsServlet
    weblogic.httpd.register.admin/secure/deactadm=com.fl.control.handler.admin.adminaccount.AdminDeactivationServlet
    weblogic.httpd.register.SITE/test=com.fl.control.handler.preview.TestServlet
    weblogic.httpd.register.affiliate/register=com.fl.control.handler.affiliate.reg.AffiliateAgreementServlet
    weblogic.httpd.register.CLIENT/secure/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.site/PrizeHome=com.fl.control.handler.site.rdctr.PrizeHomeServlet
    weblogic.httpd.register.site/orderconfirm=com.fl.control.handler.site.rdctr.OrderConfirmServlet
    weblogic.httpd.register.firstlook.cfm=com.fl.control.handler.affiliate.ColdFusionLinksServlet
    weblogic.httpd.register.AFFILIATE/secure=com.fl.control.handler.SecureAffiliateServlet
    weblogic.httpd.register.site/SearchResults=com.fl.control.handler.site.search.SearchResultsServlet
    weblogic.httpd.register.site/ReferFriend=com.fl.control.handler.site.community.ReferAFriendServlet
    weblogic.httpd.register.site/eCard=com.fl.control.handler.site.community.ECardServlet
    weblogic.httpd.register.AffiliateLanding=com.fl.control.handler.affiliate.AffiliateExtranetLanding
    weblogic.httpd.register.site/OrderConfirm=com.fl.control.handler.site.rdctr.OrderConfirmServlet
    weblogic.httpd.register.affiliate/secure/search=com.fl.control.handler.affiliate.maint.AffiliateSearchServlet
    weblogic.httpd.register.admin/secure/maintainpromotionsave=com.fl.control.handler.admin.marketing.MaintainPromotionSaveServlet
    weblogic.httpd.register.site/registercampaign=com.fl.control.handler.site.community.registercampaign
    weblogic.httpd.register.admin/secure=com.fl.control.handler.SecureAdminServlet
    weblogic.httpd.register.site/PARTNERS=com.fl.control.handler.site.redirector.partners
    weblogic.httpd.register.admin/memberparams=com.fl.control.handler.admin.sysparam.MaintainMemberParamServlet
    weblogic.httpd.register.site/partners=com.fl.control.handler.site.redirector.partners
    weblogic.httpd.register.site=com.fl.control.handler.SiteServlet
    weblogic.httpd.register.admin/memberprofile=com.fl.control.handler.admin.adminaccount.AdminMemberProfileServlet
    weblogic.httpd.register.site/member/wishlist=com.fl.control.handler.member.WishListServlet
    weblogic.httpd.register.admin/promopackage=com.fl.control.handler.admin.marketing.MaintainPromotionPackageServlet
    weblogic.httpd.register.admin/secure/MaintainSponsor=com.fl.control.handler.admin.sysparam.MaintainSponsorServlet
    weblogic.httpd.register.admin/secure/maintainfeaturedpreview=com.fl.control.handler.admin.preview.MaintainFeaturedPreview
    weblogic.httpd.register.Site/preview/chart=com.fl.control.handler.preview.ChartServlet
    weblogic.httpd.register.FirstLook.cfm=com.fl.control.handler.affiliate.ColdFusionLinksServlet
    weblogic.httpd.register.admin/Find=com.fl.control.handler.admin.adminaccount.AdminFindServlet
    weblogic.httpd.register.ADMIN/SECURE/DEACTADM=com.fl.control.handler.admin.adminaccount.AdminDeactivationServlet
    weblogic.httpd.register.admin/secure/MaintainPromotion=com.fl.control.handler.admin.marketing.MaintainPromotionServlet
    weblogic.httpd.register.Site/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.site/preview=com.fl.control.handler.preview.PreviewServlet
    weblogic.httpd.register.admin/secure/maintainsurvey=com.fl.control.handler.admin.marketing.MaintainSurveyServlet
    weblogic.httpd.register.affiliate/secure/maintdealterms=com.fl.control.handler.affiliate.maint.DealTermsMaintainServlet
    weblogic.httpd.register.Affiliate/secure=com.fl.control.handler.SecureAffiliateServlet
    weblogic.httpd.register.client/secure=com.fl.control.handler.SecureClientServlet
    weblogic.httpd.register.preview/mediaUrl=com.fl.control.handler.preview.MediaURLServlet
    weblogic.httpd.register.Shared=com.fl.control.handler.SharedServlet
    weblogic.httpd.register.client/secure/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.site/secure=com.fl.control.handler.SecureSiteServlet
    weblogic.httpd.register.default.cfm=com.fl.control.handler.affiliate.LinkShareServlet
    weblogic.httpd.register.Affiliate=com.fl.control.handler.AffiliateServlet
    weblogic.httpd.register.site/recommendation=com.fl.control.handler.member.RecommendationServlet
    weblogic.httpd.register.site/preview/chart=com.fl.control.handler.preview.ChartServlet
    weblogic.httpd.register.site/RegisterCampaign=com.fl.control.handler.site.community.RegisterCampaign
    weblogic.httpd.register.client/secure/acctregfm=com.fl.control.handler.client.regfmServlet
    weblogic.httpd.register.affiliate/Register=com.fl.control.handler.affiliate.reg.AffiliateAgreementServlet
    weblogic.httpd.register.site/addrating=com.fl.control.handler.site.rwds.AddRatingServlet
    weblogic.httpd.register.client/secure/Account=com.fl.control.handler.client.acctServlet
    weblogic.httpd.register.site/EnterCampaign=com.fl.control.handler.site.community.EnterCampagin
    weblogic.httpd.register.admin/secure/approvepreview=com.fl.control.handler.admin.preview.ApprovePreviewServlet
    weblogic.httpd.register.site/managepreview=com.fl.control.handler.preview.ManagePreviewServlet
    weblogic.httpd.register.site/member/login=com.fl.control.handler.member.LoginServlet
    weblogic.httpd.register.client/secure/Logout=com.fl.control.handler.client.logoutServlet
    weblogic.httpd.register.AFFILIATELANDING=com.fl.control.handler.affiliate.AffiliateExtranetLanding
    weblogic.httpd.register.affiliate/forgot=com.fl.control.handler.affiliate.ForgotPassServlet
    weblogic.httpd.register.affiliate/secure=com.fl.control.handler.SecureAffiliateServlet
    weblogic.httpd.register.affiliate/secure/MaintDealTerms=com.fl.control.handler.affiliate.maint.DealTermsMaintainServlet
    weblogic.httpd.register.admin/secure/MaintainPromotionSave=com.fl.control.handler.admin.marketing.MaintainPromotionSaveServlet
    weblogic.httpd.register.affiliate/Forgot=com.fl.control.handler.affiliate.ForgotPassServlet
    weblogic.httpd.register.affiliate/LogOut=com.fl.control.handler.affiliate.AffLogoutServlet
    weblogic.httpd.register.site/revprev=com.fl.control.handler.site.revprev.RevPrevServlet
    weblogic.httpd.register.CLIENT=com.fl.control.handler.ClientServlet
    weblogic.htt

  • Error while accessing EJB deployed in another app

    Hi,I have an EJB deployed in another application and was trying to access it from different application (both running on seperate weblogic server 5.1)when i do look-up like this : Hashtable hmRemote = new Hashtable(); hmRemote.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory"); hmRemote.put(Context.PROVIDER_URL, "http://localhost:7001/doc"); Hashtable hmLocal = new Hashtable(); hmLocal.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory"); hmLocal.put(Context.PROVIDER_URL, "http://localhost:7004/amit"); hmLocal.put(WLContext.DELEGATE_ENVIRONMENT, hmRemote); Context ctx = new InitialContext(hmLocal);I get following error on console :Wed May 02 12:28:30 CDT 2001:<I> <ConMan> Bootstrap unable to get a http connection to localhost/127.0.0.1Wed May 02 12:28:30 CDT 2001:<I> <ConMan> Bootstrap unable to get a http connection to localhost/127.0.0.1Exception caught in try javax.naming.CommunicationException [Root exception is java.net.ConnectException: No server found atHTTP://localhost:7001]Please help me.thanksamit

    I solved the problem or I learned the process. I forgot to add two jar files in tomcat shared library. It is working now. Thanks.

  • Oracle Application Server 10.1.3 EJB Deployment Error

    Hi ,
    I am keep getting following error when try to deploy my ear files in 10.1.3. standalone env.
    my ejb-jar.xml looks is
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
    <enterprise-beans>
    <session>
    <description>Session Facade Bean ( Stateless )</description>
    <display-name>FacadeBean</display-name>
    <ejb-name>FacadeBean</ejb-name>
    <home>com.sjrwmd.dmsap.ejb.FacadeBeanHome</home>
    <remote>com.sjrwmd.dmsap.ejb.FacadeBeanRemote</remote>
    <ejb-class>com.sjrwmd.dmsap.ejb.FacadeBean</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Bean</transaction-type>
    </session>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>FacadeBean</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>
    Your help appriciated
    Thank You
    Jigar
    2006-02-08 17:13:40.670 NOTIFICATION JMS Router is initiating ...
    2006-02-08 17:13:55.702 NOTIFICATION Application Deployer for dmsap STARTS.
    2006-02-08 17:13:55.733 NOTIFICATION Copy the archive to C:\JDev1013\j2ee\home\applications\dmsap.ear
    2006-02-08 17:13:55.733 NOTIFICATION Initialize ./applications\dmsap.ear begins...
    2006-02-08 17:13:55.733 NOTIFICATION Removing everything under: C:\JDev1013\j2ee\home\.\applications\dmsap
    2006-02-08 17:13:55.733 NOTIFICATION Auto-unpacking C:\JDev1013\j2ee\home\.\applications\dmsap.ear...
    2006-02-08 17:13:55.733 NOTIFICATION Unpacking dmsap.ear
    2006-02-08 17:13:55.733 NOTIFICATION Unjar C:\JDev1013\j2ee\home\.\applications\dmsap.ear in C:\JDev1013\j2ee\home\.\applications\dmsap
    2006-02-08 17:13:55.998 NOTIFICATION Done unpacking dmsap.ear
    2006-02-08 17:13:55.998 NOTIFICATION Finished auto-unpacking C:\JDev1013\j2ee\home\.\applications\dmsap.ear
    2006-02-08 17:13:56.045 NOTIFICATION Auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\dmsap-web.war...
    2006-02-08 17:13:56.045 NOTIFICATION Unpacking dmsap-web.war
    2006-02-08 17:13:56.045 NOTIFICATION Unjar C:\JDev1013\j2ee\home\applications\dmsap\dmsap-web.war in C:\JDev1013\j2ee\home\applications\dmsap\dmsap-web
    2006-02-08 17:13:56.498 NOTIFICATION Done unpacking dmsap-web.war
    2006-02-08 17:13:56.498 NOTIFICATION Finished auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\dmsap-web.war
    2006-02-08 17:13:56.498 NOTIFICATION Auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\uploaddirapp.jar...
    2006-02-08 17:13:56.498 NOTIFICATION Unpacking uploaddirapp.jar
    2006-02-08 17:13:56.498 NOTIFICATION Unjar C:\JDev1013\j2ee\home\applications\dmsap\uploaddirapp.jar in C:\JDev1013\j2ee\home\applications\dmsap\uploaddirapp
    2006-02-08 17:13:56.748 NOTIFICATION Done unpacking uploaddirapp.jar
    2006-02-08 17:13:56.748 NOTIFICATION Finished auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\uploaddirapp.jar
    2006-02-08 17:13:56.748 NOTIFICATION Auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\downloadfileapp.jar...
    2006-02-08 17:13:56.764 NOTIFICATION Unpacking downloadfileapp.jar
    2006-02-08 17:13:56.764 NOTIFICATION Unjar C:\JDev1013\j2ee\home\applications\dmsap\downloadfileapp.jar in C:\JDev1013\j2ee\home\applications\dmsap\downloadfileapp
    2006-02-08 17:13:56.967 NOTIFICATION Done unpacking downloadfileapp.jar
    2006-02-08 17:13:56.967 NOTIFICATION Finished auto-unpacking C:\JDev1013\j2ee\home\applications\dmsap\downloadfileapp.jar
    2006-02-08 17:13:56.983 NOTIFICATION Initialize ./applications\dmsap.ear ends...
    2006-02-08 17:13:56.983 NOTIFICATION Starting application : dmsap
    2006-02-08 17:13:56.983 NOTIFICATION Initializing ClassLoader(s)
    2006-02-08 17:13:56.983 NOTIFICATION Initializing EJB container
    2006-02-08 17:13:56.983 NOTIFICATION Loading connector(s)
    2006-02-08 17:13:57.295 NOTIFICATION Starting up resource adapters
    2006-02-08 17:13:57.295 NOTIFICATION Processing EJB module: dmsap-ejb.jar
    2006-02-08 17:13:57.405 ERROR J2EE EJB3027 [dmsap] An error occured deploying EJB module: com.evermind.server.ejb.deployment.InvalidEJBAssemblyException: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    2006-02-08 17:13:57.405 NOTIFICATION application : dmsap is in failed state
    Feb 8, 2006 5:13:57 PM com.evermind.server.Application setConfig
    WARNING: Application: dmsap is in failed state as initialization failedjava.lang.InstantiationException: Error initializing ejb-modules: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    06/02/08 17:13:57 oracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException: Error initializing ejb-modules: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    06/02/08 17:13:57      at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:510)
    06/02/08 17:13:57      at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:191)
    06/02/08 17:13:57      at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    06/02/08 17:13:57      at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    06/02/08 17:13:57      at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    06/02/08 17:13:57      at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
    06/02/08 17:13:57      at java.lang.Thread.run(Thread.java:534)
    06/02/08 17:13:57 Caused by: java.lang.InstantiationException: Error initializing ejb-modules: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    06/02/08 17:13:57      at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:1056)
    06/02/08 17:13:57      at com.evermind.server.ApplicationStateRunning.initializeApplication(ApplicationStateRunning.java:210)
    06/02/08 17:13:57      at com.evermind.server.Application.setConfig(Application.java:391)
    06/02/08 17:13:57      at com.evermind.server.Application.setConfig(Application.java:308)
    06/02/08 17:13:57      at com.evermind.server.ApplicationServer.addApplication(ApplicationServer.java:1771)
    06/02/08 17:13:57      at oracle.oc4j.admin.internal.ApplicationDeployer.addApplication(ApplicationDeployer.java:507)
    06/02/08 17:13:57      ... 6 more
    06/02/08 17:13:57 Caused by: com.evermind.server.ejb.deployment.InvalidEJBAssemblyException: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    06/02/08 17:13:57      at com.evermind.server.ejb.exception.ValidationExceptions.unableToLoadEJBClass(ValidationExceptions.java:36)
    06/02/08 17:13:57      at com.evermind.server.ejb.deployment.BeanDescriptor.initialize(BeanDescriptor.java:298)
    06/02/08 17:13:57      at com.evermind.server.ejb.deployment.ExposableBeanDescriptor.initialize(ExposableBeanDescriptor.java:158)
    06/02/08 17:13:57      at com.evermind.server.ejb.deployment.SessionBeanDescriptor.initialize(SessionBeanDescriptor.java:190)
    06/02/08 17:13:57      at com.evermind.server.ejb.deployment.EJBPackage.initialize(EJBPackage.java:814)
    06/02/08 17:13:57      at com.evermind.server.ejb.EJBContainer.postInit(EJBContainer.java:855)
    06/02/08 17:13:57      ... 11 more
    06/02/08 17:13:57 Caused by: oracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.defineClass(PolicyClassLoader.java:2268)
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.findLocalClass(PolicyClassLoader.java:1457)
    06/02/08 17:13:57      at oracle.classloader.SearchPolicy$FindLocal.getClass(SearchPolicy.java:167)
    06/02/08 17:13:57      at oracle.classloader.SearchSequence.getClass(SearchSequence.java:119)
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1660)
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1621)
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1606)
    06/02/08 17:13:57      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    06/02/08 17:13:57      at java.lang.Class.forName0(Native Method)
    06/02/08 17:13:57      at java.lang.Class.forName(Class.java:219)
    06/02/08 17:13:57      at com.evermind.server.ejb.deployment.BeanDescriptor.initialize(BeanDescriptor.java:296)
    06/02/08 17:13:57      ... 15 more
    06/02/08 17:13:57 Caused by: java.lang.UnsupportedClassVersionError: com.sjrwmd.dmsap.ejb.FacadeBean
    06/02/08 17:13:57      at java.lang.ClassLoader.defineClass0(Native Method)
    06/02/08 17:13:57      at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
    06/02/08 17:13:57      at oracle.classloader.PolicyClassLoader.defineClass(PolicyClassLoader.java:2224)
    06/02/08 17:13:57      ... 25 more
    2006-02-08 17:13:57.545 NOTIFICATION Application Deployer for dmsap FAILED.
    2006-02-08 17:13:57.545 NOTIFICATION Application UnDeployer for dmsap STARTS.
    2006-02-08 17:13:59.045 NOTIFICATION Removing all web binding(s) for application dmsap from all web site(s)
    2006-02-08 17:13:59.795 NOTIFICATION Application UnDeployer for dmsap COMPLETES.
    2006-02-08 17:13:59.795 WARNING java.lang.InstantiationException: Error initializing ejb-modules: [dmsap:dmsap-ejb:FacadeBean] - Unable to load ejb-class com.sjrwmd.dmsap.ejb.FacadeBean, see section 23.2 of the EJB 2.1 specificationoracle.classloader.util.AnnotatedClassFormatError: com.sjrwmd.dmsap.ejb.FacadeBean
         Invalid class: com.sjrwmd.dmsap.ejb.FacadeBean
         Loader: dmsap.root:0.0.0
         Code-Source: /C:/JDev1013/j2ee/home/applications/dmsap/dmsap-ejb.jar
         Configuration: <ejb> in C:\JDev1013\j2ee\home\applications\dmsap
         Dependent class: com.evermind.server.ejb.deployment.BeanDescriptor
         Loader: oc4j:10.1.3
         Code-Source: /C:/JDev1013/j2ee/home/lib/oc4j-internal.jar
         Configuration: <code-source> in META-INF/boot.xml in C:\JDev1013\j2ee\home\oc4j.jar

    A point of clarification: Using JDK 1.5, it compiles and "tries" to start, but then gives this error : Unable to load ejb-class com.MyTestEJB see section 23.2 of the EJB 2.1 specificationjava.lang.ExceptionInInitializerError: java.lang.NullPointerException
    There are other EJB which are deploying fine.
    I really can't tell why one is deploying but this one is not.
    Thanks

  • Can't access EJB deployed on remote OC4J - what am I doing wrong?

    I'm unable to access an EJB deployed on a remote OC4J instance (ie, part of a 9iAS installation on another machine vs local in JDeveloper).
    I've reverted to a stupid-simple EJB in hopes of getting it going prior to trying my actual code. The EJB works fine in JDev (9.0.3) - I 'run' the EJB to start the local OC4J instance, run my client code (generated via the "New Sample Java Client..." option in the Navigator context popup) and all is well.
    I then create an EAR file via the the "Create EJB Jar Deployment Profile..." context popup of the ejb-jar.xml node, followed by "Deploy to EAR file" from the context popup of the resulting ejb1.deploy node. I next "Deploy EAR File" via the "Oracle Enterprise Manager" that comes with 9iAS (the :1810 port). After successfully deploying, I modify my client code in JDeveloper, specifying the new connection information for the remote machine via the Hashtable constructor of InitialContext and attempt to run it. I've tried a number of Context.PROVIDER_URL forms, including: ormi://registered_pingable_host_name:23791/deployed_application_name
    ormi://registered_pingable_host_name:23791/session_deployment_name (from the <enterprise-beans><session-deployment name="xxx"/></enterprise-beans> section of my orion-ejb-jar.xml file, as per a tip in this forum)
    I've tried prefixing ormi:// with http:, but get no response whatesoever in this case.
    I've also tried it without the port number (this port number matches that in my remote OC4J's <oc4j_instance_home>/config/rmi.xml file).
    On the Context.SECURITY_PRINCIPAL and Context.SECURITY_CREDENTIALS settings, I've tried various values, generally using the 'admin' user, with passwords taken from:
    <oc4j_instance_home>/principals.xml
    <oc4j_instance_home>/application-deployments/application_name/principals.xml
    I've also tried matching the password in the jazn-data.xml, to no avail - this password appears encrypted anyway, but thought I'd give it a try on the off-chance that it was just a randomly-generated password - no go.
    I've also tried SCOTT/TIGER, anonymous, etc. Incidentally, the 'deactivated' attribute of the <user> tag is set to "false" in my principals.xml files.
    No matter what I do, I always get back "javax.naming.NamingException: Lookup error: java.net.ConnectException: Connection refused: connect"
    Additionally, I get this same message when I try to establish an Application Server Connection via JDev.
    Clearly, I'm missing something critical (and probably simple), but I can't for the life of me figure it out.
    Any help would be much appreciated!
    Thanks,
    Jim Stoll

    Ok, well this is a bit strange...
    3103 - 3103 also fails, and some experimentation has led me to find that any time that I specify a range smaller than 6 (3101 - 3106 works, 3101 - 3105, 3101-3101, 3103-3103, etc does not), the OC4J instance will not restart. I get "An error occurred while starting. The opmn request has failed. From opmn: HTTP/1.1 204 No Content Content-Length: 0 Content-Type: text/html Response: 0 of 1 processes started. Check opmn log files such as ipm.log and ons.log for detailed." in the OEM window (I specify the RMI port range, hit Apply, go to the OC4J instance home page, see that the Status is 'Down', hit Start, and get that message.) <ORACLE_HOME>/product/iasinfra/opmn/logs/ipm.log tells me:
    02/12/03 09:41:12 There is no rmi port left for starting an OC4J process. Please check oc4j's port property in OPMN's configuration file.
    02/12/03 09:41:12 start_proc: UID 3719788: failed to build args
    02/12/03 09:41:12 start_proc_req: failed to start a process in GID OC4JJim2, type: 2
    If I bump it up to 3101 - 3106 or higher, it starts right up. Running opmnadmin debug, as suggested by Venky (thanks Venky!), yields:
    PROCESS TABLE
    UID PID FLAGS TYPE STATUS REF HTTP AJP RMI JMS
    3654011 84 00000040 OC4J Alive 1 0 3005 3106 3206
    424987 604 00000000 Apache Alive 1 7777 0 0 0
    2932088 14849 00000000 OC4J Alive 1 0 3003 3103 3203
    3063160 14878 00000000 OC4J Alive 1 0 3001 3101 3201
    3194232 14906 00000000 OC4J Alive 1 0 3000 3105 3205
    3325304 14936 00000000 OC4J Alive 1 0 3002 3102 3202
    3456376 14964 00000000 OC4J Alive 1 0 3004 3104 3204
    Which is what I would expect, given the specified range of 3101-3106. Trying each of these ports in turn, I've found that I can hit the EJB successfully on 3106, but 3101 - 3105 all fail with:
    javax.naming.NamingException: Lookup error: javax.naming.AuthenticationException: No such domain/application: Project7_2; nested exception is:
         javax.naming.AuthenticationException: No such domain/application: Project7_2
         java.lang.Object com.evermind.server.rmi.RMIContext.lookup(java.lang.String)
              RMIContext.java:134
         java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
              InitialContext.java:350
         void Samplemypackage9.MySessionEJBClient1.main(java.lang.String[])
              MySessionEJBClient1.java:15
    I'm a little concerned about assuming the high-end of the range to be the active port on a regular basis (though thus far, among about 20 - 30 tries spaced over 20 - 30 minutes, it has been...) - I guess I can have my code loop through the range until it finds a good port or exhausts the list, but that seems a bit excessive.
    Can you think of a reason that my OC4J instance won't start with a range size of less than 6? I'm on 9iAS 9.0.2, if that makes any difference.
    Thanks,
    Jim

  • Memory leak in a client using EJBs deployed in a Bea Weblogic 10.0.0 cluste

    Hi all,
    We are having a memory leak in a client using stateless EJBs deployed in cluster. The client is a Tomcat 6.0.18 with java 6 but it is reproduced using Tomcat 5 with java 5. The client is calling a Weblogic Server 10.0 making
    calls to an EJB deployed in cluster that has two instances installed in two different machines.
    The client works fine if we shutdown one of the server instances and so when the client is using only one instance.
    Resuming the environment:
    Client Side:
    1 HP-Itanium machine with HP-UX.
    1 Tomcat 6 with java 6 (reproduced with java 5)
    Bea Weblogic client (wlclient.jar) for Weblogic 10.0.0
    Server Side:
    2 HP-Itanium machines with HP-UX
    Bea Weblogic Server 10.0.0 installed in both machines
    An unique domain
    Two Bea instances (one per machines) associated to a Bea Cluster
    EJBs deployed in both instances
    We have monitored the memory consumed in Tomcat and we have noticed that the VM memory PS OLD GEN grows up permanently when we make tests having the two server side Bea Instances up. We have extended
    the memory VM parameters in Tomcat client till 1G and it's only a way to delay the end: the free memory is empty, the GC is not able to free no more byte and the CPU is 100% consumed by the GC work. At the end Tomcat Client
    doesn't accept more http petitions and must be restarted.
    Besides, we have studied the VM memory in Tomcat using jmap and importing it using Eclipse Memory Analyzer. We have seen some strange memory blocks of several Mbytes that are always growing up and that are stored
    under data structures in the package com.sun.corba:
    com.sun.corba.se.impl.legacy.connection.SocketFactoryConnectionImpl (4.5Mb)
    |
    -> com.sun.corba.se.impl.transport.CorbaResponseWaitingRoomImpl
    |
    -> java.util.Hashtable
    |
    -> java.util.Hashtable$Entry
    |
    -> java.util.Hashtable$Entry
    -> java.util.Hashtable$Entry
    -> java.util.Hashtable$Entry
    Has anybody any idea about this problem?
    Thanks in advance.

    Hi all,
    We are having a memory leak in a client using stateless EJBs deployed in cluster. The client is a Tomcat 6.0.18 with java 6 but it is reproduced using Tomcat 5 with java 5. The client is calling a Weblogic Server 10.0 making
    calls to an EJB deployed in cluster that has two instances installed in two different machines.
    The client works fine if we shutdown one of the server instances and so when the client is using only one instance.
    Resuming the environment:
    Client Side:
    1 HP-Itanium machine with HP-UX.
    1 Tomcat 6 with java 6 (reproduced with java 5)
    Bea Weblogic client (wlclient.jar) for Weblogic 10.0.0
    Server Side:
    2 HP-Itanium machines with HP-UX
    Bea Weblogic Server 10.0.0 installed in both machines
    An unique domain
    Two Bea instances (one per machines) associated to a Bea Cluster
    EJBs deployed in both instances
    We have monitored the memory consumed in Tomcat and we have noticed that the VM memory PS OLD GEN grows up permanently when we make tests having the two server side Bea Instances up. We have extended
    the memory VM parameters in Tomcat client till 1G and it's only a way to delay the end: the free memory is empty, the GC is not able to free no more byte and the CPU is 100% consumed by the GC work. At the end Tomcat Client
    doesn't accept more http petitions and must be restarted.
    Besides, we have studied the VM memory in Tomcat using jmap and importing it using Eclipse Memory Analyzer. We have seen some strange memory blocks of several Mbytes that are always growing up and that are stored
    under data structures in the package com.sun.corba:
    com.sun.corba.se.impl.legacy.connection.SocketFactoryConnectionImpl (4.5Mb)
    |
    -> com.sun.corba.se.impl.transport.CorbaResponseWaitingRoomImpl
    |
    -> java.util.Hashtable
    |
    -> java.util.Hashtable$Entry
    |
    -> java.util.Hashtable$Entry
    -> java.util.Hashtable$Entry
    -> java.util.Hashtable$Entry
    Has anybody any idea about this problem?
    Thanks in advance.

  • Issues in looking up a ejb deployed on glassfish from tomcat.

    Hi all,
    I have followed the steps mentioned in the EJB FAQ in the glassfish site and was able to lookup a remote ejb deployed in glassfish from a standalone client.
    In case of standalone client, i set the appropriate jndi properties in the initial context as mentioned in the FAQ and added the 4 jars specified to the classpath of the application.
    It all worked perfectly well.
    But I attempted to do the same from a servlet running under tomcat.
    I set the appropriate jndi properties in the intial context and added 4 jars specified in the lib directory of the war file.
    But this did not turn out well and tomcat complained me with some servlet init errors.
    Then i searched through the web and found this posting from you:
    http://www.archivesat.com/GlassFish_Enterprise_JavaBeans_Developers/thread1399339.htm
    Then i created a folder called "shared/lib" under TOMCAT_HOME directory in my machine and ran the same example. Wow.....miraculously the application ran well.
    But i found that the "index.jsp" which i configured in the welcome file list does not appear now. But i was able to access the servlet without any problem. And the servlet was able to successfully lookup the ejb deployed in glassfish.
    Then i thought, let me try to access the ejb from a jsf application.
    Then i created a jsf application in netbeans 5.5.1 and tried to access the bean deployed in glassfish.
    (Note: the jsf application runs in tomcat 5.5.17 which is bundled with netbeans)
    OOPSS....
    Tomcat now complains me that it cannot compile the jsp page..
    This is the error i got...
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    C:\Documents and Settings\james\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\CityExplorer-WebClient1\org\apache\jsp\index_jsp.java:7: org.apache.jsp.index_jsp is not abstract and does not override abstract method getDependants() in org.apache.jasper.runtime.JspSourceDependent
    public final class index_jsp extends org.apache.jasper.runtime.HttpJspBase
    ^
    Generated servlet error:
    C:\Documents and Settings\james\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\CityExplorer-WebClient1\org\apache\jsp\index_jsp.java:12: getDependants() in org.apache.jsp.index_jsp cannot implement getDependants() in org.apache.jasper.runtime.JspSourceDependent; attempting to use incompatible return type
    found : java.lang.Object
    required: java.util.List
    public Object getDependants() {
    ^
    2 errors
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    Any ideas...
    Can you please help me.
    I've noticed that you were eagerly answering questions related to ejb lookup in many places.
    I feel there is some potential compatability issue between tomcat and glassfish...
    I request you to investigate on this and clarify the community with your response.
    Thanks in advance,
    James Selvakumar

    Thank you guys!
    I've found the answer myself.

  • How to access EJB deployed in JBOSS 4 from Creator

    Hello.
    I am trying to access EJBs deployed on JBOSS in order to develop a web app client, when I import the EJB set from Creator (sessions and entities packages in a jar file) I got the following error message....."No EJB set found in file....." .
    I presume there is an kind of xml file description specific for Sun App Server missing. I would like to know if there is other way to expose EJB in creator?....maybe write a config file by hand.
    I already read the tutorials related to EJB but those only use pre build EJB jars for Sun App Sserver.
    Also I read all the posted about JBoos and EJB in this forum but those are pretty general.
    By the way I have Delegate classes to access the EJB. How do I register my delegates in Creator in order to expose their methods?
    I�ll really appreciate some light in this matter.
    Thanks in advance!!!

    Hi,
    The below forum thread may help you :
    http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=51321
    Thanks,
    Runa.

  • Calling an EJB deployed in OC4J from Java Stored Proc in Oracle

    Hello!
    Trying to make a call to an EJB deployed in OCJ4 from a oracle java stored proc. After loaded orion.jar and crimson.jar lib into SCOTT schema, I can't get the JNDI Context working because of this error:
    ============================================
    javax.naming.NoInitialContextException: Cannot instantiate class:
    com.evermind.server.ApplicationClientInitialContextFactory. Root exception is
    java.lang.ClassNotFoundException:
    com/evermind/server/ApplicationClientInitialContextFactory
    at java.lang.Class.forName0(Class.java)
    at java.lang.Class.forName(Class.java)
    at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:45)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java)
    at javax.naming.InitialContext.init(InitialContext.java)
    at javax.naming.InitialContext.<init>(InitialContext.java)
    ===============================
    I did load the java with "loadjava" with on time with the "resolve" option and time time no option and still no working.
    Here is the EJB client code:
    =======================================
    import java.sql.*;
    import java.util.*;
    import javax.naming.*;
    import com.evermind.server.ApplicationClientInitialContextFactory;
    class EmpRemoteCall {
    public static void main(String[] args) {
    System.out.println(getEmpName());
    public static String getEmpName() {
    String ejbUrl = "java:comp/env/ejb/Emp";
    String username = "admin";
    String password = "admin";
    Hashtable environment = new Hashtable();
    environment.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.ApplicationClientInitialContextFactory");
    environment.put(Context.PROVIDER_URL, "ormi://127.0.0.1/testemp");
    environment.put(Context.SECURITY_PRINCIPAL, username);
    environment.put(Context.SECURITY_CREDENTIALS, password);
    //environment.put(Context.SECURITY_AUTHENTICATION, ServiceCtx.NON_SSL_LOGIN);
    //environment.put(javax.naming.Context.URL_PKG_PREFIXES, "oracle.aurora.jndi");
    com.kboum.sertir.essais.EmpHome homeInterface = null;
    try {
    Class.forName("com.evermind.server.ApplicationClientInitialContextFactory", true, ClassLoader.getSystemClassLoader());
    System.out.println("Creating an initial context");
    Context ic = new InitialContext(environment);
    System.out.println("Looking for the EJB published as 'java:comp/env/ejb/Emp'");
    homeInterface = (com.kboum.sertir.essais.EmpHome) ic.lookup(ejbUrl);
    catch (CommunicationException e) {
    System.out.println("Unable to connect: " + ejbUrl);
    e.printStackTrace();
    //System.exit(1);
    catch (NamingException e) {
    System.out.println("Exception occurred!");
    System.out.println("Cause: This may be an unknown URL, or some" +
    " classes required by the EJB are missing from your classpath.");
    System.out.println("Suggestion: Check the components of the URL," +
    " and make sure your project includes a library containing the" +
    " EJB .jar files generated by the deployment utility.");
    e.printStackTrace();
    //System.exit(1);
    catch (ClassNotFoundException e) {
    System.out.println("Unable to connect: " + ejbUrl);
    e.printStackTrace();
    //System.exit(1);
    try {
    System.out.println("Creating a new EJB instance");
    com.kboum.sertir.essais.Emp remoteInterface = homeInterface.findByPrimaryKey(Integer.valueOf("7369"));
    System.out.println(remoteInterface.getENAME());
    System.out.println(remoteInterface.getSAL());
    remoteInterface.setSAL(2);
    System.out.println(remoteInterface.getSAL());
    return remoteInterface.getENAME();
    catch (Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    return "error";
    null

    What I did to solve this problem was to
    create a simple RMI remote object that
    resides outside the database JVM and that
    serves as a proxy EJB client for your java
    stored procedure. The stored procedure can
    invoke a method on the remote RMI object
    which then looks up the EJBean's home
    interface and invokes the relevant method on
    the bean's remote interface, and relays any
    return values back to the java stored
    procedure.
    Hope this helps,
    Avi.
    null

Maybe you are looking for