It's possible change WSAD 5.1.2 java version[jdk 1.4.1],i woudl jre 5.0??

hi
i have a big problem,i would use tiger'jre but isn't possible,because also i change in Window->Preferences->Java-> Installed JREs in jdk 1.5,
when i start the server(i use for jsf) ,this is report:
************ Start Display Current Environment ************
WebSphere Platform 5.1 [BASE 5.1.0.3 cf30412.02] [JDK 1.4.1 b0344.02] running with process name localhost\localhost\server1 and process id 2320
Host Operating System is Windows XP, version 5.1
Java version = J2RE 1.4.1 IBM Windows 32 build cn1411-20031011 (JIT enabled: jitc), Java Compiler = jitc, Java VM name = Classic VM
was.install.root = d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51
user.install.root = d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51
Java Home = d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51\java\jre
ws.ext.dirs = d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/java/lib;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/classes;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/classes;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib/ext;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/web/help;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime;H:\Documents and Settings\Administrator\Desktop\sorgenti JDavide\repository5\progetti\JDAvide\driverDB\sapdbc.jar;H:\Documents and Settings\Administrator\Desktop\sorgenti JDavide\JVolaSms-20040413.jar;H:/Programmi/IBM/SQLLIB/java/db2java.zip;d:/Programmi/IBM/WebSphere Studio/Application Developer/v5.1.2/wstools/eclipse/plugins/com.ibm.etools.webservice_5.1.2.3/runtime/worf.jar
Classpath = d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/properties;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/properties;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib/bootstrap.jar;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib/j2ee.jar;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib/lmproxy.jar;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/lib/urlprotocols.jar;d:/Programmi/IBM/WebSphere Studio/Application Developer/v5.1.2/wstools/eclipse/plugins/com.ibm.etools.websphere.tools.common_5.1.1.1/runtime/wteServers.jar;d:/Programmi/IBM/WebSphere Studio/Application Developer/v5.1.2/wstools/eclipse/plugins/com.ibm.etools.websphere.tools.common_5.1.1.1/runtime/wasToolsCommon.jar
Java Library path = E:\Programmi\Java\jre1.5.0_03;d:\Programmi\IBM\WebSphere Studio\Application Developer\v5.1.2\runtimes\base_v51/bin
************* End Display Current Environment *************
i need to use jdk 1.5 for example for new method(1.4.02) of string (ex "".replaceFirst),etc,etc.
i hope in your.
hi,hi

nothing??

