Access Error = EJB + Glassfish + Netbeans

Hello
My situation: I have the following panel:
- Using Project: EJB Glashfish + v3 + Netbeans 6.8
- Platform: WEB
- Type of project: EAR
: I have a SessionBean called GenericDAO, which is the only one who knows the others sessionbeans and, through them, the persistence layers.
Needed to implement a new method in my GenericDAO. Something quite simple: get the object type and do a specific search in the corresponding SessionBean.
This new method was created pq no other existing method to satisfy my situation.
The problem: when I try to access this new method GenericDAO, Glassfish says he does not have permission. Simple as that.
Did another test: I created another method that did nothing, just returning 'null'. Returned the same error.
So if I use the methods already published, shows no problem.
If you need to implement a new method, at the execution, gives the error below.
Emphasizing:
- Every time I need to create a new method, it gives this error.
- I had to reimplement the entire project once cuz I could not resolve this error, and I think it can not be so.
So, any help is welcome.
Thank you. God bless
//class code
Cliente cc = (Cliente) dao.findTeste(); // que não faz anda, só retorna nulo. 
//Erro message: 
INFO: JACC Policy Provider: Failed Permission Check, context(WebHostMgr_Project/WebHostMgr_Project-ejb_jar)- permission((javax.security.jacc.EJBMethodPermission GenericDAO findTeste,Local,)) 
WARNING: A system exception occurred during an invocation on EJB GenericDAO method public java.lang.Object sessionbeans.GenericDAO.findTeste() 
javax.ejb.AccessLocalException: Client not authorized for this invocation. 
        at com.sun.ejb.containers.BaseContainer.preInvoke(BaseContainer.java:1801) 
        at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:188) 
        at com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate.invoke(EJBLocalObjectInvocationHandlerDelegate.java:84) 
        at $Proxy118.findTeste(Unknown Source) 
        at command.pages.PageClienteCommand.onExecute(PageClienteCommand.java:33) 
        at command.ForwardingCommand.execute(ForwardingCommand.java:23) 
        at servlets.Controller.processRequest(Controller.java:40) 
        at servlets.Controller.doGet(Controller.java:60) 
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) 
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) 
        at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1523) 
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279) 
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:188) 
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:641) 
        at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:97) 
        at com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.java:85) 
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:185) 
        at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:332) 
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:233) 
        at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:165) 
        at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791) 
        at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693) 
        at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954) 
        at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170) 
        at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135) 
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102) 
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88) 
        at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76) 
        at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53) 
        at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57) 
        at com.sun.grizzly.ContextTask.run(ContextTask.java:69) 
        at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330) 
        at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309) 
        at java.lang.Thread.run(Thread.java:619) 
  (...)

Hello
My situation: I have the following panel:
- Using Project: EJB Glashfish + v3 + Netbeans 6.8
- Platform: WEB
- Type of project: EAR
: I have a SessionBean called GenericDAO, which is the only one who knows the others sessionbeans and, through them, the persistence layers.
Needed to implement a new method in my GenericDAO. Something quite simple: get the object type and do a specific search in the corresponding SessionBean.
This new method was created pq no other existing method to satisfy my situation.
The problem: when I try to access this new method GenericDAO, Glassfish says he does not have permission. Simple as that.
Did another test: I created another method that did nothing, just returning 'null'. Returned the same error.
So if I use the methods already published, shows no problem.
If you need to implement a new method, at the execution, gives the error below.
Emphasizing:
- Every time I need to create a new method, it gives this error.
- I had to reimplement the entire project once cuz I could not resolve this error, and I think it can not be so.
So, any help is welcome.
Thank you. God bless
//class code
Cliente cc = (Cliente) dao.findTeste(); // que não faz anda, só retorna nulo. 
//Erro message: 
INFO: JACC Policy Provider: Failed Permission Check, context(WebHostMgr_Project/WebHostMgr_Project-ejb_jar)- permission((javax.security.jacc.EJBMethodPermission GenericDAO findTeste,Local,)) 
WARNING: A system exception occurred during an invocation on EJB GenericDAO method public java.lang.Object sessionbeans.GenericDAO.findTeste() 
javax.ejb.AccessLocalException: Client not authorized for this invocation. 
        at com.sun.ejb.containers.BaseContainer.preInvoke(BaseContainer.java:1801) 
        at com.sun.ejb.containers.EJBLocalObjectInvocationHandler.invoke(EJBLocalObjectInvocationHandler.java:188) 
        at com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate.invoke(EJBLocalObjectInvocationHandlerDelegate.java:84) 
        at $Proxy118.findTeste(Unknown Source) 
        at command.pages.PageClienteCommand.onExecute(PageClienteCommand.java:33) 
        at command.ForwardingCommand.execute(ForwardingCommand.java:23) 
        at servlets.Controller.processRequest(Controller.java:40) 
        at servlets.Controller.doGet(Controller.java:60) 
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) 
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) 
        at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1523) 
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:279) 
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:188) 
        at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:641) 
        at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:97) 
        at com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.java:85) 
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:185) 
        at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:332) 
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:233) 
        at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:165) 
        at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791) 
        at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693) 
        at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954) 
        at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170) 
        at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135) 
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102) 
        at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88) 
        at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76) 
        at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53) 
        at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57) 
        at com.sun.grizzly.ContextTask.run(ContextTask.java:69) 
        at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330) 
        at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309) 
        at java.lang.Thread.run(Thread.java:619) 
  (...)

