Java from cmd and Java called from Forms Services

I apologize in advance if this is not place where i did must question.
Anyway this is:
From cmd on win xp If I run java -version I get:
C:\Documents and Settings\Administrator>java -version
java version "1.4.2_06"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)
While i installed JVM 1.6 and this is called from my forms services(OC4J)
What I missing?
Thanks in advance and sorry for my question

*%JAVA_HOME\bin%* isn't the correct way to add the reference to the JAVA_HOME variable. You want *%JAVA_HOME%\bin*, notice the closing % sign comes after the name of the variable you created earlier (*JAVA_HOME*) and that causes its value to be prepended to \bin.
Edited by: nogoodatcoding on May 18, 2009 7:33 PM

Similar Messages

  • Bluetooth and direct call from Outlook 2010 issue

    Hello.
    I connect Nokia 5300 via Bluetooth and can call from Nokia Communication Center. But when i try to call from Outlook, phone begins dialing and immediately shows strange icon "D" and break dialing.
    If i connect via USB - all work without any problems - form Nokia Communication Center and from Outlook also.
    In OS Nokia is shown as Standard Modem via Bluetooth (Microsoft)
    PC Suite 7.1.6
    Windows 7 x64 Ultimate RUS SP1
    Outlook 2010 x64

    Workstations are on a domain
    Also it may appear to be more of a issue with 2000 .pub type of files.  As users can create a 2010 .pub file and it works great fine.  But every time a user opens a 2000 .pub file via outlook and tries to edit and save it requests the
    user to do a save as, vs. save to outlook temp location.

  • Text messages and phone calls from March 2012 to date are missing after activating iphone5

    text messages and phone calls from March 2012 to date are missing after activating iphone5. I backed up my 4 before activating my 5. Can i retrieve them somehow?

    i would not want to bet on nokia ever releasing a patch or update in the software to allow this function on this particular phone.
    if you look at nokia phones over the years, they have added functionality like this across a wide range all at once, take for example timed profiles on symbian phones. these have only just been phased in.
    i do not think it is a development cop out, more along the lines that nokia is a huge company and as such would have a huge effor in market research. if they didnt pick this out through their market researc, why spend the money adding it?
    the comment on annoyance is entirely personal to me, as it is important to you - you may want to consider moving to a symbian (series 60) based handset as these give you a lot of expansion for this sort of need.

  • Hot to Make HTTPS GET and POST calls from ExtendScript

    We are currently porting our ActionScript code to ExtendScript (JavaScript).
    We performed HTTPS GET and POST calls from ActionScript with no problem. I can find no way to make HTTPS calls from ExtendScript. We tried jQuery, but after hours of work we can't get the ExtendScript engine to work with it - even a very, very old version of jQuery.
    What do I do?
    TIA,
    mlavie

    Adobe needs a "Want Answers" button like Quora has because I would press that button on this post.

  • How to remove historical of incoming and outgoing calls from a Z10 without loosing anything else

    Greetings,
    I would like to remove the history of all incoming and outgoing calls from my Z10 without reformatting the device or loosing other history like SMSs incoming and outgoing, or visited web sites etc. I havfe been looking for it in the help, but I have not found it. 
    Regards,
    Jean-Pierre

    Hub, calls, press and hold date at top, then tap delete.
    Phone, settings, call summary, tap icon at bottom middle to reset call timer.
    - Ira

  • 3GS IPhone shuts off from incoming and outgoing calls 2 or 3 times a day

    3GS IPhone shuts off from incoming and outgoing calls 2 or 3 times a day. The phone stays on but I can't call out or receive calls till I turn the phone off and back on.

    I have the same problem with my 2 month old 3GS phone. It will shuts off from incoming and outgoing calls 2 - 3 times every day. I would miss important business calls. And will discover it only when I need to make a call. In this case screen looks normal. I choose contact, go to next screen - call in progress, it also looks normal, but there is no dial tone. Than I would restart the phone, and it will work again, displaying my missing calls, and angry voice messages of my customers, which trying to reach me. Please help us solve this problem (or maybe it is time to exchange my 3GS for a new one?)

  • Conversions between java.util.Date, java.util.Timestamp and java.sql dates

    I am coding a hoilday booking system using JSP to interact with a SQL Server database. On my JSP form which retrieves the information I have a little javascript pop-up date selector which appears to be returning a Timestamp value although the string value is visable in the entry field. Can I pass this to a javabean as a Timestamp, so far I have only passed strings? Also I then have to enter it in the database and so will need to convert it to an sql date type but I dont know which one is best. Previous to using the Timestamp returning calendar I was just entering text and parsing it to a util.Date in the bean and then converting that to an sql.Date for entry in the database. That worked fine but I want to use the pop-up any ideas? Also my bean won't compile if I declare java.util.Timestamp t;(cannot resolve symbol Timestamp !) even though I have imported util.

    First of all, java.util.Timestamp does not exist. You probably need java.sql.Timestamp.
    java.sql.Date and java.sql.Timestamp inherit from java.util.Date. So converting from java.sql.Date or java.sql.Timestamp to java.util.Date is easy, you don't have to do anything.
    To convert a java.util.Date to a java.sql.Timestamp, do something like this:
    import java.sql.Timestamp;
    import java.util.Date;
    Date date = new Date();
    Timestamp ts = new Timestamp(date.getTime());Jesper

  • Java.sql.Date and java.util.Date - class loaded first in the classpath

    I had two jar files which has java.util.Date and java.sql.Date class file. i want to know whether which class is loaded first in the classpath...
    I like to change the order of loading the class at runtime...
    Is there is any way to change the order of loading of class...
    I may have different version of jar files for example xerces,xercesImpl. some of the code uses xerces ,some of the code uses xercesImpl..i had common classes.
    I like to load the class with the same name according to the order i need..
    Can we do all these in Run time ?????

    I had two jar files which has java.util.Date and
    java.sql.Date class file. i want to know whether
    which class is loaded first in the classpath...
    I like to change the order of loading the class at
    runtime...
    Is there is any way to change the order of loading of
    class...
    I may have different version of jar files for example
    xerces,xercesImpl. some of the code uses xerces ,some
    of the code uses xercesImpl..i had common classes.
    I like to load the class with the same name according
    to the order i need..
    Can we do all these in Run time ?????That is meaningless.
    The classes you are referring to are part of the Java API. Third party jars have no impact on that. And you can't change to the order because java.sql.Data is derived from java.util.Date. So the second must load before the first.
    And if you have two jar files with those classes in them (and not classes that use them) then you either should already know how to use them or you should stop trying to do whatever you are doing because it isn't going to work.

  • How get all record from master and matching record from detail

    hi master
    sir i have master detail table
    i have many record in master table but some record in detail table how i get
    all record from master and matching record from detail
    such as
    select m.accid,m.title,d.dr,d.cr from master m, detail d where m.accid=d.accid
    this query not work that get only related record i need all record from master
    please give me idea
    thanking you
    aamir

    hi master
    sir i have master detail table
    i have many record in master table but some record in
    detail table how i get
    all record from master and matching record from
    detail
    such as
    select m.accid,m.title,d.dr,d.cr from master m,
    detail d where m.accid=d.accid
    this query not work that get only related record i
    need all record from master
    please give me idea
    thanking you
    aamir
    select m.accid,m.title,d.dr,d.cr
    from master m, detail d
    where m.accid=d.accid (+)The outer join operator (+) will get you all the details from master and any details from the detail if they exist, but the master details will still be got even if there are not details.
    Note: Oracle 10g now supports ANSI standard outer joins as in:
    select m.accid,m.title,d.dr,d.cr
    from master m LEFT OUTER JOIN detail d on m.accid=d.accid

  • I have some music from CDs and recent purchases from iTunes on my iPhone 4 that are not synced with my iTunes account on my computer.  How can I sync my phone and iTunes on my computer without losing what is on my iPhone?  (original computer was stolen)

    I have some music from CDs and recent purchases from iTunes on my iPhone 4 that I would like to sync with my iTunes account on my computer.  The CDs were on my original laptap also, but it was stolen and I set up the iTunes on my new computer.
    When I try to sync I get a message indicating that the iPhone iTunes will be replaced with the computer iTunes.
    How can I sync and retain both iTunes?

    Music is designed to sync in one way only, and that is from iTunes to the phone. There is the expectation that you would backup the computer to save this data. There are 3rd party solutions to try and recover music from the phone to put back into a blank iTunes library.
    See this user generated tip for help https://discussions.apple.com/docs/DOC-3141

  • Why not Deprecate java.util.Date and java.util.Calendar

    With the introduction of java.time, why did you not flag java.util.Date and java.util.Calendar. These classes have been a bane to every Java developer and should never be used again with the introduction of Java 1.8.

    Adding the @Deprecated annotation would only just provide a warning about an old API and recommendation to the developer(s) to no longer use it. Doing so would not break any existing library out there; in fact quite a number of constructors and methods on the Date class have already been flagged deprecated.
    The new java.time package is far superior to Date/Calendar.

  • Give me description about JAVA Proxy Runtime and JAVA Proxy Server

    Give me description about JAVA Proxy Runtime and JAVA Proxy Server with some examples.

    Hi,
    Java proxy runtime :
    Using the Java proxy runtime you can receive messages or send messages to the Integration Server.
    This will help you
    http://help.sap.com/saphelp_nw04/helpdata/en/64/7e5e3c754e476ee10000000a11405a/frameset.htm
    Java proxy server :
    The connection to the Integration Server by using the Java proxy runtime.
    This will help you
    http://help.sap.com/saphelp_nw04/helpdata/en/87/5305adc23540b8ac7bce08dbe96bd5/frameset.htm
    Regards
    Agasthuri Doss

  • Java Web Start and Java Preferences

    I am having trouble with Java Web Start and Java Preferences. I have tried reinstalling the update with the link http://www.apple.com/downloads/macosx/apple/application_updates/javaformacosx105 update6.html but to no avail. What else can be done ? Moreover the file /System/Library/Frameworks/JavaVM.framework/Versions/A/ seems to be in place, but Java Web Start wont open and Java Preferences can't access cache files. Any ideas about how to resolve this? I have been having issues with Java for a long time and have already done a clean Leopard reinstall and all the Combo updates. Java Web Start and Java Preferences worked correctly for a while after that but seem to have gone haywire again.

    bump

  • Java.util.Map and  java.util.HashMap samples

    Hi.
    Please, I need some code samples of java.util.Map and java.util.HashMap interfaces. I have problems to retreive objects in the map.
    Cheers,
    Cata

    Try the tutorial:
    http://java.sun.com/docs/books/tutorial/collections/index.html

  • Java.util.Date and java.sql.Date

    when i am trying to displaying date in my jsp page errors occurs saying that java.util.date and java.sql.date are matching..
    i have some sql statements which i need to execute in the page.so i cant delete that import sql statement.
    so what is the solution for this.
    i want to display the date as 19th april 2003....in the jsp page.
    thank u

    You should use full names.
    java.util.Date date;
    java.sql.Date sdate;
    ..And it may be a good idea to delete one of the two "import" declaration of packages.