Similar Messages

  • Is it possible I found a bug in Java Pattern (JDK 1.5)???

    It is hard to believe that I should have found an error in the java.util.regex.Pattern class - and I hope you can tell me I'm wrong. Look at this example:
    Let's say the pattern is "%\d+". I can then easily match against, let's say "%20". If I however changes the string to "%20 ", then no match, not complete or partial! The oddest thing is that it seems to be connected to the usage of "%". To really nail the point..if you change the string to "%20 %20 ", then you will find two partial matches (which is correct). I have tried to debug the Pattern-class myself - but my debugger wouldn't show me the local variables in the Pattern class, so I gave up. Try to run the program below with JRE 1.5 (update 18) and exchange the "s" var to test it.
    public class RegExp {
    private static Pattern pattern = Pattern.compile("%\\d+");
    public static void main(String[] args) {
              String s = "%20";
              Matcher m = pattern.matcher(s);
              if (m.matches()) {
                   System.out.println("Complete match:");
                   for (int i = 0; i <= m.groupCount(); i++) {
                        System.out.println("Group " + i + " : " + m.group(i));
              } else if (m.find()) {
                   int pos = 0;
                   while (m.find(pos)) {
                        System.out.println("Partial match:");
                        pos = m.end();
                        for (int i = 0; i <= m.groupCount(); i++) {
                             System.out.println("Group " + i + " : " + m.group(i));
              } else {
                   System.out.println("NO MATCH");
    Edited by: mortensi on Jun 4, 2009 2:25 AM

    Sorry about the code. It truly compiled and worked..but I didn't know about the code-tag thing. Here is an version that should work well...or at least I hope so
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class RegExp {
         private static Pattern pattern = Pattern.compile("%\\d+");
          * @param args
         public static void main(String[] args) {
              String s = "%20";
              Matcher m = pattern.matcher(s);
              if (m.matches()) {
                   System.out.println("Complete match:");
                   for (int i = 0; i <= m.groupCount(); i++) {
                        System.out.println("Group " + i + " : " + m.group(i));
              } else if (m.find()) {
                   int pos = 0;
                   while (m.find(pos)) {
                        System.out.println("Partial match:");
                        pos = m.end();
                        for (int i = 0; i <= m.groupCount(); i++) {
                             System.out.println("Group " + i + " : " + m.group(i));
              } else {
                   System.out.println("NO MATCH");
    }

  • Is it possible change cost price when poss goods issue?

    Hi experts,
    I create a return sales order,then create delivery and post goods receipt,it generate a accounting document,the cost price take from material standard cost, is it possible change the cost price before post goods receipt.
    thanks.
    lance

    Dear anand,
    I have tried what you said,but it seam not in use.The VPRS in the delivery is 10, MAP in material is 12, after PGR the price in the accounting document is also 12, But I want the price in the accounting document is 10.
    Could you tell me is there any mistake.
    thanks.
    Lance.

  • I have a new Macbook pro and can't recall the password I used with my Time capsule - How can I (ideally) retrieve or possibly change the time capsule password?

    I have a new Macbook pro and can't recall the password I used with my Time capsule - How can I (ideally) retrieve or possibly change the time capsule password?

    Remember security on a TC is an illusion.
    Simply press the reset button for 1-2 sec.. you must not do too long .. it will then hard reset.. but soft reset will revert all passwords to default for 5min. ie TC password is now public.
    Remember this the next time because anybody at all can change your passwords.
    Once into the TC you can then open the view passwords if you wanted any weaker security. Click and open the TC.. and click on edit.. then go to the top menu..
    Voila .. all your passwords in plain sight to any Tom Dick and Fred.

  • Is it possible change my iphone 4 order from 16gb to 32gb

    Is it possible change my iphone 4 order. from 16gb to 32gb and have the same ship date.

    I'm sure you can, you would just have to call them up and tell them that you want the 32GB instead. If you ordered it and wanted to change on the same day, i'm sure you would have the same ship date but if you changed it the day after, it might as well change. who knows. Give them a call and see what they say.

  • Is it possible change path /apex to something else

    Hi,
    Is it possible change default path /apex to something else when using Apex listener?
    Regards,
    Jari

    Hi,
    When I remove policy for Apex listener I can see this
    SEVERE: Error listenerStart
    Aug 23, 2011 10:12:40 AM org.apache.catalina.core.StandardContext start
    SEVERE: Context [/htmldb] startup failed due to previous errors
    Aug 23, 2011 10:12:40 AM oracle.jdbc.driver.OracleDriver registerMBeans
    WARNING: Error while registering Oracle JDBC Diagnosability MBean.
    java.security.AccessControlException: access denied (javax.management.MBeanServerPermission createMBeanServer)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
         at java.security.AccessController.checkPermission(AccessController.java:546)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.management.ManagementFactory.getPlatformMBeanServer(ManagementFactory.java:500)
         at oracle.jdbc.driver.OracleDriver.registerMBeans(OracleDriver.java:320)
         at oracle.jdbc.driver.OracleDriver$1.run(OracleDriver.java:199)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.jdbc.driver.OracleDriver.<clinit>(OracleDriver.java:195)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at sun.misc.Service$LazyIterator.next(Service.java:271)
         at java.sql.DriverService.run(DriverManager.java:664)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.sql.DriverManager.loadInitialDrivers(DriverManager.java:506)
         at java.sql.DriverManager.initialize(DriverManager.java:612)
         at java.sql.DriverManager.getDrivers(DriverManager.java:356)
         at org.apache.catalina.loader.WebappClassLoader.clearReferences(WebappClassLoader.java:1581)
         at org.apache.catalina.loader.WebappClassLoader.stop(WebappClassLoader.java:1499)
         at org.apache.catalina.loader.WebappLoader.stop(WebappLoader.java:734)
         at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4398)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4246)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
         at org.apache.catalina.core.ContainerBase.access$0(ContainerBase.java:744)
         at org.apache.catalina.core.ContainerBase$PrivilegedAddChild.run(ContainerBase.java:144)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:738)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
         at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:825)
         at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:714)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:490)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:448)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.commons.daemon.support.DaemonLoader.start(DaemonLoader.java:177)But I'm not sure about does my logging work ok. See below link about Ubuntu 8.04 and Tomcat 5.5 logs
    http://serverfault.com/questions/73626/missing-logs-tomcat-5-5-ubuntu-8-04
    Regards,
    Jari
    Edited by: jarola on Aug 23, 2011 10:48 AM
    I did find this also from /var/log/tomcat5.5/localhost-XXXX-XX-XX.log
    Aug 23, 2011 10:12:40 AM org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Exception sending context initialized event to listener instance of class oracle.dbtools.rt.web.SCListener
    java.security.AccessControlException: access denied (java.util.PropertyPermission apex.home read)
            at java.security.AccessControlContext.checkPermission(AccessControlContext.java:374)
            at java.security.AccessController.checkPermission(AccessController.java:546)
            at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
            at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1285)
            at java.lang.System.getProperty(System.java:650)
            at oracle.dbtools.apex.config.ApexConfigFile.choose(ApexConfigFile.java:53)
            at oracle.dbtools.apex.config.ApexConfig.init(ApexConfig.java:154)
            at oracle.dbtools.rt.web.SCListener.contextInitialized(SCListener.java:33)
            at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3764)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:4216)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
            at org.apache.catalina.core.ContainerBase.access$0(ContainerBase.java:744)
            at org.apache.catalina.core.ContainerBase$PrivilegedAddChild.run(ContainerBase.java:144)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:738)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
            at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:825)
            at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:714)
            at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:490)
            at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
            at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
            at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
            at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
            at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
            at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
            at org.apache.catalina.core.StandardService.start(StandardService.java:448)
            at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
            at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at org.apache.commons.daemon.support.DaemonLoader.start(DaemonLoader.java:177)

  • Is possible change the title with Acrobat Pro 9?

    Hi,
    I'm using Acrobat Pro. 9, and i'm programing with C#.
    My question is: Is possible change de title in a pdf?
    I'm using this two metods and nothing the nothing, the title no change.
    ---- 1 form ------
    PdfStamper pdfStamper = null;
    pdfStamper = new PdfStamper(pdfReader, pdfOutputFile);
    System.Collections.Hashtable info = new system.Collections.Hashtable();
    info["«Title»"] = "";
    pdfStamper.MoreInfo = info;
    --- 2 form -------
    Object ObjTitle = pdDoc.GetInfo("Title");
    titulo = Convert.ToString(ObjTitle);
    ObjTitle = "";
    Regards,
    Toni.

    It is possible with the Acrobat SDK. You seem to be using iTextSharp, which is not an Adobe product, so you would probably get a faster response on forums that deal with iTextSharp.

  • Is it possible change from OS X 10.6.8 to OS X Mavericks directly?

    is it possible change from OS X 10.6.8 to OS X Mavericks directly?

    Yes. You ust meet the system requirements:
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    System requirements for Mavericks ar the same as those for Mountain Lion.

  • How is possible change an administrator user to standar via terminal?

    HI to all!
    How is possible change an administrator user to standar via terminal (unix command)?
    thanks a lot
    Simone

    Thank you Mr Hoffman!
    i have found this command:
    dscl . -append /Groups/admin GroupMembership shortname
    it's working, what do you think about it?

  • OBIEE 10 - Is Possible change the Presentation Variable without GO BUTTON ?

    OBIEE 10:
    Is Possible change the Presentation Variable only changing the Value on the prompt ??
    Or the presentation variable only change if click on "GO BUTTON" ????
    Thanks.

    You need to click the "Go" button. That is what sets the variable.

  • Is it possible change the vendor old addres while reprinting check in F110

    Hi Friends
    Is it possible change the vendor old address while reprinting check in F110?
    My user first he run the APP and he print the check with wrong address, after that he realized, he had taken print with old address.
    Now he want reprint the check after changing the new address in vendor master.
    As per my knowledge, once print the check it will store in REGUH table. if we change address at vendor level it will store at LFA1 Table.
    So Is it possible change the vendor old address while reprinting check in F110.
    Can  any body please  give me suggestion regarding on the same
    Thank You
    Regards
    vamsi

    Hi Vamsi,
    you are right, it is not possinble to get new address with reprint check.
    Along with clearing document system updates vendor details and line item detais in REGUH / REGUP tables. when user get print, system takes data from REGUH and print details.
    In your situation cancel check and reset clear documetn and again execute payment, then system fetch new address.
    Regards,
    Viswa

  • I bought a Creative suite cs6 for students for win but, now I got a mac and would like to change the suite to the mac-version, is that possible?

    I bought a Creative suite 6 for students for win but, now I got a mac and would like to change the suite to the mac-version, is that possible?
    Unfortunately the creative suite cs6 is not available online anymore, so I cannot buy a new one for mac.

    Here's a link to buy one:
    Creative Suite 6

  • My Mac OS X version is 10.6.8. I'd like to download Pages, but my computer cannot support its latest version. As I don't intend to upgrade my computer anytime soon, is it possible to buy an older (and compatible) version of Pages anywhere?

    My Mac OS X version is 10.6.8. I'd like to download Pages, but my computer cannot support its latest version. As I don't intend to upgrade my computer anytime soon, is it possible to buy an older (and compatible) version of Pages anywhere?

    Holvi,
    You will probably be able to find the iWork'09 DVD at Amazon or similar online vendor. Install from the DVD and immediately run Software Update to get to the latest version.
    The Terms of Use here dictate that we test our suggestions before posting, but obviously I'm not going to try this myself, so there's an element of risk, but it seems your only option. It has worked for users in the past, but you never know how OS upgrades can change such things. If you go this route, please post back with your results.
    Good luck,
    Jerry

  • Is it possible to download both 720p and 1080p versions of a movie?

    Is it possible to download both 720p and 1080p versions of a movie purchased from iTunes and keep them both in your iTunes library? I want to watch the 1080p version on my 3rd gen Apple TV and the 720p version on my 4th gen iPod Touch? 
    So far, I have downloaded 720p versions and the only way I can get 1080p is to delete the 720p version I have and then redownload the 1080p from the cloud.  I want to keep the 720p version and also have the 1080p version.

    I ended up getting the proper response from iTunes Support. I forgot to share it with everyone else. Here is how you download both versions of the videos:
    iTunes only lets you download one version of a video at a time. As a work around, I would like you to try the following:
    - Download the 1080p version of the video first
    - Then remove the 1080p version of the video from your iTunes library and save it somewhere else on your computer.
    - Now that you have removed the 1080p version go to the iTunes > Preferences > Store
    - Change the HD version "when downloading HD videos, prefer."  to  720p
    - Go to purchase page, the 720p version should download.

  • Is it possible to use the moving background in versions search as my default background?

    Hi,
    Is it possible to use the moving background in versions search as my default background?
    Thanks!
    lenms

    I just found out that with my approach described above, Keynote doesn't recognize the pasted content as Title and Body elements so that they can be changed only by editing the master slide. Apparently, I was a little rash here.
    What worked for me in the end was to open two new presentations, one with the "Industrial" theme and one with "Chalkboard", and go through all master slides, pasting the text styles from "Industrial" into "Chalkboard". To copy text styles in Keynote, use  cmd+alt+c and to paste it back in, use cmd+alt+v.
    After that, I only had to adjust the style of bulleted lists manually.

