Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

Hi,
Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
My error is simply
SEVERE: Error listenerStart
SEVERE: Context startup failed due to previous errors
I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
Has anyone encountered this before?

Back again,
Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
I had a look at
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
-------------------- EXTRACT ------------------------
Installing the compatibility package will add the following to the list, which are
needed when running on J2SE 1.4:
* jmx.jar (Java Management Extensions API 1.2 or later)
* xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
--------------------END EXTRACT ------------------------
Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
Ah what a relief.

Similar Messages

  • Front Row in Lion. Has anyone got it working with iTunes 10.5 yet?

    I've got it working with pics and movies by using the method in the link below, but not with the library in iTunes 10.5.
    http://www.cultofmac.com/106874/use-front-row-in-os-x-lion-video-how-to/

    Yes I know. I'm very annoyed that Apple have dropped Front Row from Lion, it removes quite a bit of functionality from my iMac. I use it a lot. I've tried Plex, but don't like it at all.

  • Has anyone got iFS working in Tomcat ?

    iFS 1.1.9
    We have a urgent need to get iFS running in a Servlet 2.2 container and OC4J does not support iFS yet. I know this is not supported but has anyone got iFS working in Tomcat ? If so, pls do me a BIG favour by letting me have your config files, such as
    - server.xml
    - <tomcat home>\conf\web.xml
    - web.xml for the tomcat context)
    - wrapper.properties (if you are using tomcat as an NT service)
    - tomcat-apache.conf (or equivalent)
    - <oracle home>/apache/apache/conf/httd.conf
    - A listing of relevant environment variables (by doing a "set>env.lis" or similar)
    - and any other files you might think is relevant
    Thanks a million in advance.
    null

    iFS 1.1.9 / Oracle 8.1.7 / Tomcat 4.0.1 / Windows 2000
    After several hours of fiddling around with the configuration
    files, I finally got the iFS up and running on my test machine.
    Briefly here's what I did:
    1) create application directories
    <tomcat_home>/ifs/files/WEB-INF/classes
    <tomcat_home>/ifs/files/WEB-INF/lib
    2) Add the following to <tomcat_home>/conf/server.xml:
    <Context path="/ifs/files" docBase="ifs/files"
    debug="0" reloadable="true">
    <!-- got this from jserv.properties -->
    <Environment name="ORACLE_HOME" type="java.lang.String"
    value="oracle_home"/>
    <Environment name="ORACLE_SID" type="java.lang.String"
    value="sid"/>
    <Environment name="LD_LIBRARY_PATH" type="java.lang.String"
    value="oracle_home/lib:oracle_home/ctx/lib"/>
    <Environment name="NLS_LANG" type="java.lang.String"
    value=".UTF8"/>
    </Context>
    Please replace oracle_home with your installation directory and
    fill in your SID as well.
    3) create <tomcat_home>/<tomcat_home>/ifs/files/WEB-INF/web.xml
    with the following definitions:
    <servlet>
    <servlet-name>oracle-jsp</servlet-name>
    <servlet-class>oracle.jsp.JspServlet</servlet-class>
    <init-param>
    <param-name>logVerbosityLevel</param-name>
    <param-value>WARNING</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <servlet-
    class>oracle.ifs.protocols.dav.impl.IfsDavServlet</servlet-class>
    <init-param>
    <param-name>classpath</param-name>
    <!-- this classpath is crucial for JSP compilation.
    | The value has to be in one single line without
    | linebreaks and spaces !!!
    -->
    <param-value>
    tomcat_home/webapps/ifs/files/WEB-INF/lib/ojsp.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/webui.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/adk.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/http.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/repos.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/email.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/release.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/lib/utils.jar;
    tomcat_home/webapps/ifs/files/WEB-
    INF/lib/settings.jar;
    tomcat_home/webapps/ifs/files/WEB-INF/classes;
    tomcat_home/lib/xmlparserv2.jar;
    tomcat_home/lib/classes12.jar;
    tomcat_home/common/lib/servlet.jar;
    </param-value>
    </init-param>
    <init-param>
    <param-name>ifs.dav.servicepassword</param-name>
    <param-value>manager</param-value>
    </init-param>
    <init-param>
    <param-name>encode_to_java</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>page_provider</param-name>
    <param-
    value>oracle.ifs.protocols.dav.impl.jsp.IfsJspResourceProvider</p
    aram-value>
    </init-param>
    <init-param>
    <param-name>page_repository_root</param-name>
    <param-value>ifs_home/ifsjsps</param-value>
    </init-param>
    <init-param>
    <param-name>unsafe_reload</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>developer_mode</param-name>
    <param-value>true</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>oracle-ifs-servlet</servlet-name>
    <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
    <servlet-name>oracle-jsp</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    tomcat_home and ifs_home must be replaced with your installation
    directories.
    4) Copy the iFS and Oracle JARs to the locations specified in
    web.xml
    You may choose either the applications lib directory or the more
    general tomcat_home/lib for that purpose.
    One hint on libraries: Tomcat will ignore ZIP files, you have to
    use JAR. I renamed Oracle's classes12.zip to classes12.jar for
    that reason.
    5) Create settings.jar
    This was the most tricky part. I packed everything under
    ifs_home/settings into the file settings.zip, renamed this to
    settings.jar and moved it to the WEB-INF/lib directory. Seems a
    bit of a kludge to me, anyone with a better solution is welcome.
    6) Start tomcat
    7) try http://yourtomcathost:8080/ifs/files/index.html
    You should see the ifs login screen then.
    One word about the application environment. In this
    configuration every user class has to go into
    <tomcat_home>/ifs/files/WEB-INF/classes, the
    ifs_home/user_classes is of no use here. And don't try to set
    the classpath within catalina.bat, tomcat will completely ignore
    this setting.
    Finally, I know that this environment is not supported but as
    long as the iFS servlet meets the standards, every standard
    compliant servlet engine should do the job.
    Good luck

  • Has anyone got photostream to upload from a pc yet?  Works fine between my MacBookPro and iMac and TO my PC's but not FROM my PC's

    Has anyone got photostream to upload from a pc yet?  Works fine between my MacBookPro and iMac and TO my PC's but not FROM my PC's

    Same here.  Seems to download great, but upload is a problem.  Searched for some type of file size / type restriction, but the help pages do not seem to be in place yet.

  • Back to Mac - Has anyone got it working?

    I've hooked my laptop up to another ISP and i can't see my desktop in the Shared Section. When i'm on the same network I can see the desktop, share the screen and all that fun stuff. Has anyone got it working? Could it be my network configuration?

    I had a read through the manual that came with Leopard last night and was a little dissapointed to read this part in regard to Back to My Mac:
    With your .Mac membership, an internet connection, and Back to My Mac and sharing services turned on, you can access any of your computers from anywhere on the internet."
    Sounds like you might need a .Mac account for Back to My Mac. I think you can do the same kind of thing with iChat though so i guess you can still take control of someones Mac over the net to help them fix a problem. But you may need .Mac account to, for example, access your home computer from your work computer.
    I could be completely wrong and im certain someone will point this out if i am wrong. Im still getting to grips with all the new features here.

  • Has anyone done any work with the "Form" Email Feature in 2008?

    Has anyone done any work with the "Form" Email Feature in 2008?
    2006.7
    Oracle 9i
    Websphere 5.11
    IE6 & IE7
    I have been testing the version 2008.2 and noticed the "Form" link in the email templates, has anyone used this or know what its for? 
    It seems like a useful feature, but I can not find any documentation on its use.
    Thank you
    Daniel

    Hi Daniel,
    The HTML widget we have incorporated into the application is an open source tool. It's name is FCKeditor. Here is the URL for the documentation site: http://docs.fckeditor.net/
    - Ed

  • JSTL  Has anyone got this working successfully

    Has anyone gotten JSTL or any third party tags to work successfully if so how?  I will award points for good answers

    Basically you can not work with jstl within sap portal. However, if you are willing to do some work, here is what i did:
    At first you have to understand the problem, so here a brief snippet of the generated java source
                 try {
                              int _jspx_eval_hbj_page_2 = _jspx_th_hbj_page_2.doStartTag();
                              if (_jspx_eval_hbj_page_2 == Tag.EVAL_BODY_INCLUDE)
                                throw new JspTagException("Since tag handler class com.sapportals.htmlb.taglib.PageTag implements BodyTag, it can't return Tag.EVAL_BODY_INCLUDE");
                               if (_jspx_eval_hbj_page_2 != Tag.SKIP_BODY) {
                                 try {
                                   if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE) {
                                     out = pageContext.pushBody();
                                     _jspx_th_hbj_page_2.setBodyContent((BodyContent) out);
    snip some parts
                             } finally {
                                  if (_jspx_eval_hbj_page_2 != Tag.EVAL_BODY_INCLUDE)
                                       out = pageContext.popBody();
                        if (_jspx_th_hbj_page_2.doEndTag() == Tag.SKIP_PAGE)
                             return;
                   } finally {
                     _jspx_th_hbj_page_2.getBodyContent().close();
                     _jspx_th_hbj_page_2.release();
    The generated code is bad and not foolproof:
    1. sap wrongly assumes that EVERY tag implements BodyTag. This is just not the case
    2. If, for whatever reasons, doStart() throws an exception, the finally block will call getBodyContent().close(), and throw an NullPointerException...
    Basically i had to write wrappers of my own, that implemented BodyTag and replace the used classes in the tld-file to point my wrapper classes.
    Because of the deficiencies in doStart() your wrapper must not ever return null upon calls to getBodyContent(), even if it has not been initialized.
    Of course, this wont get you anywhere near reading your resource bundles within a tag, but thats another story.

  • Anyone got NTP working with a Windows 2008 NTP server?

    Hello,
    I'm trying to sync the time on our routers and swithces with a Windows 2008R2 server, but it doesn't work.  Has anyone managed to do this:
    Config:
    ntp master
    ntp update-calendar
    ntp server 192.168.2.164
    sh ntp associations
      address         ref clock         st   when   poll   reach    delay    offset     disp
    *~127.127.1.1     .LOCL.         7     11     16      377      0.000   0.000      0.225
    ~192.168.2.164  .INIT.          16      -      1024     0       0.000    0.000    15937.
    Windows 2008R2 server
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]"
    "Enabled"=dword:00000001
    restart server
    w32tm /config /manualpeerlist:uk.pool.ntp.org,0x8 /syncfromflags:MANUAL
    net stop w32time
    net start w32time
    Doesnt work
    Woudl Linux like Ubuntu be better?
    Thanks

    I got this working from a cisco 2911 router to Windows 7 computer.
    As per many articles, you are missing:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "AnnounceFlags"=dword:00000005
    But the one that allows Cisco kit to Sync is:-
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config]"
    "LocalClockDispersion"=dword:00000000
    This article http://www.cisco.com/c/en/us/support/docs/ip/network-time-protocol-ntp/108076-ntp-troubleshoot.html talks about having a root-dispersion higher than 1000ms (1 second) causing Cisco IOS-NTP to unsynchronizes itself.
    This article http://htluo.blogspot.co.uk/2009/02/ntp-network-time-protocol.html#comment-form was the only one I found that added to the normal enable ntp server registry keys information, stating to change ‘HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\LocalClockDispersion’  from 10 to 0
    There was also articles that said that the Windows NTP implementation was version 3, and therefore you had to append ‘version 3’ to the routers ‘ntp server x.x.x.x’ command. This may be perhaps true for earlier windows versions?, but was NOT required for Windows 7.

  • Has anyone got these problems with iOS6 and Siri?

    Hi, yes, I'm another unhappy iPhone 4s user who made the mistake of upgrading to iOS6, (what a way to use my first post!!)
    However, I won't gripe about the very very poor maps (please Google, release an app!), but I have noticed these other 2 problems and wondered if anyone else had:
    1) After using Siri with my bluetooth headset to open some apps or do some work the phone automatically locks itself, which is very annoying when I can't handle my phone!  For example, my phone isn't locked, I used Siri to find out what tomorrow's weather will be like, it tells me  and then 3-5 seconds later the phone locks itself and I have to enter my unlock code.  Or, I opened my Sky Go app using voice control, which it did .............. before locking the phone a few seconds afterwards.  Arghhh!
    2) Sometimes the screen dims itself.  I have to lock the phone and unlock it and it reverts to its usual brightness.
    Also, I don't know if this has anything to do with iOS6 or just my usage, but the battery seems to be draining more.  I'll be keeping an eye on this to see if its down to me, my apps or my phone!!
    Am I the only one
    B

    I am right there with you! I have AT&T and have exchanged it etc...nothing seems to work. My iPH4 did not have these issues! Not sure what to do...besides try a new carrier.

  • Installation of EHP4 - Has anyone got this working

    Hi All;
    I know that SAP will not like to hear this, but the installation of EPH4 using Solution Manager is a frustrating exercise in futility.  I have been trying to install EHP4 for over 2 months now and it keeps failing.  I have an open HIGH ticket with SAP and they have moved me forward in the installation process due to Bugs in their tools, but once I get 1 bug resolved I quickly hit another one. SAP Support keeps bouncing me all over the place.  I feel like I am dealing with a Beta product rather then a General release solution.  Furthermore, SAP's support sense of urgency is completely different then their customer base.  I have also had our SAP account manager in to express my frustration and while sympathetic to my situation, he acknowledges there is little he can do.
    My latest issue is similar to this link:
    Re: EHP4 Error in PREPARE_JSPM_QUEUE
    Specifically, I have gotten over the ABAP installation and now I am in the JSPM portion.  The installation fails on the PREPARE_JSPM_QUEUE phase with the error:
    Here are the last few lines of our PREPARE_JSPM_QUEUE_CSZ_01.LOG file:
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.connect(AbstractToolConnector.java:729) [Thread[main,5,main]]: Connected to host vmsapdev02 on port 6250.
    Apr 1, 2010 8:56:34 PM [Warning]:   com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.discardMsg(AbstractToolConnector.java:775) [Thread[JSPM,5,main]]: Discarding message $com.sap.sdt.sltool.rapi.connector.MsgData@39402772
    Apr 1, 2010 8:56:34 PM [Info]:    com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.connect(SAPJupJSPMRapiAdapter.java:139) [Thread[main,5,main]]: JSPM was started successfully.
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:184) [Thread[main,5,main]]: Trying to log in with user J2EE_ADMIN.
    Apr 1, 2010 8:56:34 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:190) [Thread[main,5,main]]: JSPM detect non deployable components login request property is set to "true".
    Apr 1, 2010 8:56:42 PM [Info]:      com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.login(SAPJupJSPMRapiAdapter.java:199) [Thread[main,5,main]]: JSPM successfully logged in with user J2EE_ADMIN.
    Apr 1, 2010 8:56:42 PM [Info]:    com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.connect(SAPJupJSPMRapiAdapter.java:143) [Thread[main,5,main]]: JSPM was connected successfully.
    Apr 1, 2010 8:56:42 PM [Info]: com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.createQueueFromStack(SAPJupJSPMRapiAdapter.java:287) [Thread[main,5,main]]: Starting creation of deploy queue from file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml.
    Apr 1, 2010 8:56:43 PM [Info]: com.sap.sdt.sltool.rapi.connector.AbstractToolConnector.handleMsgClosed(AbstractToolConnector.java:560) [Thread[JSPM,5,main]]: Reporting failed commlink.
    Apr 1, 2010 8:56:45 PM [Info]:         com.sap.sdt.jspm.rapi.connector.JSPMConnector.waitForJSPMTermination(JSPMConnector.java:483) [Thread[main,5,main]]: JSPM stopped.
    Apr 1, 2010 8:56:45 PM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Apr 1, 2010 8:56:45 PM [Error]:             com.sap.sdt.jspm.unattended.RequestController.addContextInfo(RequestController.java:178) [Thread[main,5,main]]: Stack definition file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml contains no applicable SP stacks. For details see SCAN_INBOX*.LOG in current JSPM log directory.
    JSPM version is 7.01.5.1.3. Current JSPM log directory is /usr/sap/DEV/DVEBMGS00/j2ee/JSPM/log/log_2010_04_01_20_56_32.
    Apr 1, 2010 8:56:45 PM [Error]: com.sap.sdt.sapjup.tools.sapjupjspm.SAPJupJSPMRapiAdapter.createAndLogRapiException(SAPJupJSPMRapiAdapter.java:710) [Thread[main,5,main]]: Could not create deploy queue.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase PREPARE/INIT/PREPARE_JSPM_QUEUE has been completed.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2010/04/01 20:56:24.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2010/04/01 20:56:45.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:00:21.019.
    Apr 1, 2010 8:56:45 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]: Phase status is error.
    Here are the last few lines in our SCAN_INBOX_01.LOG file:
    EHP4 FOR SAP ERP 6.0 / NW7.01 - EHP4 FOR ERP 6.0_NW701
    Mar 23, 2010 11:33:27 AM [Info]: Filtering delivery units from stack /usr/sap/trans/EPS/in/SMSDXML_DEV_20100310200324.828.xml.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/JSPM from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: JSPM will not patch NWDI build component sap.com/SAP_BUILDT, because it does not have any deployable content. See SAP Note 1027362 for more information.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP_BUILDT from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: No patch for SAP KERNEL NONUNICODE LINUX_X86_64 found in support package SAP KERNEL that is located in /usr/sap/trans/EPS/in.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package SAP KERNEL that is located in /usr/sap/trans/EPS/in is incomplete. See previous messages.
    Mar 23, 2010 11:33:27 AM [Warning]: Rejected delivery unit for component sap.com/SAP KERNEL from the stack.
    Mar 23, 2010 11:33:27 AM [Warning]: Support package stack SAP NETWEAVER,SAP ERP,EHP4 FOR SAP ERP 6.0_NW701 SAP EHP1 FOR SAP NETWEAVER 7.0,2005,EHP4 FOR ERP 6.0_NW701 (/usr/sap/trans/EPS/in/SMSDXML_DEV_20100310200324.828.xml) is rejected. Check previous warning messages.
    I don't know why we are getting these warning messages since the Kernel files (non-unicode for the ABAP portion) and Unicode for the Java stack are in the /usr/sap/trans/EPS/in subdirectory.
    SAP has been in my Solution Manager and confirms everything is setup ok.  We have a Linux Red Hat EL 5.0 64 bit Application server that has been successfully upgraded from SAP 4.7 x 110 to SAP ECC 6.0 EHP1.
    Our Database server is also Linux Red Hat EL 5.0 64 bit running Oracle 10.2.0.4.  Our system is vanillia.  We are an IT shop so we lots of knowledgable people in the company and can response to SAP requests quickly (which are slow in coming). 
    I am also wondering if this warning message is causing any problems.  SAP has confirmed that our parameter settings are correct but I wonder since I am getting this message.
    Apr 2, 2010 11:37:18 AM [Warning]: Software feature SAP ERP 6.0 : SAP
    ECC Server - 16 (08/2009) found in stack definition
    file /usr/sap/trans/EPS/in/SMSDXML_DEV_20100331164248.069.xml is
    applicable for system SID: DEV and HOST: vmsapdev02, but the current
    system is SID: DEV and HOST: vmsapdbdev02. This software feature will
    be skipped.

    Hi NIraj;
    Thank you for the prompt reply.  In MOPZ I have selected the NON UNICODE portion of the Kernel.  Here is a portion of the XML file.  I believe this is the area that specifies the NON UNICODE Kernel upgrade.  These files are in the /usr/sap/trans/EPS/in directory.  Any other ideas?
    <software-component>
        <caption>SAP KERNEL 7.01 64-BIT</caption>
        <ppms-number>01200615320200011147</ppms-number>
        <runtime-type>OS</runtime-type>
        <name>KRNL64NUC</name>
        <version>7.01</version>
        <vendor>sap.com</vendor>
        <support-package>
         <caption>SP055 for SAP KERNEL 7.01 64-BIT</caption>
         <name>SP055</name>
         <vendor>sap.com</vendor>
         <ppms-number>01200615321100059367</ppms-number>
         <sp-level>055</sp-level>
         <patch-level>55</patch-level>
         <archives>
          <os-set os="LINUX_X64">
           <db-set db="DBINDEP">
            <archive-name patch-level="55" os="LINUX_X64" db="DBINDEP">SAPEXE_55-10005922.SAR</archive-name>
           </db-set>
           <db-set db="ORA">
            <archive-name patch-level="55" os="LINUX_X64" db="ORA">SAPEXEDB_55-10005926.SAR</archive-name>
           </db-set>
          </os-set>
         </archives>
        </support-package>
       </software-component>
       <software-component>
        <caption>SAP KERNEL 7.01 64-BIT UNICODE</caption>
        <ppms-number>01200615320200011148</ppms-number>
        <runtime-type>OS</runtime-type>
        <name>KRNL64UC</name>
        <version>7.01</version>
        <vendor>sap.com</vendor>
        <support-package>
         <caption>SP055 for SAP KERNEL 7.01 64-BIT UNICODE</caption>
         <name>SP055</name>
         <vendor>sap.com</vendor>
         <ppms-number>01200615321100059368</ppms-number>
         <sp-level>055</sp-level>
         <patch-level>55</patch-level>
         <archives>
          <os-set os="LINUX_X64">
           <db-set db="DBINDEP">
            <archive-name patch-level="55" os="LINUX_X64" db="DBINDEP">SAPEXE_55-10005984.SAR</archive-name>
           </db-set>
           <db-set db="ORA">
            <archive-name patch-level="55" os="LINUX_X64" db="ORA">SAPEXEDB_55-10005987.SAR</archive-name>
           </db-set>
          </os-set>
         </archives>
        </support-package>
       </software-component>
      </sp-feature-stack>

  • Has anyone got iSight working when a firewire drive is connected?

    I have tried numerous drives but they all stop iSight working. For sure I would not have bought it had I known this. It will work if I disconnect all drives. Irony is that the internal is so slow that I run off a firewire.

    I have had problems with connecting an external firewire hard drive and isight camera at the same time. I have problems copying or reading files off my hard drive when my isight camera is connected at the same time. Just the other day, I forgot to disconnect my isight camera when I hooked up my external hard drive to view some old family photos that I scanned in and saved to that hard drive months ago. I kept getting a message that the files could not be read and had an error message. I thought that I had lost all the photos or had not scanned them properly or that my hard drive was going bad. Luckily I remembered that there is a firewire problem when my isight is connected and I disconnected the camera and was able to open the files. It would be nice if Apple could address this problem. I also have problems copying files to my idisk on occassion when my isight camera is connected. It tends to be slow and sometimes the wheel spins for a very long time. Also have noticed that when I copy large number of files at one time to a CD that things seem to never work right. I have learned to copy files in smaller lots and this seems to help.
    I love my isight camera and it is so much better than my ibot camera, but wish they could fix the issues with the firewire.
    -Joan
    PowerBook G4   Mac OS X (10.4.2)  

  • Has anyone got Safari to work with Kerberos (SPNEGO) ?

    Has anyone got Safari to with using Negotiate (SPNEGO with Kerberos) when the system is not bound to ActiveDirectory or Macs OpenDirectory?
    I can load Firefox and it works fine, but Safari does not work. I keep hearing that Safari works out of the box, but its looks like its somehow tied to AD or Macs Opendirectory and its deployment of Kerberos.

    I am having the same problem and checked out the Apple Discussions for a solution.
    I too am meticulous with my addresses.
    Seeing no solution I went back to testing.
    I have tried:
    From Shrewsbury
    To Telford
    The result was a trip in the US taking 14 hours.
    Then I tried:
    From Shrewsbury UK
    To Telford UK
    This worked.
    When on the "Get Directions" screen there is a "Globe" icon by the "Space" icon. Pressing this brings up "English (US)". Press again and you get "English (UK).
    Any ideas?
    When I use the "Contacts" to get the Start and End fields the iPhone is bringing up the correct address but with "United States" at the end of the address.
    Again any ideas?
    In my Address book I never use the "Country" field as all my contacts are in the UK. I wonder if this is the problem and the iPhone is defaulting to US in the absence of no "Country"?
    Help!

  • Has anyone got the Comsoft Profinet example code working??

    Hello!
    I have a cRIO Profinet card and I'm attempting to get the example code working.
    I have followed the instructions in GettingStarted_cRIO_PN_IO_Device.pdf
    I have created an empty project with just the 9023 and 9113 present, and copied the 3 items from the example project cRIO PN IO-Device (LV 2012) as per the documentation.
    When I try to compile I get the error shown attached.  I cannot view the error as the VI is password protected.
    In 5 years of working with cRIO using many different c-series modules from NI and 3rd parties I have never come across a password protected example Vi - this is very disappointing!  I don't see how it will be possible to use the card without being able to access this VI, and clearly it is impossible to use it without this VI as they are unwilling to share its functionality.
    Has anyone got this working on anything other than a 9104 (which the example uses?)  Does anyone know the password?  Is it possible to use the card without using this example code?
    I will be communicating with a Siemens PLC (acquiring a load of U16s and logging on the cRIO at 20ms intervals).
    Many thanks for any input, or any experiences of using this card.
    Aaron
    LabVIEW/RT/FPGA 2012
    NI-RIO 12.0.1
    cRIO 9023 controller and 9113 chassis with COMSOFT PN module in slot 1.
    Attachments:
    PN_error.png ‏44 KB
    PN_error2.png ‏20 KB

    Just for the record, I am using the CRIO-PN with cRIO-9081 and cRIO-9068 integrated chassis successfully.
    LabVIEW (RT/FPGA) 2013 SP1.
    I didn't use the higher level ComSoft example code directly, as the VIs use so many control/indicators that the FPGA usage is sky high. I rewrote them to pass the I/O data via DMA FIFOs.

  • Has anyone got Robin Thick iTunes single!!!??

    Has anyone got his single with Pharell? I really want this single bad but because I am in the uk I cannot download
    Can anyone help? or tips on how I can get it?? If you can I will be forever in you debt!!!
    Thanks
    Nick

    Hi,
    Did you purchase song from iTunes Store? If so, have you tried deleting song from your library and redownloading from purchased in iTunes Store?
    Jim

  • I'm trying to update my apps using the creative cloud desktop app. I can't see any apps in the app tab, the wheel just spins round and round and nothing happens. Has anyone got any ideas? I've tried uninstalling the desktop app and reinstalling but it sti

    Hi
    I'm trying to update my apps using the creative cloud desktop app. I can't see any apps in the app tab, the wheel just spins round and round and nothing happens. Has anyone got any ideas? I've tried uninstalling the desktop app and reinstalling but it still has the same problem.
    Cheers
    Rachel

    Hi Rachel,
    You can follow the article: App doesn't open | Progress wheel spins continually to get your issue fixed.
    Let us know if the issue still persists or not.
    Regards,
    Ratandeep Arora

