Deploying Creator application to WebSphere

How can I deploy application created with Java Studio Creator to WebSphere? I want to switch to JSF from IBM's RAD. The conditions that my boss gave me was that the application must run on WebSphere 6 and be compatible with ClearCase.
Also, while I have not been programming in shale for the simple reason that I refused to hand code user interface tags when we have this wonderful Java Studio Creator to drag the darne thing and drop into existence like magic, I pressed Craig on why he had to crave out an entire new framework--shale--when Java studio can be extended to take care of whatever shale represents. He indicated that shale serves as a research tool for what should be standard in JSF 2.0. Please I am asking you guys to add to creator whatever value add that shale may represent.

Hi,
Take a look at the FAQ
"How will web applications developed with Java Studio Creator be deployed to servers other than Java System Application Server 8, Platform Edition?"
at
http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/technical.jsp
MJ

Similar Messages

  • Deploy creator application to oracel application server

    hi,
    how can I deploy an application created in creator to the oracle application server in order to include it as an oracle portlet i noracel portal
    thanks,
    IAS

    Scott,
    I think that this question cannot be answered because nobody knows what your applications are doing and how they are programmed. What does it mean when you say that each application has 100 MB (memory or disk size) ? Also, what is your concern, that the Application Server stops deploying the applications or that it doesn't respond to user requests. If the latter, how many users work with the application, concurrently a the same time?
    Frank

  • Deploy CF Application to Websphere

    Has anyone successfully deployed a Cold Fusion application to
    a Websphere environment? If so, is there a 'Deploy to Websphere For
    Dummies' kind of article or book or ??? you could point us to? Your
    help is very much appreciated.

    > The
    > entry to the form is through the intranet site. The
    reason we are doing this
    > for data security purpose as IIS is not secure.
    If it's internal, then your network security should be
    enforced WAY before
    an internal IIS server has any relevance in the equation.
    As far as I know, fully-patched IIS is as secure as anyone
    else's web
    server offering.
    Adam

  • Error while Deploying application in Websphere

    Hi All,
    When I was installing and deploying an application in Websphere, I got some virtual memory error due to which the websphere admin console page had to be closed. So I restarted websphere and when I try to install the application again It throws the error :
    Application already exists in the configuration repository.
    I can not see this application in the console and cannot even install it again.
    Please help me with this error, I am going crazy resloving this.
    Please..Please...
    Thanks in Advance
    Swapna.

    So see reply one... go hunting for the applications
    artifacts with the good ole winblows explorer
    thingummy and just blow 'em away.
    Worste come to worste blow the whole app server away
    and reinstall it.There are also a couple of directories called temp\ and wstemp\ that you might need to clear out within your server's directory. Sometimes they get gummed up and you have to clear them out manually.

  • Error in deploying the java studio creator application to tomcat

    Hi,
    I'm trying to deploy my Sun Java Studio application to Apache Tomcat 5.0.28.
    A simple JSF web application built using the creator works fine after deploying the war file under tomcat/weapps directory.
    In case of a application with databse connection I'm getting the
    " com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null' "
    above error. My application connects to Oracle database using the Oracle Server type provided by the Studio Creator.
    I have copied
    jstl.jar
    standard.jar
    to webapps\%app%\WEB-INF\lib
    The below url is currently not available ( Page not Found )stated as a solution in most of the querries regarding the deplyment to tomcat.
    http://developers.sun.com/prodtech/javatools/jscreator/reference/tips/deploy_to_tomcat.html
    Thanks for any help
    abhi

    I had similar problems.
    I used mysql with tomcat and have mysql in my Creator environment as well but still had the driver message you experienced.
    I found that simply copying the WAR file into the webapp directory in tomcat caused a faulty deployment (it was creating /etc/tomcat5/localhost/YourProject.xml as a directory, not as a file)
    I updated my Projects/MyProject/build.xml to include a deploy target and I manually execute the ant deploy step (having not figured out how to tweak the internal ant within Creator)
    Note that this requires two jar files (see comments in the ant definition)
    <project name="YourRoster" default="default" basedir=".">
        <description>Builds, tests, and runs the project YourProject.</description>
        <import file="nbproject/build-impl.xml"/>
       <property file="build.properties"/>
       <property name="appdir" value="."/>
       <property name="distdir" value="${appdir}/dist"/>
       <property name="warfile" value="${distdir}/${app}.war"/>
       <property name="builddir" value="${appdir}/build"/>
       <path id="classpath">
          <pathelement location="${servlet.api.jar}"/>
          <pathelement location="${jsp.api.jar}"/>
          <fileset dir="${builddir}/WEB-INF/lib">
             <include name="*.jar"/>
          </fileset>  
       </path>
       <!-- requires tomcat/server/lib/catalina-ant.jar -->
       <target name="lrp-init">
          <tstamp/>
          <fail unless="app" message="Run ant -Dapp=... or update 'build.properties'"/>
       </target>
       <target name="deploy-tomcat" depends="dist"
          description="Deploy web application.">
          <echo message="Deploying ${app} ..."/>
          <taskdef name="deploy"  
             classname="org.apache.catalina.ant.DeployTask"/>
          <deploy url="${manager.url}" username="${username}"
             password="${password}" path="/${app}"
             war="file:${warfile}"/>
       </target>
       <target name="undeploy-tomcat" depends="lrp-init"
          description="Undeploy web application.">
          <echo message="Undeploying ${app} ..."/>
          <taskdef name="undeploy"   
             classname="org.apache.catalina.ant.UndeployTask"/>
          <undeploy url="${manager.url}" username="${username}"
             password="${password}" path="/${app}"/>
       </target>
       <!-- requires ant-contrib (http://ant-contrib.sourceforge.net) -->
       <target name="try.undeploy-tomcat" depends="lrp-init"
          description="Call the undeploy task (which may fail).">
          <taskdef resource="net/sf/antcontrib/antcontrib.properties"/> 
          <trycatch>
             <try>
                <ant target="undeploy-tomcat"/>
             </try>
             <catch/>
          </trycatch>
       </target>
       <target name="redeploy-tomcat" depends="try.undeploy-tomcat,deploy-tomcat"
          description="Undeploy and deploy web application.">
       </target>
    </project>In addition, the build.properties...
    jsf.dir=/opt/jsf-1_1_01
    tomcat.dir=/opt/tomcat5
    app=YourProject
    username=tomcatAdminUser
    password=tomcatPassword
    manager.url=http://localhost:8080/manager
    servlet.api.jar=${tomcat.dir}/common/lib/servlet-api.jar
    jsp.api.jar=${tomcat.dir}/common/lib/jsp-api.jar
    jsf.lib.dir=${jsf.dir}/lib
    jstl.lib.dir=${tomcat.dir}/webapps/jsp-examples/WEB-INF/lib
    commons.lib.dir=${tomcat.dir}/server/lib
    jsf.libs=jsf-api.jar,jsf-impl.jar
    jstl.libs=jstl.jar,standard.jar
    commons.libs=commons-beanutils.jar,commons-digester.jarHope this helps.
    ...Lyall

  • Deploying BC4J 9.0.3.4 Application in WebSphere 5.0.2

    We are deploying the application developed using BC4J 9.0.3.4 libraries in WebSphere 5.0.2.
    We are getting the following error when we tried to create new row using BC4J view object.
    [511] BaseSQLBuilder: setSavepoint 'BO_SP' ignored
    [512] BaseSQLBuilder Executing DML ... (Insert)
    [513] Executing DML...
    [514] Warning: BaseSQLBuilder does not support RETURNING (key-cols) clause....
    [515] Warning: BaseSQLBuilder does not support RETURNING (cols) clause....
    [516] INSERT INTO FISTS_USER_MESSAGE(MSG_ID,MSG_FROM_USER_ID,MSG_MOD_NAME,MSG_SUBJECT,
    MSG_BODY,MSG_CREATE_TS,MSG_USER_ID,MSG_GLOBAL_FLAG,MSG_EXPIRATION_DT) VALUES (?,?,?,?,?,?,?,?,?)
    [517] Fetch RefreshOnInsert attributes
    [518] BaseSQLBuilder.doRefreshSQL, Executing Select for Refresh-on-insert or update attributes
    [519] Warning: Attempting to use current primary key attributes for refresh SQL.
    [520] ******* Found no UniqueKey attribute when a PK attribute is marked for refresh on Entity:FistsUserMessage
    [521] Built select: 'SELECT MSG_ID, MSG_GLOBAL_FLAG FROM FISTS_USER_MESSAGE'
    [522] Executing Refresh SQL...SELECT MSG_ID, MSG_GLOBAL_FLAG FROM FISTS_USER_MESSAGE WHERE MSG_ID=?
    [523] General failure Failure in select : JBO-25019: Entity row of key oracle.jbo.Key[-42 ] not found in FistsUserMessage.
    [524] Close prepared statement for refresh SQL
    [525] BaseSQLBuilder: rollbackToSavepoint 'BO_SP' ignored
    oracle.jbo.RowAlreadyDeletedException: JBO-25019: Entity row of key oracle.jbo.Key[-42 ] not found in FistsUserMessage.
    FYI: we are using BC4J setting jbo.SQLBuilder=SQL92, since jbo.SQLBuilder=Oracle is not working either.
    ====================================================
    Error when we use BC4J setting jbo.SQLBuilder=Oracle
    java.lang.ClassCastException: com.ibm.ws.rsadapter.jdbc.WSJdbcPreparedStatement
         at oracle.jbo.server.OracleSQLBuilderImpl.doStatementSetRowPrefetch(OracleSQLBuilderImpl.java:919)
    Any help to resolve this issue is appreciated.
    Sam

    Since you're using WebSphere, SQLBuilder=SQL92 is the correct setting.
    As for your RowAlreadyDeletedException, the following lines are key in solving your issue:
    [519] Warning: Attempting to use current primary key attributes for refresh SQL.
    [520] ******* Found no UniqueKey attribute when a PK attribute is marked for refresh on Entity:FistsUserMessageIt seems
    1. You designated your PK as DBSequence which implies/needs retrieve-on-insert. (Retrieve-on-insert means that after the row is inserted into db, the attr value needs to be refreshed from database).
    With DBSequence, when you create a new row, the DBSequence domain object is assigned a temporary value (in your case -42).
    2. You are using a SQLBuilder which does not support 'RETURNING' clause. Oracle DB allows you do insert a row and then bring back the attr values using the RETURNING clause. Since your SQLBuilder does not support RETURNING, BC4J generates a SQL block that has
    -> The INSERT statement
    -> Immediately followed by a SELECT statement that tries to retrieve your PK attr.
    3. For this SELECT statement, we need a WHERE clause to identify the row that was just inserted. Normally (if the PK attr is stable), we use the PK attr. However, in your case, since PK itself will be assigned a new value in the database, we try to find another unique attribute. When this turn up nothing we print the above "Warning: Attempting to ..."
    4. Then, it issues SELECT statement with WHERE MSG_ID = -42. Since database assigned a new value to this attr, it doesn't find the row.
    5. So, it thinks that the row was deleted by another transaction ==> RowAlreadyDeletedException.
    ~~~~~
    To work around this, I would suggest one of the followings:
    A) Instead of DBSequence and retrieve-on-insert, you can try to set the PK value by getting its seq number in the EntityImpl's create() method override.
    B) Or, you can desginate some other attr (if you have one) as unique (should be stable, meaning that its value will not change by the insert operation). Then, we can use that to locate the row and perform the correct SELECT operation.
    Thanks.
    Sung

  • Run a ear application in websphere 5.1

    HI;
    I try to run a ear application in websphere 5.1 but I get this error ..
    I apreciate your help,
    thanks
    [6/9/05 18:59:29:922 CDT] 3d77aebf EJBContainerI E WSVR0209E: Unable to prepare EJB jar Myapp.jar [class com.ibm.ws.runtime.component.DeployedModuleImpl], enterprise bean com.ibm.etools.ejb.impl.SessionImpl(TestClassBean) (transactionType: Container, sessionType: Stateless)
    java.lang.ClassNotFoundException: com.ge.cf.service.test.interfaces.EJSStatelessTestClassBeanHomeBean_58cbc0ba
         at com.ibm.ws.classloader.CompoundClassLoader.findClass(CompoundClassLoader.java:351)
         at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java:261)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:494)
         at com.ibm.ejs.container.BeanMetaData.loadExistedClass(BeanMetaData.java:2573)
         at com.ibm.ejs.container.BeanMetaData.<init>(BeanMetaData.java:888)
         at com.ibm.ws.runtime.component.EJBContainerImpl.createBeanMetaData(EJBContainerImpl.java:980)
         at com.ibm.ws.runtime.component.EJBContainerImpl.createModuleMetaData(EJBContainerImpl.java:796)
         at com.ibm.ws.runtime.component.EJBContainerImpl.createMetaData(EJBContainerImpl.java:1517)
         at com.ibm.ws.runtime.component.MetaDataMgrImpl.createFactoryMetaData(MetaDataMgrImpl.java:115)
         at com.ibm.ws.runtime.component.MetaDataMgrImpl.createMetaData(MetaDataMgrImpl.java:159)
         at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:350)
         at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:575)
         at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:271)
         at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:249)
         at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
         at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
         at com.ibm.ws.runtime.component.ApplicationServerImpl.start(ApplicationServerImpl.java:125)
         at com.ibm.ws.runtime.component.ContainerImpl.startComponents(ContainerImpl.java:536)
         at com.ibm.ws.runtime.component.ContainerImpl.start(ContainerImpl.java:413)
         at com.ibm.ws.runtime.component.ServerImpl.start(ServerImpl.java:183)
         at com.ibm.ws.runtime.WsServer.start(WsServer.java:128)
         at com.ibm.ws.runtime.WsServer.main(WsServer.java:225)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
         at java.lang.reflect.Method.invoke(Method.java:386)
         at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)

              Hi Jacek,
              Thank you for your suggestion. I changed the Web App version to 1.2 instead of 2.2. It worked. Thanks once again for the timely response. I really do appreciate it.
              Trisula Pani Siripurapu.
              Jacek Laskowski <[email protected]> wrote:
              >"Trisula P. Siripurapu" wrote:
              >>
              >> I have a Web.xml which I copied the one from their documentation and edited for my servlet specific data. When I try to deploy it I am getting the following error.
              >> Wed Nov 15 17:10:37 EST 2000:<E> <HTTP> Error reading Web application 'C:/tomcat
              >> /webapps/La/'
              >> java.net.UnknownHostException: java.sun.com
              >
              >I remember having the same problem before I added the latest service
              >pack (SP 6). If you don't want to download it, just change DOCTYPE to
              >
              ><!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application
              >1.2//EN' 'http://java.sun.com/j2ee/dtds/webapp_2_2.dtd'>
              >
              >and it should work. Notice the change of Web Application version - 1.2
              >rather then 2.2. I'm (almost) sure, I saw one example - examples/webapp
              >(?) - with this header. Take a look at the accompanying examples.
              >
              >When you apply SP6, things should work as they suppose to.
              >
              >> Trisula P. Siripurapu
              >
              >Jacek Laskowski
              

  • Deploying JSF application on Tomcat 5.0.28

    Hi,
    I am having problems deploying JSF application (developed using Studio Creator) on Tomcat. Any suggessions ....
    HTTP Status 404 - Servlet Faces Servlet is not available....
    Thanks in advance

    I ran into this same problem moving from Tomcat 4.1.31 to Tomcat 5.0.28. This one was definitely a headscratcher, but the solution turned out to be simple as I had an older servlet api jar (2.3) in my J2SE's jre/lib/ext directory. I replaced the existing servlet.api with servlet-api.jar and jsp-api.jar from the Tomcat 5.0.28 common/lib directory, restarted Tomcat, and the problem disappeared.

  • Deployment adf application to internat

    hi am i able to deploy adf application to internat without the weblogic licence just for testing
    Edited by: Tshifhiwa on 2012/02/20 1:16 PM
    Edited by: Tshifhiwa on 2012/02/20 1:30 PM

    All good questions for Oracle Sales.
    You either need a WebLogic license or a WebSphere license from IBM + an ADF license from Oracle.
    http://oraclestore.oracle.com may be of some use for you, but you'll have much better luck (in my experience) talking to an actual Oracle Sales rep. If your company already has one, then they would be the place to start. Otherwise - http://www.oracle.com/us/corporate/contact/index.html
    John

  • Deploying sample applications in mosaic

    Hello, i want to deploy the applications in Mosaic. I'm following these instructions:
    Use the Ant build files provided with the Mosaic ES2 installation to deploy sample applications to the server.
    To run Ant, type ant from the command line. When you do not provide arguments, Ant looks for a build.xml file in the current directory.
    For descriptions of the sample applications, see Sample applications.
    Deploy all samples and demos
    In the following directory, run Ant:
    [Mosaic ES2 install directory]/samples/
    Deploy the general sample applications
    In the following directory, run Ant:
    [Mosaic ES2 install directory]/samples/general/
    Deploy the MAX2009 application
    In the following directory, run Ant:
    [Mosaic ES2 install directory]/samples/max2009/
    I've set the ant_home enviromment variable but it still gives me the 'ant' is not recognized as an internal or external command,
    operable program or batch file.
    Thanks.

    Hodmi, i've done that but now i got this error:
    C:\MOSAIC_HOME\samples>ant
    Buildfile: build.xml
    deploy:
    deploy-catalogs:
       [delete] Deleting: C:\MOSAIC_HOME\samples\general\sample_catalog.zip
          [zip] Building zip: C:\MOSAIC_HOME\samples\general\sample_catalog.zip
    [mosaic-catalog] Exception in thread "Thread-2" C:\MOSAIC_HOME\samples\general\b
    uild.xml:21: Read failed: Server returned HTTP response code: 403 for URL: http:
    //localhost:9080/mosaic/catalogs/sample_catalog
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-catalog] Caused by: java.io.IOException: Server returned HTTP response c
    ode: 403 for URL: http://localhost:9080/mosaic/catalogs/sample_catalog
    [mosaic-catalog]        at sun.net.www.protocol.http.HttpURLConnection.getInputS 
    tream(HttpURLConnection.java:1313) 
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask 
    .java:407) 
    [mosaic-catalog] --- Nested Exception --- 
    [mosaic-catalog] java.io.IOException: Server returned HTTP response code: 403 fo 
    r URL: http://localhost:9080/mosaic/catalogs/sample_catalog 
    [mosaic-catalog]        at sun.net.www.protocol.http.HttpURLConnection.getInputS 
    tream(HttpURLConnection.java:1313) 
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask 
    .java:407) 
         [echo] ${response} 
    deploy-applications:
    [mosaic-application] Exception in thread "Thread-4" C:\MOSAIC_HOME\samples\gener
    al\build.xml:33: Read failed: Server returned HTTP response code: 403 for URL: h
    ttp://localhost:9080/mosaic/applications/Basic
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/Basic
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/Basic
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] ${response}
    [mosaic-application] Exception in thread "Thread-6" C:\MOSAIC_HOME\samples\gener
    al\build.xml:42: Read failed: Server returned HTTP response code: 403 for URL: h
    ttp://localhost:9080/mosaic/applications/Brokerage
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/Brokerage
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/Brokerage
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] ${response}
    [mosaic-application] Exception in thread "Thread-8" C:\MOSAIC_HOME\samples\gener
    al\build.xml:51: Read failed: Server returned HTTP response code: 403 for URL: h
    ttp://localhost:9080/mosaic/applications/TileGame
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/TileGame
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/TileGame
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] ${response}
    [mosaic-application] Exception in thread "Thread-10" C:\MOSAIC_HOME\samples\gene
    ral\build.xml:60: Read failed: Server returned HTTP response code: 403 for URL:
    http://localhost:9080/mosaic/applications/Default
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/Default
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/Default
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] ${response} 
    deploy: 
    deploy-catalogs:
       [delete] Deleting: C:\MOSAIC_HOME\samples\max2009\max2009_catalog.zip
          [zip] Building zip: C:\MOSAIC_HOME\samples\max2009\max2009_catalog.zip
    [mosaic-catalog] Exception in thread "Thread-12" C:\MOSAIC_HOME\samples\max2009\
    build.xml:21: Read failed: Server returned HTTP response code: 403 for URL: http
    ://localhost:9080/mosaic/catalogs/max2009_catalog
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-catalog] Caused by: java.io.IOException: Server returned HTTP response c
    ode: 403 for URL: http://localhost:9080/mosaic/catalogs/max2009_catalog
    [mosaic-catalog]        at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-catalog] --- Nested Exception ---
    [mosaic-catalog] java.io.IOException: Server returned HTTP response code: 403 fo
    r URL: http://localhost:9080/mosaic/catalogs/max2009_catalog
    [mosaic-catalog]        at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-catalog]        at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] ${response} 
    deploy-applications:
    [mosaic-application] Exception in thread "Thread-14" C:\MOSAIC_HOME\samples\max2
    009\build.xml:33: Read failed: Server returned HTTP response code: 403 for URL:
    http://localhost:9080/mosaic/applications/MAX2009
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/MAX2009
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/MAX2009
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] MAX2009 : ${response}
    [mosaic-application] Exception in thread "Thread-16" C:\MOSAIC_HOME\samples\max2
    009\build.xml:42: Read failed: Server returned HTTP response code: 403 for URL:
    http://localhost:9080/mosaic/applications/RedMAX2009
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:413)
    [mosaic-application] Caused by: java.io.IOException: Server returned HTTP respon
    se code: 403 for URL: http://localhost:9080/mosaic/applications/RedMAX2009
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
    [mosaic-application] --- Nested Exception ---
    [mosaic-application] java.io.IOException: Server returned HTTP response code: 40
    3 for URL: http://localhost:9080/mosaic/applications/RedMAX2009
    [mosaic-application]    at sun.net.www.protocol.http.HttpURLConnection.getInputS
    tream(HttpURLConnection.java:1313)
    [mosaic-application]    at com.adobe.mosaic.ant.MosaicTask$Reader.run(MosaicTask
    .java:407)
         [echo] RedMAX2009 : ${response} 
    deploy: 
    BUILD SUCCESSFUL
    Total time: 7 seconds
    C:\MOSAIC_HOME\samples>
    I'm using websphere 6.1.0.2.
    I've got the 403 server in websphere.
    Is there any procedure or any example to workaround this problem in websphere?
    Thanks

  • Installing application in websphere 6 - Exception

    Hi, I'm getting the following error when installing an application in websphere 6 via the admin consolle.
    I have created one entity bean (cmp) in RAD, packaging it with an WEB application into an Enterprise application (.EAR) and installing it into websphere.
    Going through all steps in the websphere console, but when ws installs it I get the following error, anyone know why? I have installed db2-connection/datasource, etc. in websphere before I install the application...
    java.lang.NullPointerException
    at com.ibm.ObjectQuery.crud.schema.ClassMap.getBeanName(ClassMap.java:404)
    at com.ibm.ObjectQuery.crud.schema.ClassMap.asn(ClassMap.java:381)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.build(DataStoreMap.java:138)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.initialize(DataStoreMap.java:112)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.(DataStoreMap.java:72)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.singletonFor(DataStoreMap.java:766)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.generateQueries(EJBDeployOperation.java:1816)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.getClassMapsForBackend(EJBDeployOperation.java:1784)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.invokeCodeGeneration(EJBDeployOperation.java:1562)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.doRun(EJBDeployOperation.java:1427)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.run(EJBDeployOperation.java:1316)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.doit(EJBDeployOperation.java:984)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.invokeDeploymentCodegen(BatchExtension.java:1953)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.internalJarProcess(BatchExtension.java:956)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.runEarDeploy(BatchExtension.java:404)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.access$0(BatchExtension.java:305)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension$RunDeploy.run(BatchExtension.java:288)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1673)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1693)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension$RunDeploy.execute(BatchExtension.java:272)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.run(BatchExtension.java:235)
    at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.ibm.etools.ejbdeploy.batch.impl.BootLoaderLoader.run(BootLoaderLoader.java:390)
    at com.ibm.etools.ejbdeploy.batch.impl.BatchDeploy.execute(BatchDeploy.java:144)
    at com.ibm.etools.ejbdeploy.EJBDeploy.execute(EJBDeploy.java:83)
    at com.ibm.etools.ejbdeploy.EJBDeploy.main(EJBDeploy.java:312)
    An unexpected exception was thrown. Halting execution.
    An unexpected exception was thrown. Halting execution.
    Shutting down workbench.
    Error during generation of deployment code: null.
    com.ibm.etools.ejbdeploy.EJBDeploymentException (Error during generation of deployment code: null.) java.lang.NullPointerException
    at com.ibm.ObjectQuery.crud.schema.ClassMap.getBeanName(ClassMap.java:404)
    at com.ibm.ObjectQuery.crud.schema.ClassMap.asn(ClassMap.java:381)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.build(DataStoreMap.java:138)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.initialize(DataStoreMap.java:112)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.(DataStoreMap.java:72)
    at com.ibm.ObjectQuery.crud.schema.DataStoreMap.singletonFor(DataStoreMap.java:766)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.generateQueries(EJBDeployOperation.java:1816)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.getClassMapsForBackend(EJBDeployOperation.java:1784)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.invokeCodeGeneration(EJBDeployOperation.java:1562)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.doRun(EJBDeployOperation.java:1427)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.run(EJBDeployOperation.java:1316)
    at com.ibm.etools.ejbdeploy.plugin.EJBDeployOperation.doit(EJBDeployOperation.java:984)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.invokeDeploymentCodegen(BatchExtension.java:1953)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.internalJarProcess(BatchExtension.java:956)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.runEarDeploy(BatchExtension.java:404)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.access$0(BatchExtension.java:305)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension$RunDeploy.run(BatchExtension.java:288)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1673)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1693)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension$RunDeploy.execute(BatchExtension.java:272)
    at com.ibm.etools.ejbdeploy.batch.plugin.BatchExtension.run(BatchExtension.java:235)
    at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.ibm.etools.ejbdeploy.batch.impl.BootLoaderLoader.run(BootLoaderLoader.java:390)
    at com.ibm.etools.ejbdeploy.batch.impl.BatchDeploy.execute(BatchDeploy.java:144)
    at com.ibm.etools.ejbdeploy.EJBDeploy.execute(EJBDeploy.java:83)
    at com.ibm.etools.ejbdeploy.EJBDeploy.main(EJBDeploy.java:312)
    EJBDeploy level: dms0444.09
    ADMA5007I: The EJBDeploy command completed on C:\WINDOWS\TEMP\app_105b08a2006\dpl\dpl_HTC_Ebusiness.ear
    ADMA5008E: EJBDeploy failed on C:\WINDOWS\TEMP\app_105b08a2006\dpl\dpl_HTC_Ebusiness.ear: com.ibm.websphere.management.exception.AdminException: ADMA0063E: An error occurred in EJB deployment - [An unexpected exception was thrown. Halting execution.]
    ADMA5011I: The cleanup of the temp directory for application HTC Ebusiness is complete.
    ADMA5014E: The installation of application HTC Ebusiness failed.

    Did you get the solution for this ?
    i m also facing the same problem
    Regards,
    --Naveen                                                                                                                                                                                   

  • Deployment Creator is null message

    I am attempting to deploy an application to a new development installation of WebLogic. I get the following stack trace. Does anyone know where I should set the deployment creator value?
    Thanks!
    Mark
    Stack trace for message 149004 weblogic.management.DeploymentException: Deployment could not be created. Deployment creator is null. at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:154) at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:201) at weblogic.deploy.internal.targetserver.operations.StartOperation.createAndPrepareContainer(StartOperation.java:94) at weblogic.deploy.internal.targetserver.operations.StartOperation.doPrepare(StartOperation.java:107) at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:229) at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747) 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:159) 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:46) 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)

    hi Andre
    may be You do backed up some logs ?
    Regards,
    Pavel
    Edited by: Pavel on Mar 16, 2012 5:05 AM

  • Is it possible to Run a JSF 2.0 application under Websphere v7.0?

    Has anyone succeeded in deploying and running a JSF 2.0 application under Websphere v7 ?
    I was able to do this in 10 minutes using Eclipse 3.5 and Tomcat 6.0.
    However, it seems tedious to do it under Websphere.
    I would like to know if some of you have done it and how you did it.
    Thanks
    Edited by: PatrickBlais on Oct 6, 2009 12:25 PM
    Edited by: PatrickBlais on Oct 6, 2009 12:33 PM

    Now, got that resolved. As I stated in my previous post, I had to change the classloading policy to "Parent Last" and
    found that mojarra is now loaded (see the last line):
    [07/10/09 11:00:12:013 EDT] 00000014 ApplicationMg A WSVR0200I: Starting application: JSFEAR
    [07/10/09 11:00:12:013 EDT] 00000014 ApplicationMg A WSVR0204I: Application: JSFEAR Application build level: Unknown
    [07/10/09 11:00:13:201 EDT] 00000014 ResourceMgrIm I WSVR0049I: Binding DefaultEJBTimerDataSource as jdbc/DefaultEJBTimerDataSource
    [07/10/09 11:00:13:248 EDT] 00000014 webapp I com.ibm.ws.webcontainer.webapp.WebGroupImpl WebGroup SRVE0169I: Loading Web Module: webJSF.
    [07/10/09 11:00:13:263 EDT] 00000014 WASSessionCor I SessionContextRegistry getSessionContext SESN0176I: Will create a new session context for application key SCD/webJSF
    [07/10/09 11:00:13:373 EDT] 00000014 FacesConfigur I org.apache.myfaces.config.FacesConfigurator feedStandardConfig Reading standard config META-INF/standard-faces-config.xml
    [07/10/09 11:00:13:497 EDT] 00000014 FacesConfigur I org.apache.myfaces.config.FacesConfigurator feedWebAppConfig Reading config /WEB-INF/faces-config.xml
    [07/10/09 11:00:13:513 EDT] 00000014 LocaleUtils W org.apache.myfaces.shared_impl.util.LocaleUtils toLocale Locale name in faces-config.xml null or empty, setting locale to default locale : en_CA
    [07/10/09 11:00:13:622 EDT] 00000014 FacesConfigur I org.apache.myfaces.config.FacesConfigurator handleSerialFactory Serialization provider : class org.apache.myfaces.shared_impl.util.serial.DefaultSerialFactory
    [07/10/09 11:00:13:622 EDT] 00000014 AbstractFaces I org.apache.myfaces.webapp.AbstractFacesInitializer initFaces ServletContext 'C:\Program Files\IBM\SDP75\runtimes\base_v7\profiles\profil_CGE\installedApps\cellule\JSFEAR.ear\webJSF.war' initialized.
    [07/10/09 11:00:13:701 EDT] 00000014 config I Initializing Mojarra 2.0.0 (SNAPSHOT 20090924) for context '/webJSF'
    Now I will be looking for what I have to set next...

  • Trouble deploying to Application Server Localhost 14848

    i'm using the deployment tool to deploy a WAR file to the deployment server Localhost 14848, however the deployment server listed in the deployment tool is looking for localhost on port 4848! How to do I change the deployment tool setting to correctly look for the deployment server port 14848 and not port 4848? I have look at the domains.xml document and all corresponding adminstrative ports are 14848. A similar problem was posted before SDN (see: http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=46565.
    I started with an evaluation copy and upgraded/ purchase Creator in December 2004 with SDN subcription. I reinstalled the reef shark several times but still have the same problem and deleted the .creator file in docments and settings!

    Hi
    You can register another server node with port 14848 to avoid this issue. Just open the deploytool and select the Servers node. Now choose file menu and choose Add Server option. Specify the server name and port (14848) there. Choose this as target server and click on OK.
    Now you can deploy your applications.
    Thanks
    Creator Team

  • Deployment of servlet on Websphere

    Hi! i have deployed a servlet on Websphere , and some time it gives following error..
    [02.01.29 19:42:09:643 EST] 5bedbab WebApp X Error.occurred.while.invoking.error.reporter
    com.ibm.servlet.engine.webapp.WebAppErrorReport: [JSP 1.0 Processor] reported an error
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:97)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    com.ibm.servlet.engine.webapp.NoTargetForURIException: No target servlet configured for uri: /tools/scmt/
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcherInfo.getTargetServlet(WebAppRequestDispatcherInfo.java:104)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:322)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:111)
         at com.ibm.servlet.engine.webapp.WebApp.sendError(WebApp.java:604)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:104)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    [02.01.29 19:42:09:709 EST] 5bedbab WebGroup A SRVE0091I: [Servlet LOG]: "A recursive error was detected.The server cannot use specified error page. Please check the application error-path."
    [02.01.29 19:42:09:710 EST] 5bedbab WebGroup A SRVE0092I: [Servlet LOG]: "Original Error: ": com.ibm.servlet.engine.webapp.WebAppErrorReport: [JSP 1.0 Processor] reported an error
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:97)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    [02.01.29 19:42:09:741 EST] 5bedbab WebGroup A SRVE0092I: [Servlet LOG]: "Recursive Error: ": com.ibm.servlet.engine.webapp.WebAppErrorReport: No target servlet configured for uri: /tools/scmt/
         at com.ibm.servlet.engine.webapp.WebApp.sendError(WebApp.java:638)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:104)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    can any one suggest the root cause of this problem and solution for this .
    thank's in advance

    The root cause of this monster stack is buried in the middle:
    No target servlet configured for uri: /tools/scmt/

