Migrating WebServices app from Tomcat to Glassfish...

Hello!
I've a WebService app. which now runs on Tomcat 5.5.23 and was written using JAX-WS. I've install Sun Java System App. Server 9.0 and I intend to migrate our app. here.
The application is delivered as a war file which I've already deployed in glassfish using admin GUI of asadmin. I can see our app. at WebApplications section but I can't see it under WebServices section, although it seems at a first view that the application works and respond to client's request.
I'd like to ask you if I need to use a special tool for migrating our aplication or what I did is enough and there is no need for other changes.
Thank you very much
With best regards,
Sorin

If I understand correctly, you are trying to load a few properties files on WLS that is specific to an application that you are migrating from tomcat to WLS. If that is the case, then as per my understanding we have the following options:
a. Add all the properties in a jar file and add the same to the classpath or place the same in the lib directory of the server which can be picked at the server start-up.
b. Place the properties file in the domain home which should help.
Refer: loading a new properties file without restarting the managed server
c. Else place the properties files in the web-inf of the application, that should help.

Similar Messages

  • Document root element is missing: migrating spring app from tomcat

    Hi!
    can anybody help me with this issue?
    I have ported my tomcat spring application to netweaver(6.40, SP 17, Windows 2k SP4) and i get the following error:
    Error occured in invoking event "contextInitialized()" on listener clas
    s com.webapp.listener.StartupListener. The error is: org.springfram
    ework.beans.factory.BeanCreationException: Error creating bean with nam
    e 'sessionFactory' defined in ServletContext resource [/WEB-INF/applica
    tionContext-hibernate.xml]: Initialization of bean failed; nested excep
    tion is org.hibernate.MappingException: Could not parse mapping documen
    t in input stream
    org.hibernate.MappingException: Could not parse mapp
    ing document in input stream
         at org.hibernate.cfg.Configuration.addIn
    putStream(Configuration.java:430)
         at org.springframework.orm.hibernat
    e3.LocalSessionFactoryBean.afterPropertiesSet(LocalSessionFactoryBean.j
    ava:654)
         at org.springframework.beans.factory.support.AbstractAutowir
    eCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactor
    y.java:1059)
         at org.springframework.beans.factory.support.AbstractAut
    owireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.j
    ava:363)
         at org.springframework.beans.factory.support.AbstractBeanFac
    tory.getBean(AbstractBeanFactory.java:226)
         at org.springframework.bea
    ns.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java
    :147)
         at org.springframework.beans.factory.support.DefaultListableBea
    nFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:269)
         at org.springframework.context.support.AbstractApplicationContext.ref
    resh(AbstractApplicationContext.java:320)
         at org.springframework.web.
    context.support.AbstractRefreshableWebApplicationContext.refresh(Abstra
    ctRefreshableWebApplicationContext.java:134)
         at org.springframework.w
    eb.context.ContextLoader.createWebApplicationContext(ContextLoader.java
    :246)
         at org.springframework.web.context.ContextLoader.initWebApplica
    tionContext(ContextLoader.java:184)
         at org.springframework.web.contex
    t.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:4
    9)
         at com.ifx.webapp.listener.StartupListener.contextInitialized(Star
    tupListener.java:42)
         at com.sap.engine.services.servlets_jsp.server.r
    untime.context.WebEvents.contextInitialized(WebEvents.java:45)
         at com
    .sap.engine.services.servlets_jsp.server.container.ApplicationThreadIni
    tializer.run(ApplicationThreadInitializer.java:112)
         at com.sap.engine
    .core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.sec
    urity.AccessController.doPrivileged(Native Method)
         at com.sap.engine.
    core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.
    sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    C
    aused by: org.dom4j.DocumentException: Error on line 1 of document  : D
    ocument root element is missing. Nested exception: Document root elemen
    t is missing.
         at org.dom4j.io.SAXReader.read(SAXReader.java:482)
         at
    org.hibernate.cfg.Configuration.addInputStream(Configuration.java:421)
         ... 18 more
    And yes, the xml files are valid xml files at least in anything i've used to look at them (eclipse, ultraedit, notepad, ie) :).....
    Thank you!
    ps. the file:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
        "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>
        <!-- Hibernate SessionFactory -->
        <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource"/>
            <property name="mappingResources">
                <list>
                    <value>package/ModelObj1.hbm.xml</value>
                    <value>package/ModelObj2.hbm.xml</value>
                </list>
            </property>
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</prop>
                </props>
            </property>
        </bean>
        <!-- Transaction manager for a single Hibernate SessionFactory (alternative to JTA) -->
        <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory"/>
        </bean>
        <!-- Generic DAO - can be used when doing standard CRUD -->
        <bean id="dao" class="com.dao.hibernate.BaseDAOHibernate">
            <property name="sessionFactory" ref="sessionFactory"/>
        </bean>
    </beans>

    hi istvan,
    we are also migrating from websphere to netweaver.
    But in spring framework we r facing problems.
    We hav spring-beans.jar file in lib dir of Web Application. But When we are creating BeanFactory from xml as,
    BeanFactory beanFactory = new ClassPathXmlApplicationContext ("client-config.xml");
    clent-config.xml file contains :
    [code<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>
         <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >
              <property name="location">
                   <value>conf/service-client/client.properties</value>
              </property>
         </bean></beans>
    [/code]
    But code is giving exception: ClassNotFoundException -org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.
    Wat is the problem ?
    Kindly help.
    We are also using JAAS for authentication.We are refering above code from our LoginModules login() method.
    Regards,
    sagar.

  • Problems moving app from tomcat 321 to 4.0

    I have serious problems moving an old app from tomcat 321 to 4.0. I tried just moving the entire webapps/<myApp> to the new server, and also using a war-file, but I get a message saying that one of my Beans doesn't exist.
    Its a bean in the /WEB-INF/classes subdir, so its in an annonymous package. The jsp-page accessing it uses the
    <jsp:useBean id="dateBean" class="DateBean" scope="session" />
    tag.
    Error message from jsp-page says: org.apache.jsp.DateBean not found.
    Seems my tomcat4 doesn�t use the web-inf/classes in its classpath???
    regards
    Markus

    I don't believe the current Servlet specs allow for anonymous packages. Try moving your class into its own package (under WEB-INF/classes/packagename/) and see if that fixes the problem. Also be sure to change the <jsp:useBean> tag to give the full classname in the class attribute.

  • Migrate essbase app from 6 to 9

    planning to migrate the app from essbase 6 to esbase 9.to a whole new server.
    Any issues with that...any doc on migration from 6 would be useful.
    its urgent

    I started to migrate from 6.6 to 9.3.1 and it went quite smooth. What I have done:
    Installed the server.
    Used the config tool and removed shared services registration.
    Copied essbase.cfg to new installation.
    Had to add the env variables manually on AIX from the hyperionenv.doc.
    Installed the eas server.
    Used config tool for config and deployment of eas on std settings.
    Installed the eas client and used the migration tool to migrate some databases to the new server from a 6.6 (6.6 running on different machine than 9.3)
    Tested our batch processing for data load, security transfers, data staging etc. which uses some api interfaces and ESSCMD and maxl scripts. All without any problems. All settings were kept the same as on the old systems (essbase.cfg, db settings, app settings).

  • Ive migrated my apps from an old mac to my new mac. When i try to open my CS5 programs it get a pop up that says i need to install the legacy java SE 6. Ive done that and it still does not open?

    Ive migrated my apps from an old mac to my new mac. When i try to open my CS5 programs it get a pop up that says i need to install the legacy java SE 6. Ive done that and it still does not open?

    I'm having a similar problem...but mine results from an OS upgrade from 10.6.4 to 10.8.5.
    Where did you access a clean copy of Java SE 6?  The link at adobe for archicval plug-ins is a dead download (and it doesn't appear to contain Java SE 6.).
    Jerry

  • How to migrate application server from Tomcat to WebSphere?

    Hi,
    I installed BO XI 3.1 32 bit in environment:
    - AIX 5.3 64 bit
    - Deployed Tomcat 5.5 from installing BO
    - Oracle client 10G
    I need to migrate application server from Tomcat to WebSphere 6.1 and WebSphere 6.1 Server 32 bit in Windows platform.
    Could you someone give detail steps
    Many thanks in advance and best regards,

    I tried manually to deploy web applications, but not successful. This is my deployment step following:
    AIX 5.3: BOE XI 3.1 :
    Copy all <INSTALLDIR>/bobje/enterprise120/java/applications/  to Windows Websphere D:\BO_WAS
    WebSphere 6.1 location & IP (windows) :
    C:\Program Files\IBM\WebSphere\AppServer1\
    IP: 192.168.69.10
    Log in to WebSphere Applicaton Server Administrative http://192.168.69.10:9060/admin
    1. Under the Applications heading of the console navigation menu, click
    Enterprise Applications on the left navigational pane.
    2. Click the Install button and navigate to the location of the WAR file to
    deploy. If deploying from a remote file system, select the Remote File
    System option.
    3. Enter a context root for the WAR file (e.g. /CmcApp for CmcApp.war)
    (this format (/CmcApp) for Unix OS, have different in Windows ? Could you give me fully path?)
    and
    press the Next button, followed by Continue.
    4. In "Step 1", give a unique name for your web application and proceed to
    "Step 2".
    5. Highlight the server you created (or highlight server1 if you didn't create
    your own) from the Clusters and Servers and enable the Select
    checkbox. Proceed to "Step 3".
    6. Select the virtual host you created (or default_host if you didn't create
    your own) from the Virtual Host drop-down list. Proceed to "Step 4".
    7. Review the summary page, and press Finish when done.
    8. Click Save to Master Configuration.
    9. Click the Save link, then the Save button.
    Finally the output is not available.
    Many thanks in advance and best regards

  • JDeveloper 12c getting error after migration my Apps from JDeveloper 11.1.2.3

    Hi, I have migrated my application from JDeveloper 11.1.2.3 to JDeveloper 12c(12.1.2.0). My application cleaned and compiled successfully. Application Module tested successfully. But when i am running my application (ViewController)weblogic started but application not deployed, i am getting below error in JDeveloper Console.
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    roxy$ProcessorImpl.processImpl(ProjectDependenciesJLibraryProxy.java:141)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    rocessor.processImpl(ProjectDependenciesJLibraryProcessor.java:62)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    roxy$ProcessorImpl.processImpl(ProjectDependenciesJLibraryProxy.java:141)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    rocessor.processImpl(ProjectDependenciesJLibraryProcessor.java:62)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    roxy$ProcessorImpl.processImpl(ProjectDependenciesJLibraryProxy.java:141)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP
    rocessor.processImpl(ProjectDependenciesJLibraryProcessor.java:62)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process
    (DefaultStatefulProcessor.java:158)
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135)
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default
    Processor.java:61)
    Maroof

    Hi Timo, This application developed in 11.1.2.3, Now i am opened this application in JDev 12.1.2.0, This application is successfully compiled. But when i am running this apps in JDeve 12c(Integrated WLS) then Integrated WLS  started but Application not deployed, and i am getting below error.
    Jan 19, 2014 8:17:11 AM oracle.security.jps.util.JpsUtil disableAudit
    INFO: JpsUtil: isAuditDisabled set to true
    Jan 19, 2014 8:18:10 AM oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig
    INFO: Resource META-INF/adf-config.xml not found on the classpath.
    Jan 19, 2014 8:18:10 AM oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig
    INFO: A default implementation of ADFConfig is being created for application.
    This can lead to unexpected results in some cases. Please add a basic META-INF/adf
    -config.xml to your classpath to avoid functional errors.
    Jan 19, 2014 8:18:55 AM oracle.bali.xml.gui.base.inspector.TransactedPIMultiModel _updateProperties
    WARNING: SelectionModel has no selected items
    Jan 19, 2014 8:19:02 AM oracle.bali.xml.gui.base.inspector.TransactedPIMultiModel _updateProperties
    WARNING: SelectionModel has no selected items
    Jan 19, 2014 8:19:21 AM oracle.bali.xml.gui.base.inspector.TransactedPIMultiModel _updateProperties
    WARNING: SelectionModel has no selected items
    Processor.java:61) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process 
    (DefaultStatefulProcessor.java:158) 
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib 
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default 
    Processor.java:61) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process 
    (DefaultStatefulProcessor.java:158) 
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP 
    roxy$ProcessorImpl.processImpl(ProjectDependenciesJLibraryProxy.java:141) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default 
    Processor.java:61) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process 
    (DefaultStatefulProcessor.java:158) 
            at oracle.jdevimpl.deploy.contrib.processor.ProjectDependenciesJLibraryP 
    rocessor.processImpl(ProjectDependenciesJLibraryProcessor.java:62) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default 
    Processor.java:61) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultStatefulProcessor.process 
    (DefaultStatefulProcessor.java:158) 
            at oracle.jdevimpl.deploy.contrib.processor.ProjectProjectDependencyJLib 
    raryProcessor.processImpl(ProjectProjectDependencyJLibraryProcessor.java:135) 
            at oracle.jdeveloper.deploy.contrib.spi.DefaultProcessor.process(Default 
    Processor.java:61) 
    Maroof

  • Migrating iLife apps from new iMac to G5 machine with Leopard

    I bought the iMac which came with iLife and then built up a dual proc G5 to do music and video on. I don't want to have to buy a copy of iLife since I already have it but really want Garage Band, Movie Maker and iDVD on the G5. I started to migrate these with Migration Assistant but it didn't give me an option to choose just those apps. Is there a problem with me migrating all apps and then just deleting the ones I don't need on the G5? I assumed this would move the licenses for the apps from the iMac to the G5. Can someone confirm if the Migration effectively uninstalls the app on the machine it's being migrated from?
    I'm not interested in making a copy of these three apps and am happy to delete them from iMac once moved over but it's not clear to me that this will work (even thought guys as the Apple store said I could do it).
    Thanks

    The short answer is probably no.
    I have 2 imacs both Intel.
    I was having a problem with iLife apps on my older imac and so I dumped the iLife apps to reinstall them.
    I inserted the install disk for my newer imac and it refused to allow me to install from that disk.
    I used Pacifist and it worked for all apps except iPhoto which would not work properly even after several attempts.
    I located my iLife 08 disk and it installed fine.
    Despite the fact that most of the iLife apps seemed to install using Pacifist, they were suspect so I installed them all afresh from the ILife 08 disk.
    The last thing I need is a program that may screw up and lose some of my photos, movies or compositions, especially when the package is reasonably priced.

  • Migrating HFM App from 4x to 11x

    Can any one please let me know what are the steps to migrate a HFM App from 4x to 11x
    Edited by: user7386301 on Aug 20, 2009 7:09 AM

    Best practice.
    Do not try to migrate from 4x to 11x. Rather start in 11x and rebuild your app. Sounds drastic but:
    - 11 offer more test and checks
    - This is a good clean-up exercise
    - Using EPMA you would stabilise your environment
    - You would be able to load some of the data from 4x to 11x
    - Save your export metadata file in excel to a .ads format for easy upload.
    - Better way to depoly your app

  • Is it possible to migrate the app from latest version to older version

    Hi all,
    I have a adf application in jdeveloper 11.1.1.4.0.Due to some issues i have to do it in jdeveloper 11g release 2 (11.1.1.2.0).Is it possible to migrate the application from latest version to older version of jdev.
    Thanks.

    It's not officially supported, but you can try a couple of things - first open the application in the old version and see if it works.
    If it doesn't you can try creating a new application in the old version and then use the create project from existing source option to map to your existing code.
    This all of course assumes that you didn't use features in the new version that are not available in the old version.

  • HT204350 hi, I am trying to migrate my apps from my old Macbook Air 2010 to a new Macbook air 2013.  Both have Os X Mavericks. The computers cannot find each other in computer-computer network that I created. Any suggestions?  Thanks!

    Hi, I recently purchased a new Macbook Air with OS X version 10.8.5.  I am trying to migrate my data from my MacBook Air Late 2010.  Anyone knows how I could connect them with wires? The 2010 MacBook Air has only two USA slots. Thanks for any help on this issue!

    You can connect the USB2 to USB3  backwards compatible.
    or USB to Thunderbolt cable
    http://store.apple.com/us/mac/mac-accessories/cables#!
    or Ethernet to thunderbolt
    http://store.apple.com/us/search/thunderbolt#!

  • How to migrate my app from my Pc to my 27 i Mac ?

    Hi
    I m à new Mac worker.
    I Transfer m'y data from m'y Pc to m'y Mac
    Blut thé app of i tunes dont move.
    How i CAN Transfer il ?
    Tank you.
    Julien

    Guys Hi, I don't think I could have explained myself correcty,
    I have a PC at work with the old version of this app on it and I have copied the .ipa to a safe place.
    My iPhone does not have the app installed at all and is synced to my Home computer.
    I can't download the app from the app store as it now requires iOS5 and my iPhone is a 2G on iOS3.
    The version on my Works PC would work, but my iPhone is not set to sync with it.
    My home computer has neither, well at least I have not downloaded either ?
    If I could some how put the ipa file on my home computer or preferebly just install it directly onto my iPhone ???

  • Error in migrating a Spring/Struts-App from Tomcat to WebAS

    I tried migrating a Struts/Spring-App (war) which is running smoothly in Tomcat to WebAS.
    Deploying is no problem and the plain JSPs work fine. But the 'real' app is not running and throws the following error at startup:
    24 Mai 2006 09:07:13,593 - ActionServlet.initServlet(1149) | The /WEB-INF/web.xml was not found.
    org.xml.sax.SAXParseException: Dokumentwurzelelement fehlt
         at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3376)
         at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3364)
         at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:668)
         at org.apache.crimson.parser.Parser2.parse(Parser2.java:337)
         at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:448)
         at org.apache.commons.digester.Digester.parse(Digester.java:1567)
         at org.apache.struts.action.ActionServlet.initServlet(ActionServlet.java:1142)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:328)
         at javax.servlet.GenericServlet.init(GenericServlet.java:258)
         at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.addServlet(WebComponents.java:134)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:376)
         at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:110)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Any help much appreciated!

    hi istvan,
    we are also migrating from websphere to netweaver.
    But in spring framework we r facing problems.
    We hav spring-beans.jar file in lib dir of Web Application. But When we are creating BeanFactory from xml as,
    BeanFactory beanFactory = new ClassPathXmlApplicationContext ("client-config.xml");
    clent-config.xml file contains :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
    <beans>
         <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >
              <property name="location">
                   <value>conf/service-client/client.properties</value>
              </property>
         </bean></beans>
    But code is giving exception: ClassNotFoundException -org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.
    Wat is the problem ?
    Kindly help.
    We are also using JAAS for authentication.We are refering above code from our LoginModules login() method.
    Regards,
    sagar.

  • NB upgrade - from tomcat to glassfish

    I upgraded NetBeans from 5.5b to 6.1. There is no longer a bundled tomcat, instead there is glassfish.
    My old web projects (written against tomcat) build correctly but they no longer run under glassfish. I get a 404 when I try to access them. I do not know glassfish well enough to troubleshoot via gf log messages whey they are not running under gf.
    Should these old tomcat projects run orrectly in glassfish or do i have to configure a file like web.xml in order to get them to run under glassfsh?

    duffymo wrote:
    qt4x11 wrote:
    I upgraded NetBeans from 5.5b to 6.1. There is no longer a bundled tomcat, instead there is glassfish.
    My old web projects (written against tomcat) build correctly but they no longer run under glassfish. I get a 404 when I try to access them. I do not know glassfish well enough to troubleshoot via gf log messages whey they are not running under gf.404 suggests that you just have a deployment or URL issue. What URL do you use to invoke the web app? Do you package it in a WAR file? Tomcat's default port is 8080; what port is Glassfish listening to for HTTP requests?
    I hit 'run main project' - the main project builds, then glassfish is started, and a browser window starts up with the web app.
    I am new to glassfish - I checked Services/Servers/GlassfishV2/Properties - it says
    Location: localhost:8484
    is that the port you are asking about?
    duffymo wrote:
    qt4x11 wrote:
    Should these old tomcat projects run orrectly in glassfish or do i have to configure a file like web.xml in order to get them to run under glassfsh?%

  • How do I remove migrated PPC apps from Intel iMac that has the same apps?

    Before I begin, please know that I've read a lot of previous posts but all the posts only had some of what I needed so I'm posting this as a new topic. OK, here I go:
    My PPC running 10.5 just froze-up (that has since been solved) but in the process of solving that issue, I migrated everything as a different user (User B) INCLUDING my applications, to my Intel iMac - my iMac that also had the same applications on it - except they were intel versions and they were under User A.
    So I essentially did an archive and clean install on my PPC.
    Then, using Migration Assistant, I transferred User B onto my PPC. Now both of my computers have duplicates of most of my applications. In trying to fix this issue, I found out I should NOT have transferred my applications. So now I'm very confused as to which apps I should remove off my PPC and which I should remove off my intel iMac.
    If I just delete User B from my intel iMac, that's easy enough but will that remove the dupes? I have a funny feeling it doesn't.
    And then, which do I remove from my PPC?
    AND THEN, are there other things I will need to remove from different places on my computer?
    Any help would be greatly appreciated. Thanks!
    And now, I've used migration assistant to move everything from user (B) back to my PPC. Now I have duplicate applications with "(from old mac)"

    Normally application go in the Applications folder at the top level of the hard drive, not in any user folders. If you have applications in user folders that are the same as those in the Applications folder, you can delete them from the user folders. If you actually migrated PPC applications into the Applications folder on an Intel Mac, it would have replaced the Intel versions. To fix that,you would have to reinstall OSX on the Intel Mac.
    The same thing would apply on the PPC Mac.