Maybe you are looking for

  • Attachment list

    Using PP01 (as well as other transactions) with the 'services for object' option there is sometimes the option to save attachments (word documents, spreadsheets, etc.) in SAP. My question is this - does anyone know where the objects are actually stor

  • How to determine the value of a Standard Value in a routing operation

    Dear Experts, Kindly guide me on how to detemine the value of my Standard Value in the  operation of my routing, or in the phase of my Master Recipe. I mean what determines the value that I enter for the Standard Values: Machine  and Labor in the pha

  • PROBLEM LOADING WEBSITES

    Hello !! I need some help ! I have searched all over the internet and can't find any help. I have a HP ENVY m6 Notebook PC running on Windows 8. After I updated Windows 8 to 8.1 some of the websites that I use wont completely load... It looks like th

  • Offline Backup from DB13 is not Working

    Hello all, When I take backup from Brtools from OS level then offline backup is goes fine but from scheduling offline backup from DB its shows “No action log found for this job.” in job log its gives following error: Job started Step 001 started (pro

  • The blue circle bar is stuck and I can't download apps in App Store

    So yeah I can't download apps, it all stared past few days, I downloaded tons of apps and lastly I downloaded Asphalt 8 and since then when I download app like mortal combat X it won't download it, the blue circle keeps going back and back when you l