Maybe you are looking for

  • Profile Picture on Facebook application

    Good day, someone please help my facebook Blackberry application does not want to load my profile pictures from my album anymore, it say the phone cannot make contact with the Blackberry server

  • GPO Run these programs at user logon not taking effect when configured in Computer Configuration section

    [EDIT 20140207]: I found that the default domain policy sets "run these programs at user logon" and (other than I expected) not BOTH GPO settings become active, but the setting from the default domain policy overrides the setting from my new GPO. So

  • Flex Project Management

    Hi, I am planning to build a flex project with a small group of people. So, I am thinking to have one main project to load all the component (SWF) in swf loader, so that I can have the component to be distributed to everyone. Here I want to ask: 1. B

  • Indicator to include component scrap in the details screen of MFBF tcode

    Hi , There is an indicator in the 'Details' screen of MFBF transaction to "Include Component scrap". User has to select this indicator everytime he wants to include the component scrap or is there a way to save this setting ? If it is defaulted from

  • C3 WIFI - WLAN Not Working (Solution)

    Hi If You Have Bought C 3 And Not Able To Connect With WIFI Or WLAN And The Given Error Is Showing : * Service Not Available The Error Is Coming Because Your WIFI SHaring Settings Are Not Proper To turn your Wi-Fi enabled personal computer into a wir