Similar Messages

  • Error during JNDI lookup Accessing Remote EJB (access to web service restricted using declarative security model)

    Hello everyone,
    I developed a Web Service prototype accessing remote EJB using the EJB
    control with special syntax in the jndi-name attribute: @jws:ejb
    home-jndi-name="t3://10.10.245.70:7131/AccountDelegatorEJB"
    Everything works fine, but I get an error when I restrict access to my web
    service with a declarative security model by implementing steps provided in
    help doc:
    - Define the web resource you wish to protect
    - Define which security role is required to access the web resource
    - Define which users are granted the required security role
    - Configure WebLogic Server security for my web service(Compatibility
    Security/Users)
    I launch the service by entering the address in a web browser. When prompted
    to accept the digital certificate, click Yes, when prompted for network
    authentication information, enter username and password, navigate to the
    Test Form tab of Test View, invoke the method by clicking the button and I
    get the following exception:
    <error>
    <faultcode>JWSError</faultcode>
    <faultstring>Error during JNDI lookup from
    jndi:t3://10.10.245.70:7131/AccountDelegatorEJB[Lookup failed for
    name:t3://10.10.245.70:7131/AccountDelegatorEJB]</faultstring>
    <detail>
    <jwErrorDetail> weblogic.jws.control.ControlException: Error during JNDI
    lookup from jndi:t3://10.10.245.70:7131/AccountDelegatorEJB[Lookup failed
    for name:t3://10.10.245.70:7131/AccountDelegatorEJB] at
    weblogic.knex.control.EJBControlImpl.acquireResources(EJBControlImpl.java:27
    8) at
    weblogic.knex.context.JwsInternalContext.acquireResources(JwsInternalContext
    .java:220) at
    weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:260) at
    ibas.AccountControl.getTransactionHistory(AccountControl.ctrl) at
    ibas.GetSecure.retrieveVisaHistoryTxn(GetSecure.jws:64) </jwErrorDetail>
    </detail>
    </error>
    I have a simple Hello method as well in my WebService (which is also
    restricted) and it works fine, but remote EJB access doesn't. I tested my
    prototype on Weblogic 7.2 and 8.1 platforms - same result.
    Is that a bug or I am missing some additional configuration in order to get
    that working. Has anyone seen similar behavior? Is there a known resolution?
    Or a suggested way to work around the problem?
    Thank you.
    Andre

    Andre,
    It would be best if this issue is handled as an Eval Support case. Please
    BEA Customer Support at http://support.beasys.com along with the required
    files, and request that an Eval support case be created for this issue.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Andre Shergin" <[email protected]> wrote in message
    news:[email protected]...
    Anurag,
    I removed "t3", still get an error but a different one (Unable to create
    InitialContext:null):
    <error>
    <faultcode>JWSError</faultcode>
    <faultstring>Error during JNDI lookup from
    jndi://secuser1:[email protected]:7131/AccountDelegatorEJB[Unable to
    create InitialContext:null]</faultstring>
    <detail>
    <jwErrorDetail> weblogic.jws.control.ControlException: Error during JNDI
    lookup from
    jndi://secuser1:[email protected]:7131/AccountDelegatorEJB[Unable to
    create InitialContext:null] at
    weblogic.knex.control.EJBControlImpl.acquireResources(EJBControlImpl.java:27
    8) at
    weblogic.knex.context.JwsInternalContext.acquireResources(JwsInternalContext
    .java:220) at
    weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:260) at
    ibas.AccountControl.getTransactionHistory(AccountControl.ctrl) at
    ibas.GetVisaHistoryTransactions.getVisaHistoryTxn(GetVisaHistoryTransactions
    .jws:67) </jwErrorDetail>
    </detail>
    </error>
    Note: inter-domain communication is configured properly. The Web Service to
    remote EJB works fine without a declarative security.
    Any other ideas?
    Thank you for your help.
    Andre
    "Anurag" <[email protected]> wrote in message
    news:[email protected]...
    Andre,
    It seems you are using the URL
    jndi:t3://secuser1:[email protected]:7131/AccountDelegatorEJB
    whereas you should not be specifying the "t3:" protocol.
    The URL should be like
    jndi://secuser1:[email protected]:7131/AccountDelegatorEJB
    Please do let me know if you see any issues with this.
    Note that this will only allow you to access remote EJBs in the same WLS
    domain. For accessing EJBs on another domain, you need to configure
    inter-domain communication by
    following a few simple steps as mentioned at
    http://e-docs.bea.com/wls/docs81/ConsoleHelp/jta.html#1106135. This link has
    been provided in the EJB Control Workshop documentation.
    Regards,
    Anurag
    "Andre Shergin" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    I tried that before, it didn't help. I got similar error message:
    <error>
    <faultcode>JWSError</faultcode>
    <faultstring>Error during JNDI lookup from
    jndi:t3://secuser1:[email protected]:7131/AccountDelegatorEJB[Lookup
    failed for
    name:t3://secuser1:[email protected]:7131/AccountDelegatorEJB]</faultstr
    ing>
    <detail>
    <jwErrorDetail> weblogic.jws.control.ControlException: Error during JNDI
    lookup from
    jndi:t3://secuser1:[email protected]:7131/AccountDelegatorEJB[Lookup
    failed for
    name:t3://secuser1:[email protected]:7131/AccountDelegatorEJB] at
    weblogic.knex.control.EJBControlImpl.acquireResources(EJBControlImpl.java:27
    8) at
    weblogic.knex.context.JwsInternalContext.acquireResources(JwsInternalContext
    .java:220) at
    weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:260) at
    ibas.AccountControl.getTransactionHistory(AccountControl.ctrl) at
    ibas.GetSecure.retrieveVisaHistoryTxn(GetSecure.jws:64) </jwErrorDetail>
    </detail>
    </error>
    Anything else should I try?
    P.S. AccountDelegatorEJB, the remote EJB my Web Service calls is NOTaccess
    restricted.
    I hope there is a solution.
    Thanks,
    Andre
    "Raj Alagumalai" <[email protected]> wrote in message
    news:[email protected]...
    Andre,
    Can you try using the following url with username and password
    jndi://username:password@host:7001/my.resource.jndi.object ?
    once you add webapp level security, the authenticated is the user who
    invokes the EJB.
    http://e-docs.bea.com/workshop/docs81/doc/en/workshop/guide/controls/ejb/con
    CreatingANewEJBControl.html?skipReload=true
    has more info on using remote EJB's.
    Hope this helps.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Alla Resnik" <[email protected]> wrote in message
    news:[email protected]...
    Hello everyone,
    I developed a Web Service prototype accessing remote EJB using the EJB
    control with special syntax in the jndi-name attribute: @jws:ejb
    home-jndi-name="t3://10.10.245.70:7131/AccountDelegatorEJB"
    Everything works fine, but I get an error when I restrict access to my
    web
    service with a declarative security model by implementing steps
    provided
    in
    help doc:
    - Define the web resource you wish to protect
    - Define which security role is required to access the web resource
    - Define which users are granted the required security role
    - Configure WebLogic Server security for my web service(Compatibility
    Security/Users)
    I launch the service by entering the address in a web browser. Whenprompted
    to accept the digital certificate, click Yes, when prompted for
    network
    authentication information, enter username and password, navigate tothe
    Test Form tab of Test View, invoke the method by clicking the buttonand
    I
    get the following exception:
    <error>
    <faultcode>JWSError</faultcode>
    <faultstring>Error during JNDI lookup from
    jndi:t3://10.10.245.70:7131/AccountDelegatorEJB[Lookup failed for
    name:t3://10.10.245.70:7131/AccountDelegatorEJB]</faultstring>
    <detail>
    <jwErrorDetail> weblogic.jws.control.ControlException: Error during
    JNDI
    lookup from jndi:t3://10.10.245.70:7131/AccountDelegatorEJB[Lookupfailed
    for name:t3://10.10.245.70:7131/AccountDelegatorEJB] at
    weblogic.knex.control.EJBControlImpl.acquireResources(EJBControlImpl.java:27
    8) at
    weblogic.knex.context.JwsInternalContext.acquireResources(JwsInternalContext
    .java:220) at
    weblogic.knex.control.ControlHandler.invoke(ControlHandler.java:260)at
    ibas.AccountControl.getTransactionHistory(AccountControl.ctrl) at
    ibas.GetSecure.retrieveVisaHistoryTxn(GetSecure.jws:64)</jwErrorDetail>
    </detail>
    </error>
    I have a simple Hello method as well in my WebService (which is also
    restricted) and it works fine, but remote EJB access doesn't. I testedmy
    prototype on Weblogic 7.2 and 8.1 platforms - same result.
    Is that a bug or I am missing some additional configuration in order
    to
    get
    that working. Has anyone seen similar behavior? Is there a knownresolution?
    Or a suggested way to work around the problem?
    Thank you.
    Andre

  • Can't access non ejb classes from JSP - NoClassDefFound error

              Hi,
              I have one session ejb which has a method returning a collection of non ejb class objects (say of Class 'Foo').
              The method signature is like :
              "Collection getFinacialData() throws RemoteException"
              It is working fine with normal java clients. Now when I run this from a JSP it gives a "NoClassDefFoundError". I kept class 'Foo' and the remote interface of the session bean in the same package and also in the same ejb jar file. Also I am running JSP and ejb in same WL server(ver 5.1, SP8 on solaris). What I have done is only deployed the bean jar file. Do I need to do anything more?
              thanks in advance.
              

    I ran into a similar problem. I solved it by putting the client classes for
              accessing my EJB in the WebLogic POST_CLASSPATH in the startWebLogic script
              file:
              set POST_CLASSPATH=d:\weblogic\myserver\myClient.jar
              For more information on class visibility between the JSP and EJB class
              loaders, check out
              http://www.weblogic.com/docs51/classdocs/API_ejb/EJB_deployover.html#1056256
              Rick
              "niroja" <[email protected]> wrote in message
              news:3a6ed903$[email protected]..
              >
              > Hi,
              >
              > I have one session ejb which has a method returning a collection of non
              ejb class objects (say of Class 'Foo').
              > The method signature is like :
              > "Collection getFinacialData() throws RemoteException"
              > It is working fine with normal java clients. Now when I run this from a
              JSP it gives a "NoClassDefFoundError". I kept class 'Foo' and the remote
              interface of the session bean in the same package and also in the same ejb
              jar file. Also I am running JSP and ejb in same WL server(ver 5.1, SP8 on
              solaris). What I have done is only deployed the bean jar file. Do I need to
              do anything more?
              >
              > thanks in advance.
              >
              

  • How can i access the EJB from a Webdynpro

    Dear all,
    How can i access the ejb , from a webdynpro?.
    Is there any way to do that?.
    I want to write the entire code (business functions) within the EJB and i wan to access the entire methods from a WebDynpro Application.This is the situation.
    Please help me to , resolve this problem.(Here im using JDBC Connection .. etc.).
    I want to do the basic connection setting's and data retrieval part within the EJB and use that within the WebDynpro..
    how can i seperate this two(i mean, i want to seperate the JDBC connections and WebDynpro,i dont want to hard code any connection parameters within the webdynpro code)
    So that i want use that saet of particular function's in many webdynpro applications..
    (i dont need any help regarding webservice way.)
    If anyone can , please help me..
    I tried that javabean class , manifest file , that way (importing javabean model).
    but im getting errors.
    I cant properly utilize that..
    So please help me with steps regarding that,,
    for javabean
    and if any , for EJB also..
    with regards
    Kishor.G

    HI,
    Since webdynpros follows Model View Controller Architecture You can access EJBs in webdynpro(views/frontend) infact to connec to database uding JDBC you have to utilise EJB ( opening connection to database closing, and other Business functionality).See this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/unkown/web dynpro tutorial and sample applications.faq#q-7
    <b>How to access the Car Rental Web Service?</b>
    Regards,
    RK

  • Using service Locator pattern to dynamically access remote EJBs

    Hi All,
    Please help to guide me how I can use a service locator to retrieve a remote object (residing on another application but on same domain) .
    I do not want to use Dependency Injection since I want to dynamically discover them ( there are many implementations of same interface (POJO)). Each EJB implementation implements its own remote/local interface that extends this global POJO interface.
    I have two J2ee-Applications on same domain. J2EE-Application 1 has an EJB module (EJB Module 1) that intends to access an EJB Module (EJB Module 2) in J2EE-Application 2. Following observations:
    1. Dependency Injection fails if (include the EJB Module 2 jar in J2EE-Application 1). Reason App Server complains the EJB has been deployed (Deployment fails)
    2. Dependency Injection works if (exclude the EJB Module 2 jar in J2EE-Application 1) and include the Remote Interface in EJB Module 1(J2EE-Application 1).Positive Observation (Deployment success and DI also success)
    3.Using Service Locator to retrieve the remote object if (exclude the EJB Module 2 jar in J2EE-Application 1) and include the Remote Interface in EJB Module 1(J2EE-Application 1). Negative and Positive Observation.
    Positive Observation: Using dependency injection I can still retrieve the Remote Object
    Another Positive: The Service Locator remote lookup to another Bean in same Application but different EJB Module is successful.
    Negative Observation:
    The Service Locator lookup to this same remote object with Successful Dependency Injection fails (An Ejb in a different application).
    Can't retrieve the Remote Object with Service Locator. Message from Server:.
    NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial.
    Thanks in advance

    "I do not want to use Dependency Injection since I want to dynamically discover them ( there are many implementations of same interface (POJO))"
    If you're calling ejbs from other ejbs or servlets, the same could probably be acomplished by using dependency injection (@EJB) in a number of instance variables typed with different remote/local interfaces or even with different beanName attributes (for when more than one bean implements the same managed interface in the same app - not sure how it works outside the same jee app...) , and dinamically selecting one of them; or encapsulating those injected variables into a stateless ejb as your service locator to make them accessible from POJOs too (which, due to concurrent acess, wouldn't work for statefull ejbs references...).
    Anyway, using the jndi lookup service locator pattern seems ok in this case.
    What doesn't seem ok, given the nature of the error for the negative observation - jndi context initialization - is that
    Another Positive: The Service Locator remote lookup to another Bean in same Application but different EJB Module is successful.
    Can you check your code and reconfirm that you're using the same context initialization code for both the positive and negative observations ?

  • How to access the ejb using WSIF

    I have deployed my Bean Managed Persistance Entity Bean in Weblogic 8.1 App Server. Trying to access the ejb from Synchronous BPEL process using WSIF. I am getting following error
    - WSIF0011I: Preferred port 'EJBPort' was not available
    org.apache.wsif.WSIFException: Unable to find an available port
         at org.apache.wsif.base.WSIFServiceImpl.getPort(Unknown Source)
         at org.apache.wsif.base.WSIFServiceImpl.getPort(Unknown Source)
         at com.test.wsif.RunInventory.main(RunInventory.java:55)
    How to resolve the above said problem??
    Here is my Inventory.wsdl file
    <?xml version="1.0" ?>
    <definitions targetNamespace="http://wsifservice.Inventory/"
    xmlns:tns="http://wsifservice.Inventory/"
    xmlns:typens="http://wsiftypes.addressbook.service.ejb/"
    xmlns:xsd="http://www.w3.org/1999/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:format="http://schemas.xmlsoap.org/wsdl/formatbinding/"
    xmlns:ejb="http://schemas.xmlsoap.org/wsdl/ejb/"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <!-- type defs -->
    <types>
    <xsd:schema
    targetNamespace="http://wsiftypes.addressbook.service.ejb/"
    xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <xsd:complexType name="vecdetails">
    <xsd:sequence>
    <xsd:element name="make" type="xsd:string"/>
    <xsd:element name="bodystyle" type="xsd:string"/>
    <xsd:element name="model" type="xsd:string"/>
    <xsd:element name="quantity" type="xsd:int"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    </types>
    <!-- message declns -->
    <message name="getInventoryRequestMessage">
    <part name="vecdetails" type="typens:request"/>
    </message>
    <message name="getInventoryResponseMessage">
    <part name="response" type="typens:response"/>
    </message>
    <!-- port type declns -->
    <portType name="Inventory">
    <operation name="getInventory">
    <input name="getInventoryRequest" message="tns:getInventoryRequestMessage"/>
    <output name="getInventoryResponse" message="tns:getInventoryResponseMessage"/>
    </operation>
    </portType>
    <!-- binding declns -->
    <binding name="EJBBinding" type="tns:Inventory">
    <ejb:binding/>
    <format:typeMapping encoding="Java" style="Java">
    <format:typeMap typeName="xsd:string" formatType="java.lang.String" />
    </format:typeMapping>
    <operation name="getInventory">
    <ejb:operation
    methodName="getInventory"
    parameterOrder="make bodystyle model quantity"
    interface="remote" returnPart="response" />
    <input name="getInventoryRequest"/>
    <output name="getInventoryResponse"/>
    </operation>
    </binding>
    <!-- service decln -->
    <service name="InventoryService">
    <port name="EJBPort" binding="tns:EJBBinding">
    <!-- Put vendor-specific deployment information here -->
         <ejb:address className="com.poc.inventoryejb.InventoryHome"
              jndiName="Inventory"
    initialContextFactory="weblogic.jndi.WLInitialContextFactory"
         jndiProviderURL="t3://localhost:7001"/>
    </port>
    </service>
    </definitions>

    Try to restart BPEL Server. When I tested WSIF Bindings I had to restart server after every changes in WSIF WSDL.
    Alexey.

  • Access Error Using Webservice In Weblogic 7

    Hi,
    I am getting the following error in Weblogic 7 sp1 when I call a client, which
    invokes
    a web service application (A). The application will then connect through the t3
    protocol to call another application (B) returning some data.
    <Dec 17, 2002 4:51:53 PM CST> <Notice> <WebLogicServer> <000365> <Server state
    c
    hanged to RUNNING>
    <Dec 17, 2002 4:51:53 PM CST> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>
    <Dec 17, 2002 5:29:41 PM CST> <Error> <JTA> <110201> <User [<anonymous>] is not
    authorized to invoke startRollback on a transaction branch.>
    weblogic.management.NoAccessRuntimeException: Access not allowed for subject:
    pr
    incipals=[], on ResourceType: ServerConfig Action: execute, Target: lookupServer
    Runtime
    at weblogic.management.internal.Helper$IsAccessAllowedPrivilegeAction.ru
    n(Helper.java:2034)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:744)
    at weblogic.management.internal.Helper.isAccessAllowed(Helper.java:1865)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBean
    ServerImpl.java:923)
    at weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unkn
    own Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:785)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
    a:308)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
    .java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    I have set the necessary user credentials when I create the Initial context
    and I am able to get the remote reference of the Session Bean in
    application B.
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,SOME_URL);
    ht.put(Context.SECURITY_PRINCIPAL,"system");
    ht.put(Context.SECURITY_CREDENTIALS,"weblogic1234");
    Hope someone could shed some light on this.
    Thanks a lot.

    Hi,
    I am getting a different error message now:
    <Dec 18, 2002 6:00:43 PM CST> <Error> <EJB> <010026> <Exception during commit
    of
    transaction 3:ff0ca3f858e3d95b: javax.transaction.SystemException: Commit can
    b
    e issued only when there are no requests awaiting responses. Currently there is
    one such request at weblogic.transaction.internal.TransactionImpl.abort(TransactionImpl.j
    ava:989)
    at weblogic.transaction.internal.TransactionImpl.enforceCheckedTransaction(TransactionImpl.java:1499)
    at weblogic.transaction.internal.TransactionImpl.checkIfCommitPossible(TransactionImpl.java:1477)
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:230)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:208)
    at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:278)
    at com.ejb.sb.SBAccountBean_6uugr6_EOImpl.getAccountDetails(SBAccountBean_6uugr6_EOImpl.java:212)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.webservice.component.slsb.SLSBInvocationHandler.invoke(SLSBInvocationHandler.java:84)
    at weblogic.webservice.core.handler.InvokeHandler.handleRequest(InvokeHandler.java:78)
    at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
    at weblogic.webservice.core.DefaultOperation.process(DefaultOperation.java:539)
    at weblogic.webservice.core.DefaultWebService.invoke(DefaultWebService.java:264)
    at weblogic.webservice.server.servlet.ServletBase.serverSideInvoke(ServletBase.java:362)
    at weblogic.webservice.server.servlet.WebServiceServlet.serverSideInvoke(WebServiceServlet.java:269)
    at weblogic.webservice.server.servlet.ServletBase.doPost(ServletBase.java:346)
    at weblogic.webservice.server.servlet.WebServiceServlet.doPost(WebServiceServlet.java:237)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    --------------- nested within: ------------------
    weblogic.transaction.RollbackException: Commit can be issued only when there are
    no requests awaiting responses. Currently there is one such request - with nested
    exception:
    [javax.transaction.SystemException: Commit can be issued only when there are no
    requests awaiting responses. Currently there is one such request]
    at weblogic.transaction.internal.TransactionImpl.throwRollbackException(TransactionImpl.java:1561)
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:284)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:208)
    at weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:278)
    at com.ejb.sb.SBAccountBean_6uugr6_EOImpl.getAccountDetails
    (SBAccountBean_6uugr6_EOImpl.java:212)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.webservice.component.slsb.SLSBInvocationHandler.invoke(SLSBInvocationHandler.java:84)
    at weblogic.webservice.core.handler.InvokeHandler.handleRequest(InvokeHandler.java:78)
    at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
    at weblogic.webservice.core.DefaultOperation.process(DefaultOperation.java:539)
    at weblogic.webservice.core.DefaultWebService.invoke(DefaultWebService.java:264)
    at weblogic.webservice.server.servlet.ServletBase.serverSideInvoke(ServletBase.java:362)
    at weblogic.webservice.server.servlet.WebServiceServlet.serverSideInvoke(WebServiceServlet.java:269)
    at weblogic.webservice.server.servlet.ServletBase.doPost(ServletBase.java:346)
    at weblogic.webservice.server.servlet.WebServiceServlet.doPost(WebServiceServlet.java:237)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • Problem in  Accessing the EJB

    I want to access remote EJB from my Portal Service.
    the EJB and the portal Service run on a separated machines.
    here is what i wrote:
    Properties properties = new Properties();
    properties.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sap.engine.services.jndi.InitialContextFactoryImpl");
    properties.put(Context.PROVIDER_URL, "p030633:50004");
    InitialContext context = new InitialContext(properties);
    String name = "sap.com/GDS/GtinManager";
    GtinManagerHome home = (GtinManagerHome)
       javax.rmi.PortableRemoteObject.narrow.narrow(
           context.lookup(name), GtinManagerHome.class);
    gm = (GtinManager)home.create();
    i run this code from java application and it works.
    but in portal i get this error:
    "com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at GDS, the whole lookup name is sap.com/GDS/GtinManager."
    Thanks
    Raja

    Hello,
    if you NW 04 SP7 or higher, please look this document
    https://www.sdn.sap.com/sdn/index.sdn?contenttype=url&content=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to access an ejb from a portal component.mht
    else in EP6 SP2, it is more difficult to access to an EJB because the portal have an other classloader sysem and other  JNDI context
    Best Regards,
    Fabrice

  • Accessing Remote EJBs

    I am trying to access an EJB on a remote server using the following code:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
            "com.sun.jndi.cosnaming.CNCtxFactory");
    env.put(Context.PROVIDER_URL,
            "iiop://190.30.123.34:1050");
    InitialContext initial = new InitialContext(env);
    Context environment (Context)initial.lookup("java:comp/env");
    Object ref = environment.lookup("ejb/lands.mc.bus.TopoMap");
    home = (TopoMapHome) PortableRemoteObject.narrow(ref, TopoMapHome.class);I have the following entry in my web.xml:
    <ejb-ref>
    <ejb-ref-name>ejb/lands.mc.bus.TopoMap</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>lands.mc.bus.TopoMapHome</home>
    <remote>lands.mc.bus.TopoMap</remote>
    </ejb-ref>But when ever i perform the environment lookup, i get the following error:
    javax.naming.NamingException: Cannot create resource instance
    When i print out the bindings, the TopoMap binding is present.
    Can anyone suggest what i might be doing wrong?
    Thanks
    toby

    Tried that, gives me this error:
    javax.naming.NameNotFoundException: Name lands.mc.bus.TopoMap is not bound in this ContextIf i change
    env.put(Context.PROVIDER_URL,"iiop://190.30.123.34:1050");To a non existent URL, tells me it cant connect to the ORB, so its definitly connecting properly. I also noticed that when i print out the bindings, it prints out only those that are in my web.xml file for the tomcat server, not the bindings that are on 190.30.123.34 (J2EE server).
    Any other suggestions?
    Thanks,
    Toby

  • Security issue to access remote ejbs, URGENT!!! please and thanks.

    Hi gurus:
    I have questions for you. I need to access remote ejbs. the ejb(beans) have been
    deployed on remote machine. I have helper class file to do JNDI lookup to point
    the machine and find it.
    I have local machine to have all of home interfaces, remote interfaces and stub
    classes and common classes. I have local jsp and config weblogic-web.xml to allow
    test user to access.
    Sometimes fine but got the following message and error from my local machine.
    I have no clue about that. Is any other issue that remote machine have security
    to limit clients to access beans. Because remote wl server startup as system/weblogic.
    If my local machine startup as system/weblogic too. It has no problem at all.
    This doesn't make sense for my local machine has to have same system's password
    as remote machine. Should have some issues to limit clients to access remote beans.
    Thank you for any helps and suggestions in advance.
    Steven.
    ####<Jun 7, 2001 10:34:25 AM CDT> <Error> <HTTP> <stevenzhu> <myserver> <ExecuteThread-14>
    <springbow> <> <101020> <[WebAppServletContext(8365803,public_html)] Servlet failed
    with Exception>
    java.lang.SecurityException: Authentication for user test denied in realm wl_realm
    at weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOutboundRequest.java:90)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:247)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:225)
    at weblogic.jndi.internal.ServerNamingNode_WLStub.lookup(ServerNamingNode_WLStub.java:121)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:323)
    at com.sprint.common.util.EJBHelper.getHomeInterface(EJBHelper.java:172)
    at com.sprint.common.util.EJBHelper.getOrganizationSLHome(EJBHelper.java:122)
    at com.sprint.common.organization.OrganizationBean.getOrganizationHome(OrganizationBean.java:290)
    at com.sprint.common.organization.OrganizationBean.getOrganizationRemote(OrganizationBean.java:315)
    at com.sprint.common.organization.OrganizationBean.findEmployee(OrganizationBean.java:107)
    at jsp_servlet._ehr._vieworganizationalhierarchy._jspService(_vieworganizationalhierarchy.java:173)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:208)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1127)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1529)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    well, if we post in other threads, they tell me that it is ARD and server technology. If you try to post back to my mac in the normal threads about Leopard, they point us to this thread.
    It seems that a lot of people are frantically looking for someone who can explain in plain english how to do the remote desktop - is remote desktop the same technology as back to my mac?
    Extremely frustrating for people like me who don't have unix or programming language experience... We choose for mac because we wanted user friendlyness... What a joke!

  • Error ejb weblogic 11g - method remove

    Hi,
    When trying to deploy an ejb in weblogic 11g me the following error.
    Unable to deploy EJB: ConceptType from ejb-admin.jar:
    [EJB:010101]A mismatch exists between the bean code and generated code.Clase(Application: ejb-jar, EJBComponent: ejb-jar) . Please rerun appc on the bean code. The error was java.lang.NoSuchFieldException: md_ejbRemoveClaseTipo_L
         at java.lang.Class.getField(Class.java:1520)
         at weblogic.ejb.container.deployer.BeanInfoImpl.setHomeMDField(BeanInfoImpl.java:896)
         at weblogic.ejb.container.deployer.BeanInfoImpl.setMDField(BeanInfoImpl.java:861)
         at weblogic.ejb.container.deployer.BeanInfoImpl.setMethodDescriptor(BeanInfoImpl.java:794)
         at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.setMethodDescriptor(ClientDrivenBeanInfoImpl.java:784)
         at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.setMethodDescriptors(ClientDrivenBeanInfoImpl.java:758)
         at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.setMethodDescriptors(ClientDrivenBeanInfoImpl.java:657)
         at weblogic.ejb.container.deployer.ClientDrivenBeanInfoImpl.prepare(ClientDrivenBeanInfoImpl.java:1072)
         at weblogic.ejb.container.deployer.EntityBeanInfoImpl.prepare(EntityBeanInfoImpl.java:67)
         at weblogic.ejb.container.deployer.EJBDeployer.setupBeanInfos(EJBDeployer.java:1031)
         at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:1288)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:442)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:518)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:47)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:649)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.SingleModuleDeployment.prepare(SingleModuleDeployment.java:44)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:209)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:98)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:749)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:160)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:47)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    . NestedException Message is :md_ejbRemoveClaseTipo_L
    Anyone know why?

    There's a null pointer at:
    mil.ahrs.emilpo.ejb.entity.personnelaccounting.SoldrasgtPK.equals(SoldrasgtPK.java:24)
    If you need more help debugging this, you'll have to show me the source code for that class.
    -- Rob
    Vy Nguyen wrote:
    I'm using WLS 6.1SP2. When I called ejbRemove() method passing the PK, and I got the following error:
    EJB Exception: ; nested exception is: java.lang.NullPointerException Start server side stack trace: java.rmi.RemoteException: EJB Exception: ; nested exception is: java.lang.NullPointerException java.lang.NullPointerException at mil.ahrs.emilpo.ejb.entity.personnelaccounting.SoldrasgtPK.equals(SoldrasgtPK.java:24) at java.util.HashMap.remove(HashMap.java:380) at weblogic.utils.SoftHashMap.remove(SoftHashMap.java:242) at java.util.Collections$SynchronizedMap.remove(Collections.java:1440) at weblogic.ejb20.internal.EntityEJBLocalHome.releaseEO(EntityEJBLocalHome.java:406) at weblogic.ejb20.internal.EntityEJBLocalHome.remove(EntityEJBLocalHome.java:233) at mil.ahrs.emilpo.ejb.entity.personnelaccounting.SoldrasgtBean_8m4rrx_LocalHomeImpl.remove(SoldrasgtBean_8m4rrx_LocalHomeImpl.java:169) at mil.ahrs.emilpo.ejb.session.personnelaccounting.AssignmentServicesBean.removeCurrentAssignment
    I saw someone on-line had a similar issue and about CR044294_600sp2rp12.jar causing the error. How do I overcome this problem?
    THANK YOU.
    Vy--
    AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
    by Michael Girdley, Rob Woollen, and Sandra Emerson
    http://learnWebLogic.com
    [att1.html]

  • Cannot start J2EE of EP 6.0 SP 9: ACCESS.ERROR

    Hi,
    When we are starting the EP the J2EE is not starting up.
    When checked in STD_SERVER0.OUT file we found the
    following error...
    <b>com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_29] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]</b>
    Recently a folder by Name "TCLBSC" was copied from
    Migrated content to another location.
    Here with I am attaching the STD_SERVER0.OUT file for
    reference..
    Pl. suggest.
    Thanks & Regards
    Mrutyunjay
    stdout/stderr redirect
    node name   : server0
    pid         : 564
    system name : D01
    system nr.  : 00
    started at  : Mon Dec 19 17:53:28 2005
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude iaik/security/md/SHA a
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    SAP J2EE Engine Version 6.40   PatchLevel 87289.311 is starting...
    Loading: LogManager ... 969 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 703 ms.
    Loading: ThreadManager ... 422 ms.
    Loading: IpVerificationManager ... 500 ms.
    Loading: ClassLoaderManager ... 31 ms.
    Loading: ClusterManager ... 3375 ms.
    Loading: LockingManager ... 156 ms.
    Loading: ConfigurationManager ... 2766 ms.
    Loading: LicensingManager ... 312 ms.
    Loading: ServiceManager ...
    0.000: [GC 0.000: [ParNew: 43519K->3380K(65280K), 0.0623008 secs] 43519K->3380K(502528K), 0.0624530 secs]
    Loading services.:
      Service memory started. (110 ms).
      Service runtimeinfo started. (78 ms).
      Service cross started. (375 ms).
      Service file started. (406 ms).
      Service userstore started. (78 ms).
      Service jmx_notification started. (782 ms).
      Service trex.service started. (968 ms).
      Service timeout started. (953 ms).
      Service tcsecvsi~service started. (1437 ms).
      Service p4 started. (1421 ms).
      Service classpath_resolver started. (47 ms).
      Service tcsecwssec~service started. (2141 ms).
    8.629: [GC 8.629: [ParNew: 46873K->6510K(65280K), 0.0723887 secs] 46873K->6510K(502528K), 0.0724732 secs]
      Service deploy started. (8672 ms).
      Service apptracing started. (203 ms).
    14.989: [GC 14.989: [ParNew: 50030K->8914K(65280K), 0.0781815 secs] 50030K->8914K(502528K), 0.0782621 secs]
      Service log_configurator started. (12844 ms).
      Service locking started. (16 ms).
      Service http started. (516 ms).
      Service naming started. (640 ms).
      Service failover started. (125 ms).
      Service appclient started. (188 ms).
      Service javamail started. (312 ms).
      Service ts started. (218 ms).
      Service bimmrdeployer started. (203 ms).
      Service jmsconnector started. (360 ms).
      Service licensing started. (15 ms).
      Service connector started. (437 ms).
      Service configuration started. (47 ms).
      Service webservices started. (969 ms).
    20.036: [GC 20.036: [ParNew: 52434K->10198K(65280K), 0.0900100 secs] 52434K->10198K(502528K), 0.0900905 secs]
      Service dbpool started. (6531 ms).
      Service com.sap.security.core.ume.service started. (2984 ms).
    27.774: [GC 27.774: [ParNew: 53718K->11319K(65280K), 0.0960231 secs] 53718K->11319K(502528K), 0.0961048 secs]
      Service security started. (2984 ms).
      Service applocking started. (234 ms).
      Service classload started. (641 ms).
      Service servlet_jsp started. (781 ms).
      Service shell started. (359 ms).
      Service keystore started. (844 ms).
      Service tceCATTPingservice started. (63 ms).
      Service ssl started. (32 ms).
      Service jmx started. (1156 ms).
      Service telnet started. (296 ms).
      Service tcsecsecurestorage~service started. (250 ms).
      Service dsr started. (1031 ms).
      Service ejb started. (1391 ms).
    32.520: [GC 32.520: [ParNew: 54839K->17659K(65280K), 0.1486451 secs] 54839K->17659K(502528K), 0.1487332 secs]
      Service tcsecdestinations~service started. (953 ms).
      Service basicadmin started. (1313 ms).
      Service adminadapter started. (204 ms).
      Service rfcengine started. (1703 ms).
      Service prtbridge started. (3187 ms).
      Service com.sap.portal.prt.sapj2ee started. (1078 ms).
      Service pmi started. (2672 ms).
      Service monitor started. (2422 ms).
      Service tc.monitoring.logviewer started. (5109 ms).
      Service webdynpro started. (2391 ms).
      Service sld started. (5546 ms).
    38.008: [GC 38.008: [ParNew: 61179K->19449K(65280K), 0.1527641 secs] 61179K->19449K(502528K), 0.1529251 secs]
    Excluding compile:  iaik.security.md.SHA::a
      Service jms_provider started. (7109 ms).
      Service DQE started. (3640 ms).
    ServiceManager started for 50375 ms.
    Framework started for 63094 ms.
    SAP J2EE Engine Version 6.40   PatchLevel 87289.311 is running!
    PatchLevel 87289.311 November 18, 2004 20:31 GMT
    45.517: [GC 45.517: [ParNew: 62969K->21760K(65280K), 0.1871262 secs] 62969K->22139K(502528K), 0.1872247 secs]
    >51.098: [GC 51.098: [ParNew: 65279K->21760K(65280K), 0.2057123 secs] 65659K->25367K(502528K), 0.2057928 secs]
    66.671: [GC 66.671: [ParNew: 65261K->21760K(65280K), 0.2247768 secs] 68869K->31365K(502528K), 0.2248605 secs]
    77.196: [GC 77.196: [ParNew: 65280K->21760K(65280K), 0.2036501 secs] 74885K->35544K(502528K), 0.2037568 secs]
    86.904: [GC 86.904: [ParNew: 65279K->18472K(65280K), 0.1963981 secs] 79064K->40119K(502528K), 0.1964959 secs]
    93.723: [GC 93.724: [ParNew: 61992K->20679K(65280K), 0.1733530 secs] 83639K->42326K(502528K), 0.1734510 secs]
    98.545: [GC 98.545: [ParNew: 64199K->20182K(65280K), 0.1839579 secs] 85846K->43677K(502528K), 0.1840365 secs]
    103.004: [GC 103.004: [ParNew: 63702K->21760K(65280K), 0.2040961 secs] 87197K->47967K(502528K), 0.2041766 secs]
    109.287: [GC 109.287: [ParNew: 65279K->21397K(65280K), 0.1995458 secs] 91487K->50074K(502528K), 0.1996334 secs]
    114.864: [GC 114.864: [ParNew: 64907K->18445K(65280K), 0.1923545 secs] 93583K->51863K(502528K), 0.1924573 secs]
    115.825: [GC 115.825: [ParNew: 61965K->18157K(65280K), 0.1434763 secs] 95383K->51576K(502528K), 0.1435773 secs]
    117.178: [GC 117.178: [ParNew: 61662K->18732K(65280K), 0.1471606 secs] 95081K->52151K(502528K), 0.1472597 secs]
    118.146: [GC 118.146: [ParNew: 62214K->19125K(65280K), 0.1500746 secs] 95632K->52544K(502528K), 0.1502780 secs]
    118.961: [GC 118.961: [ParNew: 62640K->19277K(65280K), 0.1507784 secs] 96059K->52695K(502528K), 0.1508721 secs]
    122.429: [GC 122.429: [ParNew: 62796K->21760K(65280K), 0.1796893 secs] 96215K->55362K(502528K), 0.1797786 secs]
    128.834: [GC 128.834: [ParNew: 65279K->21760K(65280K), 0.2023800 secs] 98881K->58757K(502528K), 0.2024624 secs]
    135.057: [GC 135.057: [ParNew: 65277K->20879K(65280K), 0.1970732 secs] 102275K->61072K(502528K), 0.1971587 secs]
    141.218: [GC 141.219: [ParNew: 64399K->19831K(65280K), 0.1899492 secs] 104592K->62595K(502528K), 0.1900720 secs]
    143.314: [GC 143.314: [ParNew: 63351K->19190K(65280K), 0.1777552 secs] 106115K->63684K(502528K), 0.1778384 secs]
    144.817: [GC 144.817: [ParNew: 62710K->21412K(65280K), 0.1948165 secs] 107204K->65906K(502528K), 0.1948975 secs]
    146.277: [GC 146.277: [ParNew: 64932K->17622K(65280K), 0.1986485 secs] 109426K->66139K(502528K), 0.1987331 secs]
    147.684: [GC 147.684: [ParNew: 61142K->17630K(65280K), 0.1860604 secs] 109659K->66148K(502528K), 0.1861404 secs]
    148.982: [GC 148.982: [ParNew: 61150K->15592K(65280K), 0.1468187 secs] 109668K->64109K(502528K), 0.1468983 secs]
    150.221: [GC 150.221: [ParNew: 59112K->16075K(65280K), 0.1408467 secs] 107629K->64592K(502528K), 0.1409237 secs]
    151.421: [GC 151.421: [ParNew: 59595K->18631K(65280K), 0.1613921 secs] 108112K->67148K(502528K), 0.1614741 secs]
    152.617: [GC 152.617: [ParNew: 62151K->21079K(65280K), 0.1830506 secs] 110668K->69597K(502528K), 0.1831483 secs]
    153.822: [GC 153.823: [ParNew: 64599K->14269K(65280K), 0.1588317 secs] 113117K->64907K(502528K), 0.1589101 secs]
    156.418: [GC 156.418: [ParNew: 57438K->16750K(65280K), 0.1612428 secs] 108077K->67388K(502528K), 0.1613294 secs]
    159.153: [GC 159.153: [ParNew: 60230K->12238K(65280K), 0.1081560 secs] 110869K->62877K(502528K), 0.1082536 secs]
    160.271: [GC 160.271: [ParNew: 55758K->14554K(65280K), 0.1294732 secs] 106397K->65193K(502528K), 0.1295745 secs]
    161.419: [GC 161.419: [ParNew: 58011K->16902K(65280K), 0.1493863 secs] 108649K->67540K(502528K), 0.1494672 secs]
    162.602: [GC 162.602: [ParNew: 60422K->19381K(65280K), 0.1694892 secs] 111060K->70019K(502528K), 0.1695960 secs]
    163.796: [GC 163.796: [ParNew: 62901K->21760K(65280K), 0.1906654 secs] 113539K->72462K(502528K), 0.1907523 secs]
    166.721: [GC 166.721: [ParNew: 65280K->21760K(65280K), 0.3271022 secs] 115982K->78710K(502528K), 0.3271891 secs]
    172.772: [GC 172.772: [ParNew: 65279K->20215K(65280K), 0.2118432 secs] 122230K->79748K(502528K), 0.2119430 secs]
    179.032: [GC 179.032: [ParNew: 63735K->18722K(65280K), 0.1870092 secs] 123268K->80843K(502528K), 0.1870935 secs]
    186.986: [GC 186.986: [ParNew: 62241K->19438K(65280K), 0.1759911 secs] 124362K->81559K(502528K), 0.1760718 secs]
    199.125: [GC 199.125: [ParNew: 62958K->20707K(65280K), 0.1850222 secs] 125079K->82829K(502528K), 0.1851055 secs]
    205.463: [GC 205.463: [ParNew: 64227K->19846K(65280K), 0.2181675 secs] 126349K->83770K(502528K), 0.2182612 secs]
    213.763: [GC 213.763: [ParNew: 63366K->19983K(65280K), 0.1929178 secs] 127290K->85246K(502528K), 0.1930103 secs]
    224.144: [GC 224.144: [ParNew: 63453K->19506K(65280K), 0.1983428 secs] 128716K->85774K(502528K), 0.1984250 secs]
    228.657: [GC 228.657: [ParNew: 63025K->19857K(65280K), 0.1747388 secs] 129294K->86125K(502528K), 0.1748220 secs]
    232.013: [GC 232.013: [ParNew: 63376K->19408K(65280K), 0.1846209 secs] 129645K->87344K(502528K), 0.1847274 secs]
    235.267: [GC 235.267: [ParNew: 62927K->20346K(65280K), 0.1771581 secs] 130864K->88282K(502528K), 0.1772536 secs]
    239.443: [GC 239.443: [ParNew: 63866K->21760K(65280K), 0.2501267 secs] 131802K->92048K(502528K), 0.2503690 secs]
    248.760: [GC 248.760: [ParNew: 65279K->21760K(65280K), 0.2197351 secs] 135568K->95839K(502528K), 0.2198233 secs]
    315.439: [GC 315.440: [ParNew: 65279K->20196K(65280K), 0.2103201 secs] 139359K->98587K(502528K), 0.2104165 secs]
    317.021: [GC 317.021: [ParNew: 63679K->18885K(65280K), 0.1590251 secs] 142070K->98248K(502528K), 0.1591058 secs]
    336.352: [GC 336.352: [ParNew: 62405K->21211K(65280K), 0.1749747 secs] 141768K->100574K(502528K), 0.1750755 secs]
    338.096: [GC 338.096: [ParNew: 64706K->19519K(65280K), 0.1723556 secs] 144069K->101034K(502528K), 0.1724384 secs]
    339.797: [GC 339.798: [ParNew: 63038K->20414K(65280K), 0.1805815 secs] 144553K->101929K(502528K), 0.1806649 secs]
    342.375: [GC 342.375: [ParNew: 63930K->18132K(65280K), 0.1549578 secs] 145445K->100728K(502528K), 0.1550706 secs]
    344.851: [GC 344.851: [ParNew: 61617K->19396K(65280K), 0.1628851 secs] 144214K->101992K(502528K), 0.1629816 secs]
    346.727: [GC 346.728: [ParNew: 62916K->21760K(65280K), 0.1698014 secs] 145512K->104556K(502528K), 0.1698837 secs]
    354.583: [GC 354.583: [ParNew: 65280K->21760K(65280K), 0.1960093 secs] 148076K->108050K(502528K), 0.1960934 secs]
    363.444: [GC 363.444: [ParNew: 65280K->21760K(65280K), 0.2488967 secs] 151570K->116430K(502528K), 0.2489938 secs]
    367.120: [GC 367.120: [ParNew: 65280K->19176K(65280K), 0.1809019 secs] 159950K->117162K(502528K), 0.1809805 secs]
    371.257: [GC 371.257: [ParNew: 62696K->21502K(65280K), 0.1723906 secs] 160682K->119488K(502528K), 0.1724771 secs]
    381.394: [GC 381.395: [ParNew: 65022K->21548K(65280K), 0.1820098 secs] 163008K->122317K(502528K), 0.1820921 secs]
    661.722: [GC 661.722: [ParNew: 65068K->19988K(65280K), 0.1820193 secs] 165837K->122697K(502528K), 0.1821015 secs]
    2522.832: [GC 2522.832: [ParNew: 63508K->18930K(65280K), 0.1594776 secs] 166217K->122518K(502528K), 0.1595638 secs]
    3501.022: [GC 3501.022: [ParNew: 62442K->21249K(65280K), 0.1660130 secs] 166030K->124838K(502528K), 0.1660984 secs]
    3594.170: [GC 3594.170: [ParNew: 64746K->18732K(65280K), 0.1811762 secs] 168334K->126197K(502528K), 0.1812605 secs]
    3626.080: [GC 3626.080: [ParNew: 62252K->19603K(65280K), 0.1651236 secs] 169717K->127069K(502528K), 0.1652069 secs]
    3627.231: [GC 3627.231: [ParNew: 63091K->17958K(65280K), 0.1381435 secs] 170557K->125423K(502528K), 0.1382265 secs]
    3628.131: [GC 3628.131: [ParNew: 61447K->17778K(65280K), 0.1429391 secs] 168912K->125243K(502528K), 0.1430325 secs]
    3629.042: [GC 3629.042: [ParNew: 61287K->17879K(65280K), 0.1359327 secs] 168752K->125345K(502528K), 0.1360139 secs]
    3630.909: [GC 3630.909: [ParNew: 61399K->18453K(65280K), 0.1463376 secs] 168865K->125919K(502528K), 0.1464167 secs]
    3632.125: [GC 3632.126: [ParNew: 61945K->17943K(65280K), 0.1457867 secs] 169411K->125408K(502528K), 0.1458773 secs]
    3633.413: [GC 3633.413: [ParNew: 61434K->18039K(65280K), 0.1378981 secs] 168900K->125504K(502528K), 0.1379808 secs]
    3634.327: [GC 3634.327: [ParNew: 61530K->17952K(65280K), 0.1373324 secs] 168995K->125418K(502528K), 0.1374145 secs]
    3635.258: [GC 3635.258: [ParNew: 61470K->17900K(65280K), 0.1357003 secs] 168935K->125366K(502528K), 0.1357799 secs]
    3636.285: [GC 3636.285: [ParNew: 61420K->18017K(65280K), 0.1486400 secs] 168886K->125482K(502528K), 0.1488777 secs]
    3637.448: [GC 3637.448: [ParNew: 61519K->18011K(65280K), 0.1381376 secs] 168984K->125476K(502528K), 0.1382175 secs]
    3638.405: [GC 3638.405: [ParNew: 61501K->17941K(65280K), 0.1361148 secs] 168967K->125407K(502528K), 0.1361934 secs]
    3639.302: [GC 3639.302: [ParNew: 61420K->17982K(65280K), 0.1363056 secs] 168885K->125447K(502528K), 0.1363876 secs]
    3640.728: [GC 3640.728: [ParNew: 61502K->18687K(65280K), 0.1425942 secs] 168967K->126153K(502528K), 0.1426768 secs]
    3642.593: [GC 3642.593: [ParNew: 62207K->19051K(65280K), 0.1544625 secs] 169673K->126516K(502528K), 0.1545466 secs]
    3644.140: [GC 3644.140: [ParNew: 62571K->18731K(65280K), 0.1447826 secs] 170036K->126196K(502528K), 0.1448694 secs]
    3645.185: [GC 3645.185: [ParNew: 62251K->18549K(65280K), 0.1404283 secs] 169716K->126014K(502528K), 0.1405092 secs]
    3646.188: [GC 3646.188: [ParNew: 62056K->18537K(65280K), 0.1552940 secs] 169522K->126002K(502528K), 0.1553835 secs]
    3647.287: [GC 3647.287: [ParNew: 62034K->18670K(65280K), 0.1497830 secs] 169499K->126135K(502528K), 0.1498753 secs]
    3648.298: [GC 3648.298: [ParNew: 62134K->18558K(65280K), 0.1434167 secs] 169600K->126023K(502528K), 0.1435094 secs]
    3649.151: [GC 3649.151: [ParNew: 62064K->18489K(65280K), 0.1404938 secs] 169529K->125954K(502528K), 0.1405756 secs]
    3650.017: [GC 3650.017: [ParNew: 61948K->18501K(65280K), 0.1427748 secs] 169414K->125967K(502528K), 0.1428526 secs]
    3650.891: [GC 3650.891: [ParNew: 62021K->17191K(65280K), 0.1402388 secs] 169486K->126041K(502528K), 0.1403200 secs]
    3651.857: [GC 3651.857: [ParNew: 60705K->12528K(65280K), 0.1416444 secs] 169554K->126128K(502528K), 0.1417268 secs]
    3653.208: [GC 3653.208: [ParNew: 56046K->11511K(65280K), 0.1022796 secs] 169646K->126415K(502528K), 0.1023638 secs]
    3654.289: [GC 3654.289: [ParNew: 54970K->10103K(65280K), 0.0925287 secs] 169874K->126293K(502528K), 0.0926106 secs]
    3655.378: [GC 3655.378: [ParNew: 53619K->7604K(65280K), 0.0838013 secs] 169809K->126406K(502528K), 0.0838872 secs]
    3656.793: [GC 3656.793: [ParNew: 51124K->6559K(65280K), 0.0721249 secs] 169926K->126518K(502528K), 0.0722063 secs]
    3658.039: [GC 3658.039: [ParNew: 50078K->5852K(65280K), 0.0611544 secs] 170038K->126534K(502528K), 0.0612345 secs]
    3659.232: [GC 3659.232: [ParNew: 49372K->3475K(65280K), 0.0568199 secs] 170054K->126536K(502528K), 0.0569019 secs]
    3660.516: [GC 3660.516: [ParNew: 46965K->3050K(65280K), 0.0383414 secs] 170026K->126610K(502528K), 0.0384230 secs]
    3661.721: [GC 3661.721: [ParNew: 46534K->2443K(65280K), 0.0381821 secs] 170093K->126809K(502528K), 0.0382645 secs]
    3662.905: [GC 3662.905: [ParNew: 45960K->2162K(65280K), 0.0305110 secs] 170326K->126950K(502528K), 0.0305950 secs]
    3663.903: [GC 3663.903: [ParNew: 45639K->2167K(65280K), 0.0273209 secs] 170427K->126959K(502528K), 0.0274050 secs]
    3664.880: [GC 3664.880: [ParNew: 45687K->2163K(65280K), 0.0295392 secs] 170479K->126955K(502528K), 0.0296221 secs]
    3666.067: [GC 3666.067: [ParNew: 45623K->2180K(65280K), 0.0290610 secs] 170416K->126997K(502528K), 0.0291431 secs]
    3667.031: [GC 3667.031: [ParNew: 45637K->1993K(65280K), 0.0258452 secs] 170454K->126822K(502528K), 0.0259277 secs]
    3668.186: [GC 3668.187: [ParNew: 45490K->2194K(65280K), 0.0282766 secs] 170318K->127031K(502528K), 0.0285730 secs]
    3669.157: [GC 3669.157: [ParNew: 45684K->2585K(65280K), 0.0329083 secs] 170521K->127421K(502528K), 0.0329883 secs]
    3670.298: [GC 3670.298: [ParNew: 46092K->2921K(65280K), 0.0350049 secs] 170928K->127762K(502528K), 0.0350876 secs]
    3671.481: [GC 3671.481: [ParNew: 46441K->2913K(65280K), 0.0343745 secs] 171282K->127762K(502528K), 0.0344578 secs]
    3672.438: [GC 3672.438: [ParNew: 46433K->2785K(65280K), 0.0376406 secs] 171282K->127642K(502528K), 0.0377320 secs]
    3673.431: [GC 3673.432: [ParNew: 46264K->2769K(65280K), 0.0479901 secs] 171121K->127634K(502528K), 0.0480816 secs]
    3674.544: [GC 3674.544: [ParNew: 46235K->2940K(65280K), 0.0343861 secs] 171100K->127808K(502528K), 0.0344719 secs]
    3675.513: [GC 3675.513: [ParNew: 46460K->2209K(65280K), 0.0328085 secs] 171328K->127680K(502528K), 0.0328934 secs]
    3676.449: [GC 3676.449: [ParNew: 45729K->2188K(65280K), 0.0361208 secs] 171200K->127683K(502528K), 0.0362110 secs]
    3677.573: [GC 3677.573: [ParNew: 45698K->2224K(65280K), 0.0313015 secs] 171193K->127739K(502528K), 0.0313844 secs]
    3678.589: [GC 3678.589: [ParNew: 45730K->2184K(65280K), 0.0295717 secs] 171246K->127699K(502528K), 0.0296568 secs]
    3679.771: [GC 3679.771: [ParNew: 45681K->2301K(65280K), 0.0316900 secs] 171196K->127824K(502528K), 0.0317727 secs]
    3680.610: [GC 3680.610: [ParNew: 45813K->2169K(65280K), 0.0299896 secs] 171336K->127712K(502528K), 0.0300721 secs]
    3683.104: [GC 3683.104: [ParNew: 45631K->3234K(65280K), 0.0487198 secs] 171174K->128777K(502528K), 0.0488314 secs]
    3684.630: [GC 3684.630: [ParNew: 46716K->3612K(65280K), 0.0457522 secs] 172259K->129155K(502528K), 0.0458459 secs]
    3685.528: [GC 3685.528: [ParNew: 47100K->3804K(65280K), 0.0455448 secs] 172643K->129355K(502528K), 0.0456360 secs]
    3686.322: [GC 3686.322: [ParNew: 47293K->2827K(65280K), 0.0327616 secs] 172844K->128378K(502528K), 0.0328469 secs]
    3687.173: [GC 3687.173: [ParNew: 46347K->2960K(65280K), 0.0375803 secs] 171898K->128583K(502528K), 0.0376613 secs]
    3688.183: [GC 3688.183: [ParNew: 46420K->3572K(65280K), 0.0423210 secs] 172043K->129268K(502528K), 0.0424006 secs]
    3688.906: [GC 3688.906: [ParNew: 47034K->3866K(65280K), 0.0401932 secs] 172729K->129625K(502528K), 0.0402759 secs]
    3737.574: [GC 3737.574: [ParNew: 47386K->4873K(65280K), 0.0548795 secs] 173145K->130648K(502528K), 0.0549672 secs]
    3747.277: [GC 3747.277: [ParNew: 48393K->5021K(65280K), 0.0528820 secs] 174168K->130836K(502528K), 0.0529859 secs]
    3816.623: [GC 3816.623: [ParNew: 48520K->5371K(65280K), 0.0499220 secs] 174335K->131214K(502528K), 0.0500100 secs]
    3817.632: [GC 3817.632: [ParNew: 48875K->5611K(65280K), 0.0507726 secs] 174718K->131483K(502528K), 0.0508587 secs]
    3818.375: [GC 3818.375: [ParNew: 49083K->5758K(65280K), 0.0527349 secs] 174954K->131713K(502528K), 0.0528363 secs]
    3866.459: [GC 3866.459: [ParNew: 49278K->8140K(65280K), 0.0821649 secs] 175233K->134323K(502528K), 0.0822527 secs]
    3918.355: [GC 3918.355: [ParNew: 51660K->11177K(65280K), 0.1058854 secs] 177843K->137500K(502528K), 0.1059783 secs]
    3960.953: [GC 3960.953: [ParNew: 54697K->13872K(65280K), 0.1300742 secs] 181020K->140211K(502528K), 0.1301609 secs]
    4031.623: [GC 4031.623: [ParNew: 57392K->14145K(65280K), 0.1287398 secs] 183731K->140492K(502528K), 0.1288159 secs]
    4060.378: [GC 4060.378: [ParNew: 57661K->13823K(65280K), 0.1233444 secs] 184008K->140178K(502528K), 0.1234330 secs]
    4078.151: [GC 4078.151: [ParNew: 57343K->13010K(65280K), 0.1145849 secs] 183698K->139373K(502528K), 0.1146660 secs]
    4085.711: [GC 4085.711: [ParNew: 56530K->13732K(65280K), 0.1232572 secs] 182893K->140095K(502528K), 0.1233427 secs]
    4138.438: [GC 4138.438: [ParNew: 57252K->13483K(65280K), 0.1176612 secs] 183615K->139850K(502528K), 0.1177434 secs]
    4180.876: [GC 4180.876: [ParNew: 57003K->14285K(65280K), 0.1237885 secs] 183370K->140656K(502528K), 0.1241224 secs]
    4189.742: [GC 4189.742: [ParNew: 57805K->14168K(65280K), 0.1212753 secs] 184176K->140551K(502528K), 0.1213542 secs]
    4343.519: [GC 4343.519: [ParNew: 57688K->15860K(65280K), 0.1382250 secs] 184071K->142245K(502528K), 0.1383067 secs]
    4374.512: [GC 4374.512: [ParNew: 59380K->18422K(65280K), 0.1605611 secs] 185765K->144815K(502528K), 0.1606458 secs]
    4503.487: [GC 4503.487: [ParNew: 61942K->19805K(65280K), 0.1622775 secs] 188335K->146202K(502528K), 0.1623606 secs]
    4599.699: [GC 4599.699: [ParNew: 63325K->20629K(65280K), 0.1712944 secs] 189722K->147146K(502528K), 0.1713796 secs]
    4603.303: [GC 4603.303: [ParNew: 64140K->19766K(65280K), 0.1661729 secs] 190657K->147369K(502528K), 0.1662524 secs]
    4756.014: [GC 4756.015: [ParNew: 63286K->21193K(65280K), 0.1788066 secs] 190889K->149359K(502528K), 0.1788894 secs]
    4913.103: [GC 4913.103: [ParNew: 64713K->18392K(65280K), 0.1648593 secs] 192879K->149288K(502528K), 0.1649419 secs]
    4930.305: [GC 4930.305: [ParNew: 61911K->19028K(65280K), 0.1564953 secs] 192808K->149924K(502528K), 0.1565798 secs]
    5439.853: [GC 5439.853: [ParNew: 62548K->18603K(65280K), 0.1454021 secs] 193444K->149500K(502528K), 0.1454876 secs]
    5579.563: [GC 5579.563: [ParNew: 62123K->19760K(65280K), 0.1617879 secs] 193020K->150656K(502528K), 0.1618706 secs]
    5684.485: [GC 5684.485: [ParNew: 63280K->17978K(65280K), 0.1951672 secs] 194176K->152709K(502528K), 0.1952527 secs]
    6484.072: [GC 6484.073: [ParNew: 61498K->16260K(65280K), 0.1285878 secs] 196229K->150990K(502528K), 0.1286732 secs]
    7593.767: [GC 7593.767: [ParNew: 59780K->16500K(65280K), 0.1285204 secs] 194510K->151231K(502528K), 0.1286022 secs]
    7641.332: [GC 7641.332: [ParNew: 60020K->18786K(65280K), 0.1559738 secs] 194751K->153516K(502528K), 0.1560602 secs]
    7656.108: [GC 7656.108: [ParNew: 62305K->16489K(65280K), 0.1312093 secs] 197036K->151220K(502528K), 0.1312995 secs]
    7669.374: [GC 7669.374: [ParNew: 59953K->16465K(65280K), 0.1220233 secs] 194683K->151195K(502528K), 0.1221027 secs]
    7670.239: [GC 7670.239: [ParNew: 59979K->16713K(65280K), 0.1259911 secs] 194709K->151443K(502528K), 0.1260887 secs]
    7699.374: [GC 7699.374: [ParNew: 60232K->20291K(65280K), 0.1600798 secs] 194963K->155021K(502528K), 0.1601665 secs]
    7744.878: [GC 7744.879: [ParNew: 63811K->21760K(65280K), 0.3046214 secs] 198541K->168265K(502528K), 0.3047029 secs]
    7793.116: [GC 7793.116: [ParNew: 65280K->20532K(65280K), 0.1877563 secs] 211785K->169259K(502528K), 0.1878404 secs]
    7820.103: [GC 7820.103: [ParNew: 64052K->17494K(65280K), 0.1598271 secs] 212779K->168522K(502528K), 0.1599110 secs]
    7832.847: [GC 7832.847: [ParNew: 61014K->17846K(65280K), 0.1470405 secs] 212042K->168874K(502528K), 0.1471215 secs]
    7873.669: [GC 7873.669: [ParNew: 61365K->18240K(65280K), 0.1503101 secs] 212394K->169268K(502528K), 0.1503896 secs]
    7882.733: [GC 7882.733: [ParNew: 61760K->18012K(65280K), 0.1476212 secs] 212788K->169040K(502528K), 0.1477094 secs]
    7915.619: [GC 7915.619: [ParNew: 61532K->18365K(65280K), 0.1499488 secs] 212560K->169393K(502528K), 0.1500298 secs]
    7925.786: [GC 7925.786: [ParNew: 61885K->18514K(65280K), 0.1514673 secs] 212913K->169543K(502528K), 0.1515445 secs]
    7959.260: [GC 7959.260: [ParNew: 62034K->18587K(65280K), 0.1558541 secs] 213062K->169615K(502528K), 0.1559386 secs]
    8031.352: [GC 8031.352: [ParNew: 62107K->20220K(65280K), 0.1822577 secs] 213135K->171248K(502528K), 0.1823455 secs]
    8351.475: [GC 8351.475: [ParNew: 63740K->12287K(65280K), 0.1210001 secs] 214768K->164416K(502528K), 0.1210866 secs]
    9662.346: [GC 9662.346: [ParNew: 55807K->11060K(65280K), 0.1014491 secs] 207936K->163189K(502528K), 0.1015377 secs]
    11460.133: [GC 11460.133: [ParNew: 54580K->10896K(65280K), 0.0981311 secs] 206709K->163025K(502528K), 0.0982136 secs]
    13256.529: [GC 13256.529: [ParNew: 54416K->11394K(65280K), 0.1038077 secs] 206545K->163523K(502528K), 0.1038861 secs]
    15056.829: [GC 15056.829: [ParNew: 54914K->11281K(65280K), 0.0997026 secs] 207043K->163410K(502528K), 0.0997868 secs]
    16853.131: [GC 16853.132: [ParNew: 54801K->11136K(65280K), 0.0995445 secs] 206930K->163265K(502528K), 0.0996215 secs]
    18597.096: [GC 18597.096: [ParNew: 54656K->10741K(65280K), 0.1013941 secs] 206785K->163311K(502528K), 0.1014790 secs]
    20284.758: [GC 20284.758: [ParNew: 54261K->9951K(65280K), 0.0992739 secs] 206831K->163413K(502528K), 0.0993580 secs]
    21968.813: [GC 21968.813: [ParNew: 53471K->9357K(65280K), 0.0921437 secs] 206932K->163423K(502528K), 0.0922427 secs]
    23763.720: [GC 23763.720: [ParNew: 52877K->9210K(65280K), 0.0910243 secs] 206943K->163559K(502528K), 0.0911229 secs]
    25560.474: [GC 25560.474: [ParNew: 52730K->8480K(65280K), 0.0858057 secs] 207079K->163563K(502528K), 0.0858880 secs]
    27359.974: [GC 27359.974: [ParNew: 52000K->8350K(65280K), 0.0833782 secs] 207083K->163762K(502528K), 0.0834605 secs]
    29158.245: [GC 29158.245: [ParNew: 51870K->8341K(65280K), 0.0801672 secs] 207282K->163969K(502528K), 0.0802519 secs]
    30906.679: [GC 30906.680: [ParNew: 51861K->7640K(65280K), 0.0819189 secs] 207489K->163838K(502528K), 0.0820018 secs]
    32586.581: [GC 32586.581: [ParNew: 51160K->7246K(65280K), 0.0760724 secs] 207358K->163839K(502528K), 0.0761496 secs]
    34326.413: [GC 34326.413: [ParNew: 50766K->7219K(65280K), 0.0863867 secs] 207359K->163982K(502528K), 0.0864766 secs]
    36064.740: [GC 36064.740: [ParNew: 50739K->7062K(65280K), 0.0719391 secs] 207502K->163997K(502528K), 0.0720171 secs]
    37862.611: [GC 37862.611: [ParNew: 50582K->7313K(65280K), 0.0721372 secs] 207517K->164249K(502528K), 0.0722187 secs]
    39661.144: [GC 39661.144: [ParNew: 50833K->7173K(65280K), 0.0708408 secs] 207769K->164127K(502528K), 0.0709202 secs]
    41459.532: [GC 41459.532: [ParNew: 50692K->7735K(65280K), 0.0744718 secs] 207646K->164693K(502528K), 0.0745544 secs]
    43253.159: [GC 43253.159: [ParNew: 51255K->7267K(65280K), 0.0718339 secs] 208213K->164297K(502528K), 0.0719119 secs]
    45008.863: [GC 45008.863: [ParNew: 50787K->7276K(65280K), 0.0735006 secs] 207817K->164406K(502528K), 0.0735789 secs]
    46749.127: [GC 46749.128: [ParNew: 50796K->7197K(65280K), 0.0716272 secs] 207926K->164416K(502528K), 0.0717090 secs]
    48413.260: [GC 48413.260: [ParNew: 50717K->7332K(65280K), 0.0710894 secs] 207936K->164561K(502528K), 0.0711694 secs]
    50168.857: [GC 50168.857: [ParNew: 50852K->7141K(65280K), 0.0721033 secs] 208081K->164559K(502528K), 0.0721960 secs]
    51966.250: [GC 51966.250: [ParNew: 50661K->7188K(65280K), 0.0741831 secs] 208079K->164708K(502528K), 0.0742743 secs]
    53763.404: [GC 53763.404: [ParNew: 50708K->7131K(65280K), 0.0722026 secs] 208228K->164701K(502528K), 0.0722802 secs]
    55560.990: [GC 55560.990: [ParNew: 50651K->7296K(65280K), 0.0729036 secs] 208221K->164874K(502528K), 0.0729834 secs]
    57358.573: [GC 57358.573: [ParNew: 50816K->7246K(65280K), 0.0725093 secs] 208394K->164853K(502528K), 0.0725919 secs]
    59049.686: [GC 59049.686: [ParNew: 50766K->6894K(65280K), 0.0753706 secs] 208373K->164993K(502528K), 0.0754753 secs]
    60789.459: [GC 60789.459: [ParNew: 50414K->6154K(65280K), 0.0740534 secs] 208513K->164995K(502528K), 0.0741301 secs]
    62468.964: [GC 62468.965: [ParNew: 49668K->6039K(65280K), 0.0671938 secs] 208510K->165291K(502528K), 0.0672942 secs]
    64269.542: [GC 64269.543: [ParNew: 49559K->5303K(65280K), 0.0663282 secs] 208811K->165205K(502528K), 0.0664173 secs]
    66064.107: [GC 66064.107: [ParNew: 48823K->5265K(65280K), 0.0583508 secs] 208725K->165292K(502528K), 0.0584473 secs]
    67862.296: [GC 67862.296: [ParNew: 48785K->5664K(65280K), 0.0600033 secs] 208812K->165754K(502528K), 0.0600859 secs]
    69656.032: [GC 69656.032: [ParNew: 49184K->5264K(65280K), 0.0585394 secs] 209274K->165434K(502528K), 0.0586176 secs]
    71445.409: [GC 71445.409: [ParNew: 48784K->5221K(65280K), 0.0574911 secs] 208954K->165455K(502528K), 0.0575716 secs]
    73151.209: [GC 73151.209: [ParNew: 48741K->5252K(65280K), 0.0581342 secs] 208975K->165572K(502528K), 0.0582132 secs]
    74891.440: [GC 74891.441: [ParNew: 48772K->5194K(65280K), 0.0836963 secs] 209092K->165577K(502528K), 0.0838127 secs]
    76572.663: [GC 76572.664: [ParNew: 48714K->5339K(65280K), 0.0589695 secs] 209097K->165781K(502528K), 0.0590619 secs]
    77464.218: [GC 77464.218: [ParNew: 48859K->7274K(65280K), 0.0723844 secs] 209301K->167796K(502528K), 0.0724714 secs]
    78665.073: [GC 78665.073: [ParNew: 50794K->7131K(65280K), 0.0704455 secs] 211316K->167674K(502528K), 0.0705427 secs]
    80460.072: [GC 80460.073: [ParNew: 50651K->6852K(65280K), 0.0684256 secs] 211194K->167518K(502528K), 0.0685052 secs]
    82255.465: [GC 82255.465: [ParNew: 50372K->6836K(65280K), 0.0669590 secs] 211038K->167507K(502528K), 0.0670658 secs]
    84013.022: [GC 84013.022: [ParNew: 50356K->6831K(65280K), 0.0685211 secs] 211027K->167638K(502528K), 0.0686151 secs]
    85753.299: [GC 85753.299: [ParNew: 50351K->6816K(65280K), 0.0667316 secs] 211158K->167627K(502528K), 0.0668240 secs]
    87373.540: [GC 87373.540: [ParNew: 50336K->7076K(65280K), 0.0752180 secs] 211147K->168026K(502528K), 0.0753182 secs]
    89168.786: [GC 89168.786: [ParNew: 50595K->7077K(65280K), 0.0688814 secs] 211545K->168036K(502528K), 0.0689607 secs]
    90964.639: [GC 90964.639: [ParNew: 50597K->7368K(65280K), 0.0718601 secs] 211556K->168462K(502528K), 0.0719400 secs]
    92763.659: [GC 92763.664: [ParNew: 50888K->7071K(65280K), 0.0929624 secs] 211982K->168169K(502528K), 0.0930727 secs]
    94515.410: [GC 94515.411: [ParNew: 50591K->7072K(65280K), 0.0861412 secs] 211689K->168311K(502528K), 0.0862422 secs]
    96255.758: [GC 96255.758: [ParNew: 50592K->7068K(65280K), 0.0692328 secs] 211831K->168307K(502528K), 0.0693286 secs]
    97935.516: [GC 97935.516: [ParNew: 50588K->7071K(65280K), 0.0725070 secs] 211827K->168449K(502528K), 0.0725841 secs]
    99678.427: [GC 99678.427: [ParNew: 50586K->7217K(65280K), 0.0698848 secs] 211965K->168596K(502528K), 0.0699760 secs]
    101475.216: [GC 101475.216: [ParNew: 50737K->7070K(65280K), 0.0715252 secs] 212116K->168589K(502528K), 0.0716062 secs]
    103268.815: [GC 103268.815: [ParNew: 50590K->7076K(65280K), 0.0688672 secs] 212109K->168594K(502528K), 0.0689493 secs]
    105066.107: [GC 105066.107: [ParNew: 50596K->7556K(65280K), 0.0737961 secs] 212114K->169215K(502528K), 0.0738803 secs]
    106866.073: [GC 106866.073: [ParNew: 51076K->7066K(65280K), 0.0685328 secs] 212735K->168729K(502528K), 0.0686146 secs]
    108657.059: [GC 108657.059: [ParNew: 50586K->6957K(65280K), 0.0703425 secs] 212248K->168767K(502528K), 0.0704210 secs]
    110448.659: [GC 110448.659: [ParNew: 50476K->7076K(65280K), 0.0709344 secs] 212287K->168886K(502528K), 0.0710250 secs]
    112156.326: [GC 112156.326: [ParNew: 50596K->6950K(65280K), 0.0695814 secs] 212406K->168900K(502528K), 0.0696628 secs]
    113895.827: [GC 113895.827: [ParNew: 50470K->7055K(65280K), 0.0685722 secs] 212420K->169006K(502528K), 0.0686505 secs]
    115581.856: [GC 115581.856: [ParNew: 50575K->7091K(65280K), 0.0712009 secs] 212526K->169182K(502528K), 0.0712867 secs]
    117382.420: [GC 117382.420: [ParNew: 50611K->7090K(65280K), 0.0695085 secs] 212702K->169196K(502528K), 0.0695871 secs]
    119171.951: [GC 119171.951: [ParNew: 50610K->6901K(65280K), 0.0696755 secs] 212716K->169147K(502528K), 0.0697786 secs]
    120967.764: [GC 120967.764: [ParNew: 50421K->7704K(65280K), 0.0723517 secs] 212667K->169949K(502528K), 0.0724341 secs]
    122766.907: [GC 122766.907: [ParNew: 51224K->6909K(65280K), 0.0699871 secs] 213469K->169294K(502528K), 0.0700669 secs]
    124560.236: [GC 124560.236: [ParNew: 50429K->7044K(65280K), 0.0694500 secs] 212814K->169430K(502528K), 0.0695288 secs]
    126314.859: [GC 126314.859: [ParNew: 50564K->6904K(65280K), 0.0712069 secs] 212950K->169429K(502528K), 0.0712885 secs]
    127996.379: [GC 127996.379: [ParNew: 50424K->7049K(65280K), 0.0692597 secs] 212949K->169578K(502528K), 0.0693608 secs]
    129734.640: [GC 129734.640: [ParNew: 50569K->6905K(65280K), 0.0701952 secs] 213098K->169571K(502528K), 0.0702743 secs]
    131485.956: [GC 131485.956: [ParNew: 50425K->6012K(65280K), 0.0721312 secs] 213091K->169783K(502528K), 0.0722122 secs]
    133273.250: [GC 133273.250: [ParNew: 49532K->5552K(65280K), 0.0634629 secs] 213303K->169719K(502528K), 0.0635431 secs]
    135069.189: [GC 135069.189: [ParNew: 49072K->5832K(65280K), 0.0635298 secs] 213239K->170268K(502528K), 0.0636293 secs]
    136867.723: [GC 136867.723: [ParNew: 49352K->5422K(65280K), 0.0764772 secs] 213788K->169862K(502528K), 0.0765707 secs]
    138660.426: [GC 138660.426: [ParNew: 48942K->5419K(65280K), 0.0618826 secs] 213382K->169995K(502528K), 0.0619720 secs]
    140452.595: [GC 140452.595: [ParNew: 48939K->5512K(65280K), 0.0588023 secs] 213515K->170088K(502528K), 0.0588812 secs]
    142215.203: [GC 142215.203: [ParNew: 49032K->5164K(65280K), 0.0618999 secs] 213608K->170138K(502528K), 0.0619886 secs]
    143955.774: [GC 143955.774: [ParNew: 48684K->5158K(65280K), 0.0574246 secs] 213658K->170137K(502528K), 0.0575059 secs]
    145634.925: [GC 145634.925: [ParNew: 48678K->5164K(65280K), 0.0589323 secs] 213657K->170278K(502528K), 0.0590126 secs]
    146474.320: [GC 146474.320: [ParNew: 48680K->6476K(65280K), 0.0668930 secs] 213795K->171595K(502528K), 0.0669774 secs]
    146487.198: [GC 146487.198: [ParNew: 49976K->8383K(65280K), 0.0821546 secs] 215094K->173638K(502528K), 0.0822372 secs]
    146498.218: [GC 146498.218: [ParNew: 51903K->8494K(65280K), 0.0808402 secs] 217158K->173753K(502528K), 0.0809268 secs]
    146621.742: [GC 146621.742: [ParNew: 52014K->9954K(65280K), 0.0880839 secs] 217273K->175353K(502528K), 0.0881725 secs]
    146668.584: [GC 146668.584: [ParNew: 53435K->10075K(65280K), 0.0865637 secs] 218833K->175473K(502528K), 0.0866467 secs]
    146669.433: [GC 146669.433: [ParNew: 53543K->9978K(65280K), 0.0831940 secs] 218941K->175516K(502528K), 0.0832777 secs]
    146670.585: [GC 146670.585: [ParNew: 53496K->10403K(65280K), 0.0863593 secs] 219034K->175946K(502528K), 0.0864530 secs]
    146671.445: [GC 146671.445: [ParNew: 53864K->10513K(65280K), 0.0870618 secs] 219406K->176164K(502528K), 0.0871501 secs]
    146672.430: [GC 146672.430: [ParNew: 54027K->10780K(65280K), 0.0869502 secs] 219678K->176458K(502528K), 0.0870317 secs]
    Dec 21, 2005 10:38:29...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_2] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    Dec 21, 2005 10:43:52...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_0] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    147074.669: [GC 147074.670: [ParNew: 54300K->12840K(65280K), 0.1189704 secs] 219978K->178606K(502528K), 0.1190562 secs]
    Dec 21, 2005 10:55:36...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_12] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    148290.231: [GC 148290.231: [ParNew: 56360K->12782K(65280K), 0.1503433 secs] 222126K->178608K(502528K), 0.1504337 secs]
    150090.867: [GC 150090.867: [ParNew: 56302K->10237K(65280K), 0.0913773 secs] 222128K->176140K(502528K), 0.0914770 secs]
    151405.068: [GC 151405.068: [ParNew: 53757K->10957K(65280K), 0.1131899 secs] 219660K->176924K(502528K), 0.1132787 secs]
    151573.130: [GC 151573.130: [ParNew: 54477K->12009K(65280K), 0.1105486 secs] 220444K->178051K(502528K), 0.1106298 secs]
    151583.801: [GC 151583.801: [ParNew: 55528K->11837K(65280K), 0.1363942 secs] 221570K->177943K(502528K), 0.1365229 secs]
    151585.187: [GC 151585.187: [ParNew: 55357K->12262K(65280K), 0.1027758 secs] 221463K->178428K(502528K), 0.1028696 secs]
    151704.799: [GC 151704.799: [ParNew: 55782K->16482K(65280K), 0.1512273 secs] 221948K->182732K(502528K), 0.1513098 secs]
    151791.053: [GC 151791.054: [ParNew: 60000K->18141K(65280K), 0.1595087 secs] 226251K->184444K(502528K), 0.1595915 secs]
    151792.338: [GC 151792.338: [ParNew: 61636K->18408K(65280K), 0.1604923 secs] 227939K->184798K(502528K), 0.1605900 secs]
    151793.708: [GC 151793.708: [ParNew: 61928K->19006K(65280K), 0.1669287 secs] 228318K->185412K(502528K), 0.1670252 secs]
    151847.335: [GC 151847.335: [ParNew: 62526K->21760K(65280K), 0.2109225 secs] 228932K->190286K(502528K), 0.2110108 secs]
    151917.634: [GC 151917.635: [ParNew: 65248K->19642K(65280K), 0.2041854 secs] 233774K->191631K(502528K), 0.2042720 secs]
    151919.091: [GC 151919.091: [ParNew: 63115K->19752K(65280K), 0.1755163 secs] 235104K->191741K(502528K), 0.1756261 secs]
    151920.489: [GC 151920.489: [ParNew: 63268K->19289K(65280K), 0.1789198 secs] 235257K->191815K(502528K), 0.1790029 secs]
    151921.968: [GC 151921.969: [ParNew: 62800K->19195K(65280K), 0.1739489 secs] 235326K->191722K(502528K), 0.1740248 secs]
    151923.472: [GC 151923.472: [ParNew: 62714K->19183K(65280K), 0.1737547 secs] 235240K->191709K(502528K), 0.1738378 secs]
    151924.819: [GC 151924.819: [ParNew: 62660K->19104K(65280K), 0.1726940 secs] 235186K->191630K(502528K), 0.1727776 secs]
    151926.297: [GC 151926.297: [ParNew: 62616K->19010K(65280K), 0.1719793 secs] 235142K->191536K(502528K), 0.1721124 secs]
    151927.745: [GC 151927.745: [ParNew: 62530K->19056K(65280K), 0.1732976 secs] 235056K->191582K(502528K), 0.1733785 secs]
    151929.187: [GC 151929.187: [ParNew: 62576K->19046K(65280K), 0.1718943 secs] 235102K->191573K(502528K), 0.1719736 secs]
    151930.592: [GC 151930.592: [ParNew: 62566K->19036K(65280K), 0.1724726 secs] 235093K->191563K(502528K), 0.1726179 secs]
    151932.079: [GC 151932.080: [ParNew: 62499K->18988K(65280K), 0.1743994 secs] 235026K->191515K(502528K), 0.1746558 secs]
    151933.518: [GC 151933.519: [ParNew: 62456K->18990K(65280K), 0.1738150 secs] 234982K->191516K(502528K), 0.1738905 secs]
    151934.946: [GC 151934.946: [ParNew: 62506K->19038K(65280K), 0.1736511 secs] 235033K->191564K(502528K), 0.1737424 secs]
    151936.327: [GC 151936.327: [ParNew: 62508K->19072K(65280K), 0.1729020 secs] 235034K->191599K(502528K), 0.1729867 secs]
    151937.732: [GC 151937.732: [ParNew: 62580K->19000K(65280K), 0.1725637 secs] 235106K->191526K(502528K), 0.1726543 secs]
    151939.163: [GC 151939.163: [ParNew: 62520K->18937K(65280K), 0.1750641 secs] 235046K->191672K(502528K), 0.1751672 secs]
    151940.640: [GC 151940.640: [ParNew: 62415K->18526K(65280K), 0.1699481 secs] 235149K->191682K(502528K), 0.1700311 secs]
    151942.066: [GC 151942.066: [ParNew: 62006K->18210K(65280K), 0.1785228 secs] 235162K->191590K(502528K), 0.1786112 secs]
    151943.836: [GC 151943.836: [ParNew: 61708K->18148K(65280K), 0.1700739 secs] 235088K->191824K(502528K), 0.1701556 secs]
    151945.685: [GC 151945.686: [ParNew: 61604K->17675K(65280K), 0.1706954 secs] 235281K->191966K(502528K), 0.1708006 secs]
    151947.022: [GC 151947.023: [ParNew: 61158K->16837K(65280K), 0.1605375 secs] 235449K->191680K(502528K), 0.1606187 secs]
    151948.444: [GC 151948.444: [ParNew: 60351K->16595K(65280K), 0.1570340 secs] 235194K->191769K(502528K), 0.1571165 secs]
    151949.944: [GC 151949.944: [ParNew: 60065K->15325K(65280K), 0.1571537 secs] 235239K->191759K(502528K), 0.1572389 secs]
    151951.345: [GC 151951.346: [ParNew: 58790K->14234K(65280K), 0.1442205 secs] 235224K->191632K(502528K), 0.1443192 secs]
    151953.534: [GC 151953.534: [ParNew: 57745K->14739K(65280K), 0.1452681 secs] 235144K->192293K(502528K), 0.1453518 secs]
    151967.119: [GC 151967.120: [ParNew: 58257K->16552K(65280K), 0.1635239 secs] 235811K->194114K(502528K), 0.1636335 secs]
    152054.743: [GC 152054.743: [ParNew: 60072K->13307K(65280K), 0.1772338 secs] 237634K->194287K(502528K), 0.1773294 secs]
    152073.277: [GC 152073.277: [ParNew: 56827K->10128K(65280K), 0.1194177 secs] 237806K->192888K(502528K), 0.1196492 secs]
    152088.716: [GC 152088.716: [ParNew: 53648K->10072K(65280K), 0.0951945 secs] 236408K->192839K(502528K), 0.0953016 secs]
    152105.085: [GC 152105.085: [ParNew: 53592K->10563K(65280K), 0.1000237 secs] 236359K->193339K(502528K), 0.1001342 secs]
    152120.042: [GC 152120.042: [ParNew: 54083K->4267K(65280K), 0.1122373 secs] 236859K->192952K(502528K), 0.1123424 secs]
    152121.068: [GC 152121.069: [ParNew: 47774K->2555K(65280K), 0.0535961 secs] 236459K->193121K(502528K), 0.0536926 secs]
    152192.507: [GC 152192.507: [ParNew: 46075K->3575K(65280K), 0.0452278 secs] 236641K->194141K(502528K), 0.0453222 secs]
    152214.851: [GC 152214.851: [ParNew: 47041K->4089K(65280K), 0.0465905 secs] 237607K->194659K(502528K), 0.0466852 secs]
    152220.676: [GC 152220.676: [ParNew: 47609K->4093K(65280K), 0.0442974 secs] 238179K->194670K(502528K), 0.0443794 secs]
    152254.306: [GC 152254.306: [ParNew: 47613K->4510K(65280K), 0.0487350 secs] 238190K->195088K(502528K), 0.0488635 secs]
    152302.839: [GC 152302.839: [ParNew: 48030K->4407K(65280K), 0.0487263 secs] 238608K->194985K(502528K), 0.0488082 secs]
    152434.953: [GC 152434.953: [ParNew: 47899K->5347K(65280K), 0.0586679 secs] 238476K->195928K(502528K), 0.0587538 secs]
    152436.128: [GC 152436.128: [ParNew: 48866K->4663K(65280K), 0.0504989 secs] 239448K->195245K(502528K), 0.0511679 secs]
    152505.944: [GC 152505.944: [ParNew: 48183K->6849K(65280K), 0.0748242 secs] 238765K->197431K(502528K), 0.0749053 secs]
    Dec 21, 2005 12:17:45...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_29] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    Dec 21, 2005 12:18:28...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_6] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    152734.706: [GC 152734.706: [ParNew: 50365K->8994K(65280K), 0.0999654 secs] 240947K->199576K(502528K), 0.1000557 secs]
    Dec 21, 2005 12:19:57...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_17] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    Dec 21, 2005 12:20:43...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_33] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    152835.135: [GC 152835.135: [ParNew: 52514K->9924K(65280K), 0.1081591 secs] 243096K->200514K(502528K), 0.1082341 secs]
    152898.542: [GC 152898.543: [ParNew: 53444K->9725K(65280K), 0.0923608 secs] 244034K->200315K(502528K), 0.0924486 secs]
    152921.777: [GC 152921.778: [ParNew: 53245K->8498K(65280K), 0.0745045 secs] 243835K->199088K(502528K), 0.0745870 secs]
    152931.006: [GC 152931.006: [ParNew: 52018K->8390K(65280K), 0.0738771 secs] 242608K->198983K(502528K), 0.0739638 secs]
    152989.167: [GC 152989.167: [ParNew: 51856K->8644K(65280K), 0.0800451 secs] 242450K->199237K(502528K), 0.0802578 secs]
    152990.573: [GC 152990.573: [ParNew: 52103K->8992K(65280K), 0.0807233 secs] 242696K->199632K(502528K), 0.0808169 secs]
    152991.851: [GC 152991.851: [ParNew: 52459K->9677K(65280K), 0.0859301 secs] 243099K->200325K(502528K), 0.0860109 secs]
    152993.127: [GC 152993.128: [ParNew: 53197K->10402K(65280K), 0.0920703 secs] 243845K->201049K(502528K), 0.0922497 secs]
    152994.420: [GC 152994.420: [ParNew: 53922K->11011K(65280K), 0.0971546 secs] 244569K->201670K(502528K), 0.0972542 secs]
    152995.791: [GC 152995.791: [ParNew: 54474K->11688K(65280K), 0.1016803 secs] 245134K->202360K(502528K), 0.1017776 secs]
    152997.097: [GC 152997.098: [ParNew: 55189K->12267K(65280K), 0.1066965 secs] 245861K->202939K(502528K), 0.1068716 secs]
    152998.468: [GC 152998.468: [ParNew: 55782K->13005K(65280K), 0.1142849 secs] 246454K->203685K(502528K), 0.1143794 secs]
    152999.859: [GC 152999.859: [ParNew: 56487K->13580K(65280K), 0.1174207 secs] 247166K->204260K(502528K), 0.1175094 secs]
    153001.151: [GC 153001.151: [ParNew: 57083K->14240K(65280K), 0.1253082 secs] 247763K->204920K(502528K), 0.1254022 secs]
    153002.480: [GC 153002.480: [ParNew: 57717K->14915K(65280K), 0.1311446 secs] 248397K->205626K(502528K), 0.1312270 secs]
    153003.827: [GC 153003.827: [ParNew: 58435K->15052K(65280K), 0.1351621 secs] 249146K->206329K(502528K), 0.1352514 secs]
    153005.207: [GC 153005.207: [ParNew: 58561K->15450K(65280K), 0.1373798 secs] 249837K->206929K(502528K), 0.1374697 secs]
    153006.549: [GC 153006.549: [ParNew: 58967K->16050K(65280K), 0.1419329 secs] 250446K->207606K(502528K), 0.1420169 secs]
    153007.898: [GC 153007.898: [ParNew: 59530K->16705K(65280K), 0.1462525 secs] 251086K->208351K(502528K), 0.1463542 secs]
    153009.366: [GC 153009.366: [ParNew: 60169K->18389K(65280K), 0.1845174 secs] 251816K->210039K(502528K), 0.1846238 secs]
    153010.409: [GC 153010.409: [ParNew: 61853K->18911K(65280K), 0.1817041 secs] 253503K->210735K(502528K), 0.1818127 secs]
    153011.509: [GC 153011.509: [ParNew: 62402K->19538K(65280K), 0.1747589 secs] 254226K->211369K(502528K), 0.1748610 secs]
    153012.711: [GC 153012.711: [ParNew: 63058K->20256K(65280K), 0.1813420 secs] 254889K->212410K(502528K), 0.1814206 secs]
    153013.912: [GC 153013.912: [ParNew: 63768K->20114K(65280K), 0.1808615 secs] 255922K->212903K(502528K), 0.1809485 secs]
    153014.985: [GC 153014.985: [ParNew: 63634K->20229K(65280K), 0.1829864 secs] 256423K->213630K(502528K), 0.1830969 secs]
    153029.403: [GC 153029.403: [ParNew: 63706K->5974K(65280K), 0.0763713 secs] 257106K->200749K(502528K), 0.0764555 secs]
    153030.777: [GC 153030.777: [ParNew: 49489K->6277K(65280K), 0.0606384 secs] 244263K->201051K(502528K), 0.0607235 secs]
    153057.003: [GC 153057.003: [ParNew: 49755K->6763K(65280K), 0.0723002 secs] 244530K->201538K(502528K), 0.0724217 secs]
    153057.930: [GC 153057.930: [ParNew: 50230K->6071K(65280K), 0.0589461 secs] 245005K->200846K(502528K), 0.0590408 secs]
    153058.847: [GC 153058.847: [ParNew: 49579K->6300K(65280K), 0.0609143 secs] 244354K->201075K(502528K), 0.0610135 secs]
    153079.875: [GC 153079.875: [ParNew: 49820K->6489K(65280K), 0.0744646 secs] 244595K->202147K(502528K), 0.0745490 secs]
    153157.043: [GC 153157.043: [ParNew: 50009K->4809K(65280K), 0.0792849 secs] 245667K->202144K(502528K), 0.0793735 secs]
    153180.772: [GC 153180.772: [ParNew: 48323K->4289K(65280K), 0.0532773 secs] 245658K->202212K(502528K), 0.0533753 secs]
    153181.722: [GC 153181.723: [ParNew: 47809K->4534K(65280K), 0.0482061 secs] 245732K->202470K(502528K), 0.0483078 secs]
    153391.843: [GC 153391.843: [ParNew: 48054K->7212K(65280K), 0.0761624 secs] 245990K->205174K(502528K), 0.0762497 secs]
    153444.368: [GC 153444.369: [ParNew: 50707K->6970K(65280K), 0.0856622 secs] 248669K->205013K(502528K), 0.0857611 secs]
    153452.541: [GC 153452.541: [ParNew: 50490K->7072K(65280K), 0.0709575 secs] 248533K->205155K(502528K), 0.0710497 secs]
    153464.371: [GC 153464.371: [ParNew: 50592K->7240K(65280K), 0.0708424 secs] 248675K->205354K(502528K), 0.0709596 secs]
    Dec 21, 2005 12:33:10...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_4] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    153656.532: [GC 153656.532: [ParNew: 50760K->10684K(65280K), 0.1104991 secs] 248874K->208831K(502528K), 0.1105775 secs]
    153679.987: [GC 153679.987: [ParNew: 54204K->9713K(65280K), 0.0937033 secs] 252351K->207892K(502528K), 0.0937929 secs]
    153702.773: [GC 153702.773: [ParNew: 53233K->9276K(65280K), 0.0846860 secs] 251411K->207503K(502528K), 0.0847710 secs]
    153712.805: [GC 153712.805: [ParNew: 52796K->9487K(65280K), 0.0881064 secs] 251023K->207746K(502528K), 0.0881913 secs]
    153745.147: [GC 153745.147: [ParNew: 53007K->9812K(65280K), 0.0897370 secs] 251266K->208107K(502528K), 0.0898237 secs]
    Dec 21, 2005 12:36:31...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_11] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    153791.447: [GC 153791.447: [ParNew: 53332K->10623K(65280K), 0.1023543 secs] 251627K->208946K(502528K), 0.1024430 secs]
    153813.432: [GC 153813.432: [ParNew: 54143K->9740K(65280K), 0.1047705 secs] 252466K->208095K(502528K), 0.1048702 secs]
    153833.674: [GC 153833.674: [ParNew: 53260K->9998K(65280K), 0.0910978 secs] 251615K->208396K(502528K), 0.0911910 secs]
    Dec 21, 2005 12:37:54...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_9] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    153855.367: [GC 153855.367: [ParNew: 53518K->11085K(65280K), 0.1036108 secs] 251916K->209515K(502528K), 0.1036977 secs]
    Dec 21, 2005 12:38:30...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_9] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    Dec 21, 2005 12:39:12...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_12] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    Dec 21, 2005 12:42:23...               com.sap.security.logToFile [SAPEngine_Application_Thread[impl:3]_31] Fatal: tclbsc     | ACCESS.ERROR     | NONE = DcQoof188jKer9P4UP4l47szf+s=     |      | Permission=[Pcd.Use], Principal=[USER.PRIVATE_DATASOURCE.un:tclbsc]
    154254.258: [GC 154254.258: [ParNew: 54605K->14285K(65280K), 0.1488136 secs] 253035K->212748K(502528K), 0.1488940 secs]
    154563.529: [GC 154563.529: [ParNew: 57805K->12366K(65280K), 0.1193090 secs] 256268K->210861K(502528K), 0.1193918 secs]
    154616.020: [GC 154616.020: [ParNew: 55886K->12594K(65280K), 0.1163565 secs] 254381K->211121K(502528K), 0.1164469 secs]
    154728.306: [GC 154728.307: [ParNew: 56114K->13067K(65280K), 0.1280616 secs] 254641K->211824K(502528K), 0.1281457 secs]
    154793.578: [GC 154793.578: [ParNew: 56581K->12342K(65280K), 0.1090111 secs] 255339K->211164K(502528K), 0.1090946 secs]
    154969.479: [GC 154969.479: [ParNew: 55862K->12320K(65280K), 0.1138594 secs] 254684K->211227K(502528K), 0.1139470 secs]
    155471.328: [GC 155471.328: [ParNew: 55840K->14172K(65280K), 0.1338213 secs] 254747K->213131K(502528K), 0.1338993 secs]
    156675.154: [GC 156675.154: [ParNew: 57692K->12704K(65280K), 0.1172428 secs] 256651K->211768K(502528K), 0.1173255 secs]
    156756.009: [GC 156756.009: [ParNew: 56224K->14884K(65280K), 0.1379722 secs] 255287K->214143K(502528K), 0.1380556 secs]
    157259.597: [GC 157259.597: [ParNew: 58404K->15029K(65280K), 0.1358861 secs] 257663K->214432K(502528K), 0.1359716 secs]
    158536.280: [GC 158536.280: [ParNew: 58549K->14866K(65280K), 0.1353465 secs] 257952K->214278K(502528K), 0.1354301 secs]
    160271.913: [GC 160271.913: [ParNew: 58386K->14179K(65280K), 0.1213364 secs] 257798K->213610K(502528K), 0.1214329 secs]
    162052.965: [GC 162052.965: [ParNew: 57699K->13573K(65280K), 0.1197330 secs] 257130K->213005K(502528K), 0.1198083 secs]
    163635.425: [GC 163635.425: [ParNew: 57093K->13701K(65280K), 0.1530691 secs] 256525K->213133K(502528K), 0.1531540 secs]
    164837.098: [GC 164837.098: [ParNew: 57221K->14370K(65280K), 0.1391719 secs] 256653K->213982K(502528K), 0.1392554 secs]
    166258.169: [GC 166258.169: [ParNew: 57890K->14519K(65280K), 0.1311172 secs] 257502K->214199K(502528K), 0.1311984 secs]
    167896.193: [GC 167896.193: [ParNew: 58039K->14005K(65280K), 0.1251256 secs] 257719K->213736K(502528K), 0.1252037 secs]
    168995.770: [GC 168995.770: [ParNew: 57525K->14908K(65280K), 0.1323343 secs] 257256K->214639K(502528K), 0.1324177 secs]
    170473.044: [GC 170473.044: [ParNew: 58406K->13246K(65280K), 0.1297561 secs] 258137K->214509K(502528K), 0.1298420 secs]
    172138.882: [GC 172138.882: [ParNew: 56766K->13179K(65280K), 0.1242925 secs] 258029K->214529K(502528K), 0.1244869 secs]
    173765.901: [GC 173765.901: [ParNew: 56699K->13108K(65280K), 0.1133061 secs] 258049K->214530K(502528K), 0.1134013 secs]
    175397.537: [GC 175397.538: [ParNew: 56628K->13099K(65280K), 0.1132888 secs] 258050K->214530K(502528K), 0.1133802 secs]
    177073.832: [GC 177073.832: [ParNew: 56619K->11921K(65280K), 0.1174916 secs] 258050K->215134K(502528K), 0.1176224 secs]
    178860.479: [GC 178860.479: [ParNew: 55441K->11246K(65280K), 0.0978596 secs] 258654K->214657K(502528K), 0.0979392 secs]
    180495.593: [GC 180495.593: [ParNew: 54766K->11270K(65280K), 0.0992530 secs] 258177K->214693K(502528K), 0.0993352 secs]
    182174.446: [GC 182174.446: [ParNew: 54790K->12055K(65280K), 0.1081207 secs] 258213K->215500K(502528K), 0.1082003 secs]
    183955.471: [GC 183955.472: [ParNew: 55572K->11346K(65280K), 0.1053898 secs] 259018K->214800K(502528K), 0.1054727 secs]
    SAP J2EE Engine Version 6.40   PatchLevel 87289.311 is shutting down!  PatchLevel 87289.311 November 18, 2004 20:31 GMT
    Stopping services.
      Service ssl stopped. (0 ms)
      Service DQE stopped. (1141 ms)
      Service jms_provider stopped. (20000 ms) - Timeout expired.
      Service classload stopped. (0 ms)
      Service servlet_jsp stopped. (20000 ms) - Timeout expired.
      Service sld stopped. (20000 ms) - Timeout expired.
      Service pmi stopped. (47 ms)
      Service tcsecdestinations~service stopped. (0 ms)
      Service tcsecsecurestorage~service stopped. (0 ms)

    Hi,
    Apply EP 6.0 SP 11. Maybe that helps. As I find out it's a problem to run with different SP levels.
    Regards,
    daniel

  • How to access an EJB from a web application deployed in the same server

    Hey All,
    I deployed an EJB named EventServerBean to Sun Application Server 9.0, and put the client side jar file (named eventserver.jar which is generated by Sun Application Server) to C:\Sun\AppServer\lib. Now, I have a web application which is a simple jave file -- lookup EventServer EJB and invoke a remote method in this EJB. However, the web application always throws an exception "java.lang.NoClassDefFoundError: eventserver/EventServerRemoteHome"
    Here is my java class that access the ejb:
    public class Post_Event {
        public HashMap<String, String> getEventInfo(String event_name, String site) {
            System.out.println("Post_Event, the class path: " + System.getProperty("java.class.path"));       
            System.out.println("Post_Event, user.dir: " + System.getProperty("user.dir"));
            System.out.println("Post_Event, java.library.path: " + System.getProperty("java.library.path"));
            HashMap<String, String> result = null;
            EventServerRemote remote = null;
            StringTokenizer st, st2;
            // here get the event information from host
            try {
                String lookupStr = "corbaname:iiop:" + site + ":3700#ejb/EventServerBean";
                InitialContext initialContext = new InitialContext();
                EventServerRemoteHome remoteHome = (EventServerRemoteHome) javax.rmi.PortableRemoteObject.narrow(initialContext.lookup(lookupStr), EventServerRemoteHome.class);
                if (remoteHome != null) {
                    remote = remoteHome.create();
            } catch (javax.naming.NamingException ne) {
                ne.printStackTrace();
                return null;
            } catch (javax.ejb.CreateException ce) {
                ce.printStackTrace();
                return null;
            } catch (java.rmi.RemoteException re) {
                re.printStackTrace();
                return null;
            } catch (java.io.IOException ioe) {
                ioe.printStackTrace();
                return null;
            System.out.println("look up remote event server successfully.");
         result = remote.getEvent(event_name);
            return result;
        } I output the class path in this java file, and the class path DOES include the path C:\Sun\AppServer\lib where eventserver\EventServerRemoteHome.class is.
    Does anyone know why it happens? Why a java class can't find a class that is in its class path?
    appreciate any help!

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Wael Abbas ([email protected]):
    Thank you for your great topic.
    I think you need to copy the snippet code and past it to every application, applet, servlet or JSP every time you need to use your EJB.
    Its better to include this snippet code in a simple JavaBean and use this bean as a bridge to your EJB, you may include a connect method in your JavaBean or but the connection code in the constructor and include a setters, getters and other methods to encapsulate your EJB methods.
    You can use your JavaBean in any application, applet, servlet or JSP just create an object form it and call its methods.
    Its just an idea
    I hope it will be useful.
    <HR></BLOCKQUOTE>
    null

  • (261936172) Q general How can I access an EJB hosted on a remote server?

    Q<general> How can I access an EJB hosted on a remote server?
    A<general> The ability to add EJB control files enables you to access an EJB that
    is deployed to the server on which your web service is running. When you select
    "add EJB control" you need to supply the home and remote interfaces for the EJB
    as well as the JNDI name. This does not provide you with the capability for creating
    a control for a remotely hosted EJB. To use a EJB hosted on another server you
    will have to provide the appropriate code within your web service itself. You
    will have to programmatically gain to access the JNDI for the remote server, lookup
    up the home stub and use it to create the remote stub for the EJB. Of course,
    to make this work you must have the necessary client interfaces in you classpath
    (home and remote interfaces) which can easliy be achieved by adding the EJB client.jar
    file to the lib directory in the webservice WEB-INF folder.

    just define the different server path in the description xml file
    <jndi-name>jnp://serverA(B)/....</jndi-name>

  • How to fix this error message The backup disk image "/Volumes/AirPort Disk/FARES DEL VALLE's iMac.sparsebundle" could not be accessed (error -1).

    how to fix this error message The backup disk image “/Volumes/AirPort Disk/FARES DEL VALLE’s iMac.sparsebundle” could not be accessed (error -1).

    The troubleshooting C17 is the specific article.
    http://pondini.org/TM/Troubleshooting.html
    This is generally a Lion error.. and you will need 5.6 utility to get access to the disk area.
    So download the real utility. Run it instead of v6 toy version.
    http://support.apple.com/kb/DL1482
    Go to the manual setup, disk page and click on disconnect all users.. that will unmount all users connected to the disk and allow it to start working. But there are a number of other issues that are possible cause. Pondini lists some of them.

Maybe you are looking for