Maybe you are looking for

  • Exception condition "CONFIG_NOT_FOUND" raised.

    Hi, I am trying to create an Opportunity in CRM 7.0 WEB UI. The moment i click on the create opportunity, i am getting a pop window, showing the transaction types which i have created in spro. But when i am selecting any one of them, i am getting a d

  • Charge adaptor for 3G

    so the 3g has been out a while now and i still cant find an adapter so my CD player in my car will charge my iphone 3g. i see cablejive has made one that will be on sale soon, does anybody know if there is any other adapters already fro sale? http://

  • Colormaps?

    Hello, I'm running into a problem with a couple programs. 1 Program needs to be running in 8-bit colors while another program needs to be running in 24-bit colors. These programs need to be ran at the same time so it causes a little bit of a problem.

  • Task killer apps.  Yes or No?

    I recently purchased my first smartphone, a Droid Razr, and have a question about task killer apps. Several people have told me that I should install a task killer app.  They have recommended "Advanced Task Killer".  They claim that a task killer app

  • Performance issues in using RBDAPP01 for reprocessing iDocs with Status 64

    Hi All, I am using the Standard ABAP Program 'RBDAPP01' for reprocessing Inbound iDocs with Status 64 (Ready to be posted). When this is scheduled as a job in background, I find that it opens multiple sessions and occupies all available dialog sessio