Maybe you are looking for

  • Inserting flash video does not work completelty

    Hello guys , i don't know how to give up with hard things but this matter drived me mad and i have read and tried many things without any result , locally and on the site when i publish it > I am embedding a flv video into dreamweaver but nothing it

  • Component Video Cables vs. Fiber Optic?

    I am looking to purchase a Sony HTS-S360 Home Theater system sometime in the near future and I am looking to hook my 46" Sony Bravia XBR9 up to it.  I am wondering which would be better for such a setup, Component Cables or a Fiber Optic Cable.  I wa

  • Convert rows to single column using t-sql

    Hi All, I have a table with 7 columns, et say..   ID ,PatientName,Date,Time,Room_Num ,Specialized, DoctorName My source date looks like this..   ID      PatientName     Date          Time    Room_Num  Specialized   DoctorName    1         Sam       

  • Error in http call soap run time exception

    Hi All, we are facing an issue whenever we are sending the file using soap protocal. the issue here is. when one user trying to send files he is getting error in http call soap run time exception. when he try to login to other PC then he can able to

  • SAP IDM position based security with user in multiple positions

    Hi, In case of Higher Duties, we have a scenario where a user can have multiple positions with access to the business roles of both the positions. The design is to have one business role assigned to one position so that the user can have all the acce