Cannot Compile....please help

I am trying to compile the program below. I have set my class path, but this is the first time I have tried to import files. The attached program is in a folder called C:\csci3753
My import files are in subdirectories of C:\jdk1.3.1_02
I get the following error:
C:\csci3753>javac -sourcepath . MultipleSelection.java
error: cannot read: MultipleSelection.java
1 error
I attached the code, I think it is the way I am setting up my compile line...please help.
// Multiple-Selection Lists
// Copying items from one list to another.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public static void main(String[] args)
          MultipleSelection ms = new MultipleSelection();
          ms.addWindowListener(
               new WindowAdapter() {
                    public void windowClosing(WindowEvent e)
                         System.exit(0);
public class MultipleSelection extends JFrame
     private JList colorList, copyList;
     private JButton copy;
     private String colorName[] = {"Black", "Blue", "Cyan","Dark Gray","Gray",
     "Green","Light Gray","Magenta","Orange",
                    "Pink","Red","White","Yello","White"};
public MultipleSelection()
          super("Multiple Selection List");
          Container c = getContentPane();
          c.setLayout(new FlowLayout());
          colorList = new JList(colorName);
          colorList.setVisibleRowCount(5);
          colorList.setFixedCellHeight(15);
                    colorList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
          c.add(new JScrollPane(colorList));
          copy = new JButton("Copy >>>");
          copy.addActionListener(
               new ActionListener() {
                    public void actionPerformed(ActionEvent e)
                         copyList.setListData(colorList.getSelectedValues());
          c.add(copy);
          copyList = new JList();
          copyList.setVisibleRowCount(5);
          copyList.setFixedCellWidth(100);
          copyList.setFixedCellHeight(15);
          copyList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
          c.add(new JScrollPane(copyList));
          setSize(300, 120);
          show();

If you are compiling from the same directory as the source file, then you don't need a sourcepath. Just type:
javac MultipleSelection.javaThe import files will be found as long as you have the C:\jdk1.3.1_02\bin directory in your command path.
By the way, you will need to move the 'main' method into the MultipleSelection class to compile correctly.
Hope this helps.
Jeff Hurt

Similar Messages

  • HT1386 my iphone does not sync with itunes on my second authorized computer, please help. i changed the first authorized computer in May 2012 and have been using the second authorized computer since then but it cannot sync - please help!!

    my iphone does not sync with itunes on my second authorized computer, please help. i changed the first authorized computer in May 2012 and have been using the second authorized computer since then but it cannot sync - please help!!

    "I was thinking I would just connect my iPhone and all of my music and other stuff would transfer to the new computer. "
    Not true. The music and pic sync is one way - computer to iphone. The only exception is itunes purchases. Without syncing: File>Transfer Purchases
    You really should transfer everything from the old computer, or your backup copy of your computer. Since you do not have access to the old computer, then use your backup copy of the old computer.
    If for some reason you have failed to maintain a backup copy of your computer ( not good), then you would have to transfer itunes purchased as described earlier. Any other itunes content would be lost.
    You can e-mail photo library pics to yourself, but they will not be of the original quality.
    Before syncing, enter at least one unique contact and calendar entry on the computer. When you first sync, then you should get the option to merge the data.

  • I have bought a film and it is now saying it cannot load, please help!

    I have bought a film and it is now saying it cannot load, please help!

    What's the precise text of the message you're getting when you try to open the movie, please?

  • First "compilation"- please, help

    ok-
    so i'm starting with the latest SDK, on my Windows XP laptop.
    i'm trying to compile my very first, helloworld program. and all i get is the following error:
    "The name specified is not recognized as an internal or external command, operable program or batch file"
    now, i've loaded the SDK into the following directory: c:\j2sdk1.4.0
    and, i see that to correct this problem, i can either permanantly set the path (help??!) or, just type the following in the DOS prompt:
    C:\>j2sdk1.4\bin\javac HelloWorldApp.java
    when i try to compile this, i get:
    "The system cannot find the path specified"
    (is this becuase of that stupid '>' character in the DOS prompt that i can't get rid of?)
    please, help.

    i have done as you suggested, saving the file as "all files", putting it in double quotes, making sure to call it "HelloWorldApp.java"
    and when i try to compile it, i still get the "can't read" error.
    i have cut and pasted my DOS session here-
    can you take a look at it and see what is wrong?(when i select the "HelloWorldApp.java" file, and choose properties, it says it is this kind of document: File for Forte for Java
    (is this my problem?)
    (at the end of this, i have put the text of the HelloWorldApp document)
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\default>cd C:\javatest
    C:\javatest>dir
    Volume in drive C has no label.
    Volume Serial Number is 07D0-0A0D
    Directory of C:\javatest
    04/05/2002 12:23 PM <DIR> .
    04/05/2002 12:23 PM <DIR> ..
    04/05/2002 12:28 PM 291 HelloWorldApp.java
    1 File(s) 291 bytes
    2 Dir(s) 63,762,006,016 bytes free
    C:\javatest>cd C:\
    C:\>J2SDK_Forte\jdk1.4.0\bin\javac HelloWorldApp.java
    error: cannot read: HelloWorldApp.java
    1 error
    C:\>
    HelloWorldApp document:
    * The HelloWorldApp class implements an application that
    * displays "Hello World!" to the standard output.
    public class HelloWorldApp {
    public static void main(String args [] ) {
    // Display "Hello World!"
    System.out.println("Hello World!");

  • Arrays - confusing, wont compile, please help! ?:-)

    Hello everyone,
    I am new to the java forum, and I think its a fantastic idea. I am extremely stuck with my java, I have been workin on the same piece of code for at least 20 hours in total, 8 of which I spent in the last day, and to much of my frustration, the buggery code just wont compile. Im assuming many of you are probably laughing at me by now, lol, its ok, After my inital stress and hair pulling, all I could do was laugh. But I refuse to give up on the code after spending so long, and I have a feeling Im so close, its based around arrays, anyway I'll stop blabbering and post the code I have wrote, and if any of you could solve why it wont compile, it would be greatly appreciated.
    Heres my code:
    import avi.*;
    public class CDCollection
    private String title = "Unknown";
    private String artist = "Unknown";
    private int quan = 0;
    private double price = 0;
    CDCollection(double cdPrice, int cdQuan, String cdTitle, String cdArtist)
    title = cdTitle;
    artist = cdArtist;
    quan = cdQuan;
    price = cdPrice;
    return price;
    public static int findHighest(CDCollection[] cd) {
    int highestSoFar = -1; // lower than any valid
    for (int i = 0; i < cd.length; i++) {
    if (cd.CDCollection() > highestSoFar) {
    highestSoFar = cd[i].CDCollection();
    return highestSoFar;
    // instance method to write out cd details
    public void cdDetails(Window screen)
         screen.write("�"+price+"\t"+quan+"\t"+title+"\t"+artist+"\n");
    class CDMain
    public static void main(String[] args)
         Window screen = new Window ("CDMain", "bold", "black", 14);
    screen.showWindow();
         screen.write("CD List:\n\n");
              CDCollection cd1 = new CDCollection (10.99,11,"All Killer No Filler","Sum 41");
         cd1.cdDetails(screen);
    CDCollection cd2 = new CDCollection (12.99,8,"The best of","Sting");
         cd2.cdDetails(screen);
    Essentially wot Im tryin to do, is create a cd collection program, whereby details of the cd are entered (price, quantity, title and artist) and I would like to return statistical data on the cd collection, such as total number of cds, most expensive and cheapest cds etc. As you can I see I have tried to use arrays to find out the most expensive cd, but it still wont work! Please help, anyone, as Ive exhausted myself on this piece of code, Ive been through books, and I still cant bloody do it. :( lol
    Thanks in advance,
    All the best,
    Larry :-)

    Hi!
    First you never call your method findHighest.
    Second you do not have an array of your CD's. You only have two instances of it.
    Try this:
    CDCollection[] cds = new CDCollection[2];
    CDCollection cd[0] = new CDCollection (10.99,11,"All Killer No Filler","Sum 41");
    cds[0].cdDetails(screen);
    CDCollection cds[1] = new CDCollection (12.99,8,"The best of","Sting");
    cds[1].cdDetails(screen);
    int highest = CDCollection.findHighest(cds);
    And:
    public static int findHighest(CDCollection[] cd) {
    double highestSoFar = -1; // lower than any valid
    for (int i = 0; i < cd.length; i++) {
    if (cd.getPrice() > highestSoFar) {
    highestSoFar = cd[i].getPrice();
    return highestSoFar;
    And in your CDCollection class you need a method:
    public double getPrice()
    return this.price;
    I hope I did no mistake in here but it should work!
    Markus

  • Ipod 2nd generation is stuck on a screen with the image os a usb and an arrow pointing at Itunes. Whenerver I try to connect to Itunes the computer requests me to enter my password onto my ipod but due to the frozen screen I cannot. Please help

    please help, thanks.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I just recently did a reinstall on my mac, i tried to open itunes, but there is an error message that says itunes requires quick time 7.5.5 or later, i have tried to update quicktime, but cannot.  please help :)

    i just recently did a reinstall on my mac, i tried to open itunes, but there is an error message that says itunes requires quick time 7.5.5 or later, i have tried to update quicktime, but cannot.  please help

    Just FYI
    QuickTime 7.7 for Leopard - http://support.apple.com/kb/dl761
    http://support.apple.com/kb/DL27 <-- Quicktime 7.5.5

  • HT1204 Ipod storage full and ipod is now stuck - cannot restart, please help

    My ipod storage is full and the ipod is now stuck - I cannot restart, cannot reset please help

    Maybe:
    Restore loop (being prompted to restore again after a restore successfully completes)
    Troubleshoot your USB connection. If the issue persists, out-of-date or incorrectly configured third-party security software may be causing this issue. Please follow Troubleshooting security software issues. .
    Next try placing in DFU mode and then restoring.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Then try restoring on another computer.
    Last, make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Firm_event  Error In Compilation -Please Help!

    Hi I'm trying to read data from a USB BARCODE SCANNER
    I've written a little sample code... But It refuses to Compile.
    Please If anyone could help me with definitions.
    Thanks !
    #include <sys/types.h>
    #include <stropts.h>
    #include <time.h>
    #include <stdio.h> /* Standard input/output definitions */
    #include <string.h> /* String function definitions */
    #include <stdlib.h>
    #include <unistd.h> /* UNIX standard function definitions */
    #include <fcntl.h> /* File control definitions */
    #include <errno.h> /* Error number definitions */
    #include <termios.h> /* POSIX terminal control definitions */
    #include <sys/vuid_queue.h>
    main( int argc, char *argv[]){
    int fd,rval;
    char c;
    Firm_event fe;
    fd = open("dev/usb/hid3",O_RDWR);
    if (fd < 0 ) {
    exit (1);
    if ((rval = ioctl(fd, I_PUSH,"usbkbm")) < 0 ) {
    exit (1);
    while (read(fd, &fe, sizeof(fe))) {
    printf("\n");
    printf("%d", fe.id);
    printf("%d", fe.value);
    gcc bcode.c
    In file included from bcode.c:12:
    /usr/include/sys/vuid_queue.h:46: parse error before "Firm_event"
    bcode.c: In function `main':
    bcode.c:17: `Firm_event' undeclared (first use in this function)
    bcode.c:17: (Each undeclared identifier is reported only once
    bcode.c:17: for each function it appears in.)
    bcode.c:17: parse error before "fe"
    bcode.c:25: `fe' undeclared (first use in this function)

    Hello.
    You must include the firm events include file before <sys/vuid_queue.h>.
    This file is named something like <sys/vuid_event.h> or <sys/firm_event.h> (I'm not 100% sure):
    #include <sys/vuid_event.h>
    #include <sys/vuid_queue.h>
    I hope this helps.
    Martin R.

  • ITunes Files Lost & Really Cannot Locate, Please Help!

    Hi all
    I have just downloaded the latest iTunes update and the latest IOS sodtware update 8.1 for my iPhone.
    However, I have noticed my iTunes on my laptop has all gone wrong.  The majority of my music has the ' ! ' symbol next to it and the usual 'Cannot Locate File' message.  I have read several forums on here about the dragging of the 'iTunes Library' file to desktop, opening iTunes and then importing a New Playlist but this is only finding the music that I have purchased via the store opposed to the majority of my music that has been installed onto iTunes by copying from CD.
    I am at a loss as to where they have gone or where they would have gone.  Can anyone help?
    Many thanks

    The "missing file" error happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    If another application like Windows Media Player has moved/renamed the files then the chances are that subtle differences in naming strategies will make it hard to restore the media to the precise path that iTunes is expecting. In such cases, as long as the missing files can be found somewhere, you should be able to use my FindTracks script to reconnect them to iTunes. See this post for an explanation of how it works.
    tt2

  • I am trying to edit software sims in Captivate 8 on 3 different machines. On 1 machine I can see all 'failure captions' and on the other 2 I cannot. Please help!

    I can't find any settings for this issue. I am afraid to publish these SIMS for my client in case they cannot see the captions either. (Training SIMs)

    Hello piyushgaur,
    Thank you for the question.  It sounds like you are trying to setup your various email accounts in the Mail application and are looking for the appropriate server settings.  I found an article with some steps that can help.
    Mail will automatically configure the server settings for many common email providers.  Additionally, you can find settings for common email providers using the Mail Setup Assistant:
    Mail can automatically get the email account settings for many email service providers
    Open Mail.
    Choose Add Account from the File menu. If this is the first time you've opened Mail, you will be automatically prompted to add an account.
    Enter your Full Name, email address, and password. See Mac 101: Mail article for more information.
    Usually, your email account can be configured automatically for you. If you use an email account that Mail cannot configure automatically, continue with this article.
    Tip: You can also use the Mail Setup Assistant to check for your email service providers settings. If the Mail Setup Assistant does not have settings for your email service provider, use the "cheat sheet" of questions below when you contact your email service provider.
    If you are not able to find the server settings for your email providers using the Mail Setup Assistant, you can contact your email service provider to obtain the specific settings.  Use the form in the section titled "Email account settings 'cheat sheet'" in the following article to obtain all the necessary information:
    Configuring Mail for your email account
    http://support.apple.com/kb/ht1277
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • CANNOT CONNECT, PLEASE HELP!

    Hi and thanks in advance for any help,
    I have recently upgraded my version of Tiger to 10.4.2, i have been able to connect to the internet from home, however when I returned to university I have found that I am now unable to connect, this is after I set my settings back to my uni's proxy settings.
    I am now recieving the following internet error sysstemwide.
    "POSIX error: cannot allocate memory."
    onece again thanks for any help,
    kind regards,
    Peter.

    Ok, can you tell me what backend webair uses?

  • I am trying to install Google voice plug in..but cannot..please help..!!

    Am installing voice plug in ..for calling google telephone

    I use Google Voice and I don't see any plug-in for GV, what would you gain from it?
    To bring up Google Voice, I have a bookmark on bookmarks toolbar
    : '''name:''' GV
    : '''Location:''' https://www.google.com/voice#contacts/Google+Voice
    : '''Keyword:''' GV:
    : '''Description:''' Google Voice available in US can call US and Canada for free. This bookmark opens your Google Voice input box. Also see
    http://lifehacker.com/5349506/make-free-voip-calls-from-google-voice
    Sorry can't help and can't remove my reply, I can see that computer-to-computer audio/video conversations are possible with the plug-in.
    * [http://www.google.com/chat/voice/ Google]
    * [http://www.google.com/support/chat/bin/answer.py?answer=161993 Installing the voice and video chat plug-in - Google Chat Help]
    * [http://www.google.com/chat/video Google voice and video chat]

  • EBS form cannot enter , please help me

    EBS 11.5.10.2
    Database 10.2.3
    OS - AIX 5.31
    WHEN after clone dev, IT HAPPEN
    My dev instance having one issue
    If i am trying with http:/hostname:port/oa_servlets/AppsLogin
    input user and password
    it is ok
    but i can not Cannot Launch Forms From The Responsibilities Menu
    cgi is some error
    there are some differents phenomenon
    dev:
    java console :
    serverhost=fin.njcb.com.cn
    serverport=9006
    PROD is ok :
    java console :
    serverhost=fin.njcb.com.cn
    serverport=9006
    forms applet version :60827
    loading http:........
    adcfgclone in db and app is ok .
    adstrtal.sh in app is ok
    bug there are some error message in log file ,
    error_log
    [Fri Dec 17 11:31:50 2010] [notice] caught SIGTERM, shutting down
    [Fri Dec 17 11:40:26 2010] [notice] FastCGI: process manager initialized (pid 1720796)
    [Fri Dec 17 11:40:27 2010] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Fri Dec 17 11:42:32 2010] [error] [client 159.156.1.42] client denied by server configuration: /ebs_dev/devcomn/java/java
    [Fri Dec 17 11:42:32 2010] [error] [client 159.156.1.42] client denied by server configuration: /ebs_dev/devcomn/java/java
    [Fri Dec 17 11:42:35 2010] [error] [client 159.156.1.42] client denied by server configuration: /ebs_dev/devcomn/java/java
    [Fri Dec 17 11:42:35 2010] [error] [client 159.156.1.42] client denied by server configuration: /ebs_dev/devcomn/java/java
    access_log
    fin.njcb.com.cn - - [17/Dec/2010:11:40:27 +0800] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=XmlSvcsGrp&port=19060 HTTP/1.1" 200 15
    fin.njcb.com.cn - - [17/Dec/2010:11:40:27 +0800] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=DiscoGroup&port=17060 HTTP/1.1" 200 15
    fin.njcb.com.cn - - [17/Dec/2010:11:40:27 +0800] "GET /oprocmgr-service?cmd=Register&index=0&modName=JServ&grpName=OACoreGroup&port=16060 HTTP/1.1" 200 15
    fin.njcb.com.cn - - [17/Dec/2010:11:40:27 +0800] "GET /oprocmgr-service?cmd=Register&index=1&modName=JServ&grpName=OACoreGroup&port=16061 HTTP/1.1" 200 15
    159.156.1.42 - - [17/Dec/2010:11:41:29 +0800] "GET / HTTP/1.1" 200 2582
    159.156.1.42 - - [17/Dec/2010:11:41:29 +0800] "GET /applist.html HTTP/1.1" 200 1595
    159.156.1.42 - - [17/Dec/2010:11:41:29 +0800] "GET /apptitle.html HTTP/1.1" 200 1008
    159.156.1.42 - - [17/Dec/2010:11:41:29 +0800] "GET /appsmed3.gif HTTP/1.1" 200 1981
    159.156.1.42 - - [17/Dec/2010:11:41:29 +0800] "GET /appdet.html HTTP/1.1" 200 1002
    159.156.1.42 - - [17/Dec/2010:11:41:31 +0800] "GET /aplogon.html HTTP/1.1" 200 1939
    159.156.1.42 - - [17/Dec/2010:11:41:33 +0800] "GET /oa_servlets/AppsLogin HTTP/1.1" 302 339
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/AppsLocalLogin.jsp?requestUrl=APPSHOMEPAGE&cancelUrl=http%3A%2F%2Ffin.njcb.com.cn%3A8006%2Foa_servlets%2Foracle.apps.fnd.sso.AppsLogin HTTP/1.1" 200 6922
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/styles/cache/oracle-desktop-2_2_24-ie-6-windows.css HTTP/1.1" 200 21982
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/jsLibs/Common2_2_24.js HTTP/1.1" 200 88306
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/t.htm HTTP/1.1" 200 28
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/t.gif HTTP/1.1" 200 85
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_MEDIA/fndpbs.gif HTTP/1.1" 200 211
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_MEDIA/FNDSSCORP.gif HTTP/1.1" 200 1435
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/cache/cghes.gif HTTP/1.1" 200 136
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/cache/cghee.gif HTTP/1.1" 200 102
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/cache/zh-cn/bb56lhg.gif HTTP/1.1" 200 741
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_HTML/cabo/images/cache/cghec.gif HTTP/1.1" 200 119
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_MEDIA/nlsus.gif HTTP/1.1" 200 275
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_MEDIA/lang_bullet.gif HTTP/1.1" 200 404
    159.156.1.42 - - [17/Dec/2010:11:41:38 +0800] "GET /OA_MEDIA/nlszhs_a.gif HTTP/1.1" 200 311
    159.156.1.42 - - [17/Dec/2010:11:41:43 +0800] "POST /OA_HTML/fndvald.jsp HTTP/1.1" 302 252
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE HTTP/1.1" 200 19416
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/styles/cache/oracle-desktop-custom-2_2_24-zh_CN_ORACLE9I-ie-6-windows.css HTTP/1.1" 200 26762
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/oajsLibs/oafcore510CU3.js HTTP/1.1" 200 25771
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/images/pbs.gif HTTP/1.1" 200 151
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/images/cache/zhs/bNtfFullListgxG5.gif HTTP/1.1" 200 1318
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/images/tip.gif HTTP/1.1" 200 171
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/images/cache/zhs/bCustomAppsNavLinktzYD.gif HTTP/1.1" 200 1485
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_MEDIA/fwkhp_folder.gif HTTP/1.1" 200 639
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/blank.html HTTP/1.1" 200 98
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/cabo/images/cache/zhs/bCustomLinkc0qb.gif HTTP/1.1" 200 1522
    159.156.1.42 - - [17/Dec/2010:11:42:06 +0800] "GET /OA_HTML/blank.html HTTP/1.1" 200 98
    159.156.1.42 - - [17/Dec/2010:11:42:22 +0800] "GET /OA_MEDIA/fwkhp_formsfunc.gif HTTP/1.1" 200 637
    159.156.1.42 - - [17/Dec/2010:11:42:22 +0800] "GET /OA_MEDIA/fwkhp_sswafunc.gif HTTP/1.1" 200 659
    159.156.1.42 - - [17/Dec/2010:11:42:22 +0800] "GET /OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&akRegionApplicationId=0&navRespId=50257&navRespAppId=101&navSecGrpId=0&transactionid=1638631754&oapc=2&oas=iW6oJjaPtk4hpMuLaGwf7Q.. HTTP/1.1" 200 111099
    159.156.1.42 - - [17/Dec/2010:11:42:27 +0800] "GET /OA_HTML/RF.jsp?function_id=75&resp_id=50257&resp_appl_id=101&security_group_id=0&lang_code=ZHS&oas=JkDbOQL-A8p-agRyUXWXJQ..&formsLink=yes HTTP/1.1" 302 363
    159.156.1.42 - - [17/Dec/2010:11:42:28 +0800] "GET /pls/DEV/fnd_icx_launch.launch?resp_app=SQLGL&resp_key=NJCB_9900_GL_SU&secgrp_key=STANDARD&start_func=FND_FNDRSRUN&other_params= HTTP/1.1" 302 5
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /dev60cgi/f60cgi?&appletmode=nonforms&HTMLpageTitle=&HTMLpreApplet=&code=oracle/apps/fnd/formsClient/FormsLauncher.class&width=400&height=100&archive=/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar,/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar,/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar,/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar,/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar,/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar,/OA_JAVA/oracle/apps/fnd/jar/fndctx.jar,/OA_JAVA/oracle/apps/fnd/jar/fndlist.jar&gp14=jinit_appletcache&gv14=offjinit_appletcache=off&gp2=resp_app&gv2=SQLGL&gp3=resp&gv3=NJCB_9900_GL_SU&gp4=sec_group&gv4=STANDARD&gp5=function&gv5=FND_FNDRSRUN&gp6=other_params&gv6=&gp7=forms_url&gv7=http%3A%2F%2Ffin.njcb.com.cn%3A8006%2Fpls%2FDEV%2Ffnd_icx_launch.runforms%3FICX_TICKET%3D%26resp_app%3DSQLGL%26resp_key%3DNJCB_9900_GL_SU%26secgrp_key%3DSTANDARD%26start_func%3DFND_FNDRSRUN%26other_params%3D&encoding=UTF-8&gp8=error_url&gv8=http%3A%2F%2Ffin.njcb.com.cn%3A8006%2FOA_HTML%2Fjsp%2Ffnd%2Ffnderror.jsp&gp12=port&gv12=6945&gp13=dbc&gv13=dev&gp15=icx_ticket&gv15=h2uV4tNRP5pcr_4IqzLurQ.. HTTP/1.1" 200 42876
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_HTML/txkObjectTag.js HTTP/1.1" 200 1384
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndforms.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndewt.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndswing.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndaol.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndctx.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:29 +0800] "GET /OA_JAVA/oracle/apps/fnd/jar/fndlist.jar HTTP/1.1" 304 -
    159.156.1.42 - - [17/Dec/2010:11:42:32 +0800] "GET /OA_JAVA/java/awt/KeyboardFocusManager.class HTTP/1.1" 403 253
    159.156.1.42 - - [17/Dec/2010:11:42:32 +0800] "GET /OA_JAVA/java/awt/KeyboardFocusManager.class HTTP/1.1" 403 253
    159.156.1.42 - - [17/Dec/2010:11:42:32 +0800] "GET /OA_MEDIA/appslogo_new.gif HTTP/1.1" 200 1890
    159.156.1.42 - - [17/Dec/2010:11:42:34 +0800] "GET /pls/DEV/fnd_icx_launch.runforms?ICX_TICKET=&resp_app=SQLGL&resp_key=NJCB_9900_GL_SU&secgrp_key=STANDARD&start_func=FND_FNDRSRUN&other_params= HTTP/1.1" 302 5
    159.156.1.42 - - [17/Dec/2010:11:42:34 +0800] "GET /OA_JAVA/oracle/apps/media/forms_logo.gif HTTP/1.1" 200 54200
    159.156.1.42 - - [17/Dec/2010:11:42:35 +0800] "GET /dev60cgi/f60cgi?lang=ZHS&env=NLS_LANG='SIMPLIFIED%20CHINESE_AMERICA.UTF8'+FORMS60_USER_DATE_FORMAT='DD-MON-RRRR'+FORMS60_USER_DATETIME_FORMAT='DD-MON-RRRR%20HH24%3AMI%3ASS'+NLS_DATE_LANGUAGE='AMERICAN'+NLS_SORT='BINARY'+NLS_NUMERIC_CHARACTERS='.,'&form_params=+config='dev'+icx_ticket='.QTX76hgPkyU8X41xZ5L2Mw..'+resp='SQLGL%2FNJCB_9900_GL_SU'+secgrp='STANDARD'+start_func='FND_FNDRSRUN'&encoding=UTF-8 HTTP/1.1" 200 43368
    159.156.1.42 - - [17/Dec/2010:11:42:35 +0800] "GET /OA_JAVA/java/awt/event/MouseWheelListener.class HTTP/1.1" 403 257
    159.156.1.42 - - [17/Dec/2010:11:42:35 +0800] "GET /OA_JAVA/java/awt/event/MouseWheelListener.class HTTP/1.1" 403 257
    159.156.1.42 - - [17/Dec/2010:11:42:36 +0800] "GET /OA_JAVA/oracle/forms/registry/Registry.dat HTTP/1.1" 200 4117
    159.156.1.42 - - [17/Dec/2010:11:42:36 +0800] "GET /OA_JAVA/oracle/apps/fnd/formsClient/OracleApplications.dat HTTP/1.1" 200 1170
    access_pls_log
    fin.njcb.com.cn - "" [17/Dec/2010:11:42:28 +0800] "GET /pls/DEV/fnd_icx_launch.launch?resp_app=SQLGL&resp_key=NJCB_9900_GL_SU&secgrp_key=STANDARD&start_func=FND_FNDRSRUN&other_params= HTTP/1.0" 302 0
    fin.njcb.com.cn - "" [17/Dec/2010:11:42:34 +0800] "GET /pls/DEV/fnd_icx_launch.runforms?ICX_TICKET=&resp_app=SQLGL&resp_key=NJCB_9900_GL_SU&secgrp_key=STANDARD&start_func=FND_FNDRSRUN&other_params= HTTP/1.0" 302 0
    error_log_pls
    [Fri Dec 17 11:31:50 2010] [notice] caught SIGTERM, shutting down
    [Fri Dec 17 11:40:27 2010] [notice] FastCGI: process manager initialized (pid 1061034)
    [Fri Dec 17 11:40:28 2010] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations

    Pl confirm that you have followed MOS Doc 230672.1 (Cloning Oracle Applications Release 11i with Rapid Clone) for your clone process. Is your target server also AIX ? Are you using JInitiator or JRE ? Pl enable java console to see if it captures errors for the forms launch
    How To View The Java Console And Enable Tracing For Sun JRE (Native Plug-in)          (Doc ID 452853.1)
    How To Enable The Java Console Jinitiator 1.1.8 and 1.3          (Doc ID 310961.1)
    HTH
    Srini

  • Iphoto rebuilding error. Cannot update please help!!!!!!!

    my iphoto is updating and it says that it has to rebuild. But rebuilding is taking longer than an hour and pretty much shuts down my whole computer! I tried rebuilding again and it froze my computer which then turned black
    HELP!!!

    Old Toad -
    Again, I thank you for helping find my 8,000 photos - that was quite a scare.
    Since you seem so knowlegable about iPhoto Library Manager let me ask this follow-up question.
    It APPEARS my albums are gone (I can live with this) and in the space on the left where my albums would normally appear there is a list of events.  These event folders are all empty.  Should I delete these empty folders?  I have not tried to do so.
    I am simply curious as to whether there are additional tools or steps I can do to further recover things as they previously were?
    BIG Thanks Again,
    Russell

  • Thr_create return value -1, in kdev compiler PLEASE HELP

    ok im rather new at programing up threads, and im trying to do the most basic thing of creating and joing a thread
    the problem is that whenever i run my code, i don't get any return values that are specified in the documentation, specifically '-1'. can anyone tell me what this error is
    the following is the code i use:
    #include<iostream>
    #include<thread.h>
    void* threadB(void*X){
    cout<<"threadB"<<endl;
    int main(){
    thread_t tid;
    void * point;
    int a=thr_create(NULL,NULL,threadB,Point,NULL,&tid);
    cout<<"a "<<a<<endl;
    please post, or email me at [email protected]

    The subject of your message states that you are getting -1 returned from your
    threads calls. In that case, the problem is that you are not linking in the threads
    library. Do "CC { usual options } -mt" or "CC {opts} -lthread".
    The body of your message states that you are not getting return values specified
    in the doc, specifically -1. If that means that you are not getting -1 when you
    expect it then you are probably getting the thread id.
    Why would you expect -1? Because your new thread is not producing any output
    and so you conclude that there must have been an error in creating it, therefore
    you should get a -1. Yet instead of -1, you keep getting some small positive integer.
    Why is that? That is because as soon as you get the thread id back, you print it
    and terminate the program. Terminating main causes all threads in the process to
    terminate including the thread that you just created. The fact that it has not yet
    produced its output is not of interest to the system.
    What to do if this is your problem? Add a "sleep(10);" call after the cout in main.
    It will cause main to pause 10 seconds before terminating, which is more than
    enough time for the other thread to spin up and print its output.
    By the way, when that thread terminates, the program will continue to sit there
    until the sleep is done. Why will the program not terminate when the new thread
    ends the way that main terminated the program when main ended? Because when
    a thread that started its life being something besides main returns from its top-
    level function, it implicitly calls thr_exit (or something like it). When main terminates,
    it calls exit (or something like it).

Maybe you are looking for

  • Help with exporting/finalizing - Error -108 ??

    Hello all, Been reading the different threads regarding issues when exporting/finalizing movies. My iMovie finalization/export seems to be crashing about 50% in the export process. I either get an error -108 which is not further explained or the app

  • Remote.app not being recognized by iTunes

    I had Remote.app working with my computer form my iPhone and iPod touches. But the other day my DSL modem went out, and I had to get a new one. Now Remote.app can not connect to iTunes on my computer. The Wi-fi works fine on my iPhone and iPod touche

  • Formatting External drive for Mac05

    I am trying to format a Western Digital external drive for Mac05 Extended (journaled) in order to transfer photos from my I photo program to free up space on my hard drive, as per suggestions received in this support site. I have downloaded informati

  • Comp recognizes iPod but iTunes doesn't

    I will attach my iPod into the USB port and the copmuter will begin to chargge it. My iTunes, however, will not recognize the iPod tho open up the window. My iTunes will not even open up if I click on it. I've gone through all the steps, but it still

  • Problem with Automated Tasks

    Hi all, At this moment I'm testing a cartridge deployed in OSM7 that is installed in Solaris Spark. The cartridge contains processes that include Automated Tasks with XQuery Sender Automator Internal to send a message to a queue JMS. In some of the A