Anyone got Oracle working on a V40z?

From what I understand Oracle 10g is certified or will be certified for Solaris 10 x86. I plan to intall Oracle on a 4CPU V40z with > 4GB RAM.
Has anyone else got this to to work on a V40z. Oracle is currently x86 32bit - I don't need more than 2GB for this app. Can I get this to run correctly on a Solaris 10 box with >4GB RAM on AMD64 which I assume needs to run in 64 bit mode due the quantity of RAM on board.
thanks in advance

Anyone?

Similar Messages

  • 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

  • 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.

  • 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.

  • AMSN 0.97-2 - Anyone got it working?

    Hello,
    I have been using Arch for 2 days but I am struggling on this one.
    Apparently, the MSN 9 protocol needs TLS, which I did install as required. I also have edited the file /usr/lib/tls1.50/pkgIndex.tcl as mentioned in the amsn wiki but still the same issue. When launching asmn, I get the dialog telling me about TLS and I am stuck there
    I have been trying everything I could think of, so if anyone of you did manage to get it working, I will be very happy to hear how
    Thanks in advance.
    Ludo

    Condex wrote:
    Try this one Coume:
    Edit as root the /usr/lib/tls1.50/pkgIndex.tcl file.
    Change the line so that looks like this one:
    package ifneeded tls 1.50 "[list load [file join $dir .. libtls1.50.so] ] ; [list source [file join $dir tls.tcl] ]"
    I was having the same problem, as I can remember it is a problem with the "1.5", that needs to be set to "1.50". I found the solution on the net, but I don't remember where...:(
    In my system(i686) it worked...
    Hope it helps
    Thanks for answering.
    But after reading the amsn forums, I did do the same tweaking in this file but it does not help
    # cat /usr/lib/tls1.50/pkgIndex.tcl
    # pkgIndex.tcl -
    #    A new manually generated "pkgIndex.tcl" file for tls to
    #    replace the original which didn't include the commands from "tls.tcl".
    package ifneeded tls 1.50 "[list load [file join $dir .. libtls1.50.so] ] ; [list source [file join $dir tls.tcl] ]"
    I am really starting to get frustated because I tried everything which is mentioned online and I can't get any where... That's why I started to wonder if the issue could not be related to my arch x86_64
    Anyone under x86_64 got it working??
    Thanks
    Ludo

  • Smart profile s60 3rd edition. anyone got it worki...

    has anyone got the S60 3rd edition version of this working? it installs but just hangs on initialising? any ideas?
    testing this out on a N91
    http://my-symbian.com/s60v3/software/applications.php?fldAuto=277&faq=1
    Nexu 5

    hello,
    for testing porposes or for final distributions, you don't
    need to get developer cert. a self certificate will work.
    i have posted a reply to similar question at
    http://www.orison.biz/support/viewtopic.php?id=81
    hope it helps,
    // chall3ng3r //

  • Intel 82845G and xorg 1.8 - anyone got it working?

    By 'working' I mean 'not crashing'. I can install xorg 1.8 just fine, but rebooting every half an hour is not my thing. The crashes happen even if I'm just typing away at the xterm.
    [karol@black ~]$ lspci -v | grep -i -A8 VGA
    00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01) (prog-if 00 [VGA controller])
    Subsystem: IBM NetVista A30p
    Flags: bus master, fast devsel, latency 0, IRQ 16
    Memory at 88000000 (32-bit, prefetchable) [size=128M]
    Memory at 80000000 (32-bit, non-prefetchable) [size=512K]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915
    There are some bug reports in both our and upstream bugtrackers but the issues are still open.
    I'm quite happy w/ xorg 1.6 I have so it's not a life-or-death situation by any means. If you got it working, please tell me how you did it - there's a myriad of "switches" to flip and I'm too lazy / busy to try them all out. I've tried a few and got nowhere, so I'm asking you, my fellow Archers.

    Same hardware here, having this issue for about two years now with linux in general, about six months ago I start using arch, to my surprise it didn't crash that much and when it did a least it took me to the console login, so no data was lost. a month ago I switch to arch completely and just for the fun of it I have four arch DE in my single computer the results are as follow:
    Gnome=no crashes smooth performance even with composite enabled (the simple one build in gnome)
    KDE=freezes on some heavy loaded webpages with flash media, a strange garbaged screen occurs when I am using some software in root mode like dolphin then it crash and takes me to login window. this could be kde I have no idea.
    Xfce=freezes with heavy flash media once in a while. can be restarted by killing x.
    LXDE=no crashes/freezes (I use it just for internet surfing)
    all of the above with up to date software.
    Coming from Ubuntu lucid I may said that the driver has been improved, and probably cutting the fat out of the system may improve performance. I use gnome as my main system and all I can say is that finally I can use my computer for something else other than trying to fix xorg and intel. I was really moved to buy a new one but Arch just give me some more juice out of this old machine. same intel card than described in the first post. this is definitely not my Ubuntu 8.04 which was flying in amazing compositing effects but a least is back to a tool I can work on.
    All of my systems are fresh installs, all of them with the xorg 1.8 and the ..34.. kernel since the beginning, there is no xorg.conf file on any, I haven't had a crash in which I need to do a hard restart.

  • ATI driver for win7 Macbook pro 2010 anyone got it working?

    I'm trying to get the windows7 ati driver to work. Loaded the bootcamp drivers but the display driver is just the generic monitor resolution 1280 x 1024.

    sorry its Nvidia and I finally got it working. Had to remove and then reinstall bootcamp drivers.

  • 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.

  • Anyone got facelets working ?

    Hi,
    I have been trying to get Facelets working with the JSF portlet support in portal 9.2, but without success. I get a "java.lang.InternalError: erroneous handlers" error, which doesn't tell me much, besides that it is actually doing something with Facelets. Anybody got this working and if so what did it take ?
    /Steen

    Hi,
    I have been trying to get Facelets working with the JSF portlet support in portal 9.2, but without success. I get a "java.lang.InternalError: erroneous handlers" error, which doesn't tell me much, besides that it is actually doing something with Facelets. Anybody got this working and if so what did it take ?
    /Steen

  • 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.

  • 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.

  • X-fi Titanium and Sonar on Vista64 - Anyone got it worki

    The Titanium doesn't show up in my Cakewalk Sonar?list of inputs and outputs. Is this normal? Going to be fixed? I really want to try out the supposed low latency, but it won't let me. :angry:

    Finally got an answer. No 64-bit ASIO for X-Fi Titanium.
    From?Creative Support:?
    Current sound cards such as the Creative X-Fi Titanium Fatalty Pro
    Series have x64 drivers, but the ASIO implementation will only work with
    32bit applications, not nati've 64bit ap
    ps.
    This may change as more
    nati've drivers for ASIO 2.2 becomes available though. Please check our
    website regularly for future driver updates. We apologize for any
    inconvenience.
    Another note to Creative:? Please try to be clear on your packaging and technical specs. Besides driver problems, judging from the content of these forums, this appears to be a big problem for consumers of Creative products. No one knows just what it is they are getting. It's very frustrating for the consumer.

  • 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>

  • I can't export .oam files any more. What gives? A big bad bug? Anyone got a work around?

    I was doing great with Edge until last night...when the .oam publishing feature vanished. I'm pasting small animations into my Muse pages, so this was a great thing, in theory, anyway. Tried restarting the app, tried restarting the computer, always opened the .an doc to work on the project. Thing is, it works once in a while...like once in 20 tries. Why? What's the deal? This app just not ready for the real world yet?

    Hi, sdotkling-
    A couple of questions:
    Are you saving first?  We don't allow publish for new, unsaved files.  (It seems like you're working on an an file first)
    Do you have any errors in the warnings panel?  Look in the lower right hand corner in the Stage panel.
    If neither of these are the case, please post your entire project file on a file sharing site so that we can take a look at what you're trying to do and advise you.
    Thanks,
    -Elaine

Maybe you are looking for