Maybe you are looking for

  • Closed lid slow wi-fi/internet

    Got a new Thunderbolt display for my MBP, but major issue ...when I close the lid to my MBP the wireless internet becomes EXTREMELY slow.  I've read through the forums that the wifi antenna is located in the lid and by closing it the device does not

  • Report Printing problem after 11g2 Upgrade

    Hi, We have just upgraded our test platform from 11g1 to 11g2 running on Windows and now when trying to access printed reports we are ORA-03113: end-of-file on communication channel errors, have we missed something with changes to the required ACL's

  • Is PCI-6036E suitable for me to send out analog signal to controll a device?

    Hello  I need to controll and generate an analog signal to control a nanopositioning stage and I would like to know which one will be better using PCI-7344 board through UMI-7764 or using PCI-6036E board through SCC-68 I/O connector. additional quest

  • Log Wait In Shutting Down The database

    Hi Exports, We have a production server. It contain its some of its datafile a cluster disk on windows server 2008. Yesterday Suddenly one of the cluster disk offline due to some network issue. And i found the following error on my alert log. Mon Mar

  • COMPLETE RESET, how to do?

    Hey, I have a MacBook Pro I'm selling to a friend, keeping my iBook for now, but what I wanna know is how to completely wipe out everything and reset my comp., so that when he gets it, its as if he just bought a new computer, just with the operating