Where do I put my packages?

Once I have created a package, where do I put it so that it can be imported from a java app anywhere on my PC? In other words, where are packages such as java.lang that everyone has?

Ok, I did a search for jar files on my pc and I found several directories that have them (jbuilder5\jdk1.3\lib,jbuilder5\jdk1.3\jre\lib,jbuilder5\lib,jbuilder\lib\ext). So, from there, I put my searcher.jar file in each of the directories. But, when I try an 'import searcher.jar;' in jbuilder, I get the compiler error 'cannot access directory searcher'. I did reload jbuilder just in case that is when the jars are loaded. I still get the same error.
What is the directory the error is talking about? The package doesn't have to be in a directory inside of the jar, does it? Or, does the jar have to be in a specific directory? Right now, I just have all of files in my package in the jar (no directories).
I also tried to put the jar in a directory that is included in the classpath and still no luck. Any ideas?

Similar Messages

  • Simple "Where do I put it?" question

    Hi there,
    this seems so simple but I can't find any info on it.
    I've downloaded the "lang" package from org.apache.commons because I want to use StringUtils.
    Where do I put files so that Eclipse can 'see' them from any project?
    I am using Windows 7.
    Thanks,
    b.

    I know I can do that - what I want is to make it automatically available for any project.
    With Flex/Flash for example, there is a global classpath type thing, which points to a folder like "C:\Program Files\something\classes".
    I was just wondering is there such a folder in the JDK or Eclipse installation directories where I can put new packages/classes and have them picked up by eclipse automatically?

  • Where do i put external libraries?

    I have some oracle classes that I use for XML generation. Where do I put the jar file so that
    Weblogic can use them? Do I reference it in the CLASSPATH variable, or can I put the jar file in the
    weblogic directory structure?
    Thanks in advance,
    Josh Cimino
    Software Developer
    Mxi Technologies Ltd.
    1430 Blair Place, Suite 800
    Ottawa, ON, Canada
    K1J 9N2
    E: [email protected]
    T: 613.747.4698 ext 479
    F: 613.747.1909
    www.mxi.com
    "From the flight line to the bottom line"
    [att1.html]

    Thanks!
    "Dimitri Rakitine" <[email protected]> wrote in message
    news:[email protected]..
    http://www.onjava.com/pub/a/onjava/2001/06/26/ejb.html
    Josh Cimino <[email protected]> wrote:
    What if I have a session bean that uses external libraries? There is no
    web-inf/lib directory for an EJB.
    "Renaud Waldura" <[email protected]> wrote in message
    news:3bd348b5$[email protected]..
    If your application is packaged correctly it should be in WEB-INF/lib.
    If
    not, well, let's just say it's probably worth your time to package it
    correctly. I know it sounds harsh, but really it's worth it.
    --Renaud
    "Josh Cimino" <[email protected]> wrote in message
    news:3bcaf5f6$[email protected]..
    I have some oracle classes that I use for XML generation. Where do I
    put
    the jar file so that
    Weblogic can use them? Do I reference it in the CLASSPATH variable,
    or
    can
    I put the jar file in the
    weblogic directory structure?
    Thanks in advance,
    Josh Cimino
    Software Developer
    Mxi Technologies Ltd.
    1430 Blair Place, Suite 800
    Ottawa, ON, Canada
    K1J 9N2
    E: [email protected]
    T: 613.747.4698 ext 479
    F: 613.747.1909
    www.mxi.com
    "From the flight line to the bottom line"
    Dimitri

  • For WebLogic 5.1, where should I put my class files for my JavaBeans?

    With JBuilder4, I have built an application with JSP and a few Java Beans (Those JavaBeans are instantiated in those JSP files). There are no EJBs. The package name is called 'onlinetrade'. I have tested the application on JBuilder's web server, it works pretty well.
    Now I am moving this application to WegLogic 5.1. I have encountered a problem with WebLogic 5.1
    and do not know where I should place my JavaBean class files --
    Originally, the JSP files for my application are in package path-- ..onlinetrade\jsp
    and the class files for my beans are in the package path -- ..onlinetrade\jsp\bean\*.class
    Now, with WebLogic 5.1,
    1) I have put my JSP files in
    C:\weblogic\myserver\public_html\onlinetrade\jsp
    2) I have created subdirectory and put my bean class files in
    C:\weblogic\myserver\classfiles\onlinetrade\jsp\bean
    When I started weblogic and the first page - login.jsp page can be up and accessed. But when I login and forward to another JSP page called 'controller.jsp', where a bean is instantiated, I got the following error
    Compilation of 'C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java' failed:
    C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java:210: cannot access jsp_servlet._onlinetrade._jsp.registerBean
    probably occurred due to an error in /onlinetrade/jsp/controller.jsp line 53:
    registerBean registerBeanInstance = new registerBean();
    I know the javac is working, and a java file is created upon the JSP page, but the problem is -- the bean class files cannot be found!!!
    Where should I create the package path and put my bean class file so that my JSP pages can pick them up?
    Any help is greatly appreciated!
    Thanks.
    --Tim

    I have mine in WEB-INF/classes

  • Where does iTunes put iPhone backups in a PC (Windows 7)?

    Where does iTunes put iPhone backups in a PC (Windows 7)?

    ChrisJ4203 wrote:
    Apps are not backed up, app data is. Apps are already located in iTunes and thus do not need to be backed up. See this support document for information about what is backed up via iTunes.
    Are you sure about that, because when I backed up my iPad Mini w/7.0.4 and the newest iTunes, it made a 10gb Backup, which is pretty huge considering I only have a "16" Gb Slate iPad (More Like 13.5 Gb).
    When I restored it after Jailbreaking, it moved ALL of the Apps I had bought back in - A neat trick if the Apps themselves are not part of the Backup package- Because the apps had NOT been backed up into iTunes on that PC.
    iOS 6 did NOT restore my Apps, even though it did restore my folders.
    Message was edited by: XweAp0nX

  • Where should I put WHENEVER SQLERROR CONTINUE clause?

    Hi all,
    this is my situation:
    I have 2 compiled packages and one compiled procedure which uses the 2 packages. I want to start the procedure with sql*plus.
    To do this, I wrote a script and start the script from sql*plus:
    SQL> @start_proc.sqlThe start_proc.sql script looks like this:
    SET SERVEROUTPUT ON
    SET ECHO OFF
    SET TERMOUT OFF
    WHENEVER SQLERROR CONTINUE
    SPOOL /home/scott/proc_out.txt
    BEGIN
      SCHEMA1.TEST_PR;
      COMMIT;
    END;
    SPOOL OFFThe question is, where should i put the statement WHENEVER SQLERROR CONTINUE ?
    In the current position, the procedure does not start at all. If I remove the statement completely, then I get error on the first record and the procedure does not go on with the rest of the records...

    Thanks for your follow-up, Frank.
    The bigger picture (imo, hence the "-ism") is still:
    When it comes down to error-handling, the world suddenly gets very complicated and turns into all shades of grey, for many years.
    (But actually it should be simple: quit when unexpected things happen)
    The Developer has done his/her best, based on inputs
    The DBA has done his/her best, based on inputs
    The Architect/Designer has done his/her best, based on inputs
    The Manager has done his/her best, based on inputs
    The Client/CST has done his/her best, based on being client/CST
    Funny thing is: whenever I mail/call CST asking for additional input, usually things make sense...
    I dare say: when things go wrong, let them go wrong.
    Propagate the message to another human, who probably didn't think of that/expected it to happen.

  • Where do I put a new module?

    I am installing wireless networking on an Asus P5B Deluxe WiFi motherboard.  It uses a realtek 8187L.  I got the linux driver off of the realtek site and built it; now I have a file named r8187.ko.  Where do I put it so I can use it at boot?

    With the ndiswrapper I used the latest Windows XP driver from the RealTek site; it may not be supported, I suppose.  I couldn't find the pci id of this card, it's on an Asus P5B Deluxe WiFi motherboard, and uses a USB connection.  It identifies as the RTL8187L, but nothing more than that that I have seen.  I didn't find it on the ndiswrapper wiki page.
    Here is the lspci output:
    00:00.0 Host bridge: Intel Corporation 82P965/G965 Memory Controller Hub (rev 02)
    00:01.0 PCI bridge: Intel Corporation 82P965/G965 PCI Express Root Port (rev 02)
    00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #4 (rev 02)
    00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #5 (rev 02)
    00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI #2 (rev 02)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 02)
    00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 02)
    00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI #3 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI #1 (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev f2)
    00:1f.0 ISA bridge: Intel Corporation 82801HB/HR (ICH8/R) LPC Interface Controller (rev 02)
    00:1f.2 SATA controller: Intel Corporation 82801HR/HO/HH (ICH8R/DO/DH) 6 port SATA AHCI Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 02)
    02:00.0 Ethernet controller: Marvell Technology Group Ltd. Unknown device 4364 (rev 12)
    03:00.0 IDE interface: JMicron Technologies, Inc. JMicron 20360/20363 AHCI Controller (rev 02)
    03:00.1 IDE interface: JMicron Technologies, Inc. JMicron 20360/20363 AHCI Controller (rev 02)
    04:00.0 VGA compatible controller: nVidia Corporation G70 [GeForce 7600 GS] (rev a1)
    05:00.0 Multimedia video controller: Internext Compression Inc iTVC15 MPEG-2 Encoder (rev 01)
    05:01.0 PCI bridge: Hint Corp HB6 Universal PCI-PCI bridge (non-transparent mode) (rev 11)
    05:03.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link)
    05:04.0 Ethernet controller: Marvell Technology Group Ltd. 88E8001 Gigabit Ethernet Controller (rev 13)
    06:08.0 Multimedia video controller: Internext Compression Inc iTVC16 (CX23416) MPEG-2 Encoder (rev 01)
    06:09.0 Multimedia video controller: Internext Compression Inc iTVC16 (CX23416) MPEG-2 Encoder (rev 01)
    The rest of this may well be a complete waste of time.  In reading the links provided to the native drivers, I'm not finding wpa support mentioned; but I may be wrong.  Anyway, here's what I did with the native drivers............
    I have (again) run into a brick wall while configuring wpa_supplicant under the native driver.  This should be supported, since there is a version included with the driver.  I tried that, gave up on that and downloaded the Arch package and have been playing with it.
    I bring my network up with this script:
    #!/bin/sh
    cd /opt/rtl-modules/ieee80211/
    insmod ieee80211_crypt-rtl.ko
    insmod ieee80211_crypt_wep-rtl.ko
    insmod ieee80211_crypt_tkip-rtl.ko
    insmod ieee80211_crypt_ccmp-rtl.ko
    insmod ieee80211-rtl.ko
    cd ../beta-8187/
    insmod r8187.ko
    cd /
    ifconfig wlan0 up
    iwconfig wlan0 ap 00:13:49:79:BF:2B
    #iwconfig wlan0 ap 00:0D:88:FA:1B:7E
    iwconfig wlan0 essid B88888A
    ifconfig wlan0 192.168.27.8
    cd /
    /etc/rc.d/network restart
    The 2B ap is my open one that I use for testing; when I am trying to use wpa it is commented out and the 7E ap, which uses wpa, is uncommented.
    My wpa_supplicant file is this:
    ctrl_interface=/var/run/wpa_supplicant
    network={
        ssid="B88888A"
        #scan_ssid=1
        psk="aphrasenothererightnow"
            key_mgmt=WPA-PSK
            proto=WPA
            pairwise=TKIP
            group=TKIP
            priority=9
    when I run this using
    wpa_supplicant -D ipw -c /etc/wpa_supplicant.conf -i wlan0 -dddd
    I get:
    ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
    Initializing interface 'wlan0' conf '/etc/wpa_supplicant.conf' driver 'ipw' ctrl_interface 'N/A' bridge 'N/A'
    Configuration file '/etc/wpa_supplicant.conf' -> '/etc/wpa_supplicant.conf'
    Reading configuration file '/etc/wpa_supplicant.conf'
    ctrl_interface='/var/run/wpa_supplicant'
    Line: 5 - start of a new network block
    ssid - hexdump_ascii(len=7):
         42 35 33 35 36 36 41                              B88888A         
    PSK (ASCII passphrase) - hexdump_ascii(len=20): [REMOVED]
    key_mgmt: 0x2
    proto: 0x1
    pairwise: 0x8
    group: 0x8
    priority=9 (0x9)
    PSK (from passphrase) - hexdump(len=32): [REMOVED]
    Priority group 9
       id=0 ssid='B88888A'
    Initializing interface (2) 'wlan0'
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    wpa_driver_ipw_init is called
    SIOCGIWRANGE: WE(compiled)=20 WE(source)=16 enc_capa=0x0
      capabilities: key_mgmt 0x0 enc 0x3
    WEXT: Operstate: linkmode=1, operstate=5
    Own MAC address: 00:15:af:04:32:df
    wpa_driver_ipw_set_wpa: enabled=1
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_countermeasures: enabled=0
    wpa_driver_ipw_set_drop_unencrypted: enabled=1
    Setting scan request: 0 sec 100000 usec
    Added interface wlan0
    Wireless event: cmd=0x8b06 len=8
    State: DISCONNECTED -> SCANNING
    Starting AP scan (broadcast SSID)
    Trying to get current scan results first without requesting a new scan to speed up initial association
    Received 251 bytes of scan results (1 BSSes)
    Scan results: 1
    Selecting BSS from priority group 9
    0: 00:0d:88:fa:1b:7e ssid='B88888A' wpa_ie_len=24 rsn_ie_len=0 caps=0x11
       selected based on WPA IE
    Trying to associate with 00:0d:88:fa:1b:7e (SSID='B88888A' freq=0 MHz)
    Cancelling scan request
    WPA: clearing own WPA/RSN IE
    Automatic auth_alg selection: 0x1
    wpa_driver_ipw_set_auth_alg: auth_alg=0x1
    WPA: using IEEE 802.11i/D3.0
    WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2
    WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02
    WPA: clearing AP RSN IE
    WPA: using GTK TKIP
    WPA: using PTK TKIP
    WPA: using KEY_MGMT WPA-PSK
    WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02
    No keys have been configured - skip key clearing
    wpa_driver_ipw_set_drop_unencrypted: enabled=1
    State: SCANNING -> ASSOCIATING
    WEXT: Operstate: linkmode=-1, operstate=5
    Setting authentication timeout: 10 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - EAP fail=0
    EAPOL: External notification - portControl=Auto
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    Added BSSID 00:0d:88:fa:1b:7e into blacklist
    State: ASSOCIATING -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    Added BSSID 00:00:00:00:00:00 into blacklist
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
    pa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    Wireless event: cmd=0x8b1a len=16
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    BSSID 00:00:00:00:00:00 blacklist count incremented to 2
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    Authentication with 00:00:00:00:00:00 timed out.
    BSSID 00:00:00:00:00:00 blacklist count incremented to 3
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    No keys have been configured - skip key clearing
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    Setting scan request: 0 sec 0 usec
    State: DISCONNECTED -> SCANNING
    Starting AP scan (broadcast SSID)
    Scan timeout - try to get results
    Received 251 bytes of scan results (1 BSSes)
    Scan results: 1
    Selecting BSS from priority group 9
    0: 00:0d:88:fa:1b:7e ssid='B88888A' wpa_ie_len=24 rsn_ie_len=0 caps=0x11
       selected based on WPA IE
    Trying to associate with 00:0d:88:fa:1b:7e (SSID='B88888A' freq=0 MHz)
    Cancelling scan request
    WPA: clearing own WPA/RSN IE
    Automatic auth_alg selection: 0x1
    wpa_driver_ipw_set_auth_alg: auth_alg=0x1
    WPA: using IEEE 802.11i/D3.0
    WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2
    WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02
    WPA: clearing AP RSN IE
    WPA: using GTK TKIP
    WPA: using PTK TKIP
    WPA: using KEY_MGMT WPA-PSK
    WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02
    No keys have been configured - skip key clearing
    wpa_driver_ipw_set_drop_unencrypted: enabled=1
    State: SCANNING -> ASSOCIATING
    WEXT: Operstate: linkmode=-1, operstate=5
    Setting authentication timeout: 10 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: External notification - EAP fail=0
    EAPOL: External notification - portControl=Auto
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    BSSID 00:0d:88:fa:1b:7e blacklist count incremented to 2
    State: ASSOCIATING -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    BSSID 00:00:00:00:00:00 blacklist count incremented to 4
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    Wireless event: cmd=0x8b1a len=16
    Wireless event: cmd=0x8b15 len=20
    Wireless event: new AP: 00:00:00:00:00:00
    BSSID 00:00:00:00:00:00 blacklist count incremented to 5
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    EAPOL: External notification - EAP success=0
    CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
    CTRL-EVENT-TERMINATING - signal 2 received
    Removing interface wlan0
    State: DISCONNECTED -> DISCONNECTED
    WEXT: Operstate: linkmode=-1, operstate=5
    No keys have been configured - skip key clearing
    EAPOL: External notification - portEnabled=0
    EAPOL: External notification - portValid=0
    wpa_driver_ipw_set_wpa: enabled=0
    wpa_driver_ipw_set_drop_unencrypted: enabled=0
    wpa_driver_ipw_set_countermeasures: enabled=0
    No keys have been configured - skip key clearing
    WEXT: Operstate: linkmode=0, operstate=6
    Removed BSSID 00:00:00:00:00:00 from blacklist (clear)
    Removed BSSID 00:0d:88:fa:1b:7e from blacklist (clear)
    Cancelling scan request
    That's about 30 seconds worth of output.  It seems to be finding the ap that is running, but rejects it for some reason.  Any ideas?

  • Where I should put the bean class?

    Hello,
    I am learning JSP. I want to know where I should put the bean class? Which directory should I put the bean class?
    note that I am using Tomcat 4.1
    johnwen
    24-12-2005

    I can't tell if you've got everything you need or not, but what you've shown looks right so far. Let me run down the necessities:
    In your JSP file:
    <%@ page import="aos.*" %>
    <%-- imports all of the classes in the "aos" package --%>
    In your Java file:
    package aos; // tells Java this is a package (you probably have this)
    Then, of course, you put the class file into the directories that you mentioned, ie, $CATALINA_HOME/ROOT/WEB-INF/classes/aos (forgive me if I use Unix-styled slashes; old habit, and shouldn't make any difference.)
    You may need to restart Tomcat. You have to restart it when you add certain directories, although I'm not sure exactly which ones. But it never hurts to just restart it anyway.

  • TS1702 i have an issues everytime i put my apple id and password to face time and imessage he said verifying and he goes back to where u should put ur password and wont check mark the mail and i create a new apple id the same what should i do ?

    i have an issues everytime i put my apple id and password to face time and imessage he said verifying and he goes back to where u should put ur password and wont check mark the mail and i create a new apple id the same what should i do ?

    i have an issues everytime i put my apple id and password to face time and imessage he said verifying and he goes back to where u should put ur password and wont check mark the mail and i create a new apple id the same what should i do ?

  • When I receive appointments by email and accept them they go into the enourage "on my mac" ical calendar which is not synced with mobileme.  How do I change where appointments are put ?

    When I receive appointments by email and accept them they go into the enourage "on my mac" ical calendar which is not synced with mobileme.  How do I change where appointments are put ?
    Or how can I choose where the appointment is put ?
    I use the mobileme sync services so the ical calendars that are synced are those in the "[email protected]" group.
    Please help !
    Nick

    Actually you can't drag the appointment to ano calendar - its says "You can’t make changes to this invitation., Only the organiser can change this event"
    Also if you double click on the received appointment and open the window the only calendars shown that you can select are the 'on my mac" ones, and not the sync'd ones.
    Any ideas welcome !!
    Nick

  • I got a new laptop and I can't sync all my music onto iTunes without iTunes saying it will erase my songs on the phone, how do I fix this to where  I can put all my music on my laptop?

    I got a new laptop and I can't sync all my music onto iTunes without iTunes saying it will erase my songs on the phone, how do I fix this to where  I can put all my music on my laptop?

    If you do not have access to the iTunes Library on your Old computer... or its Backup...
    See these 2 Links...
    Syncing to a New Computer...
    https://discussions.apple.com/docs/DOC-3141
    Recovering your iTunes library from your iPod or iOS device
    https://discussions.apple.com/docs/DOC-3991
    If you do have access... See Here...
    iTunes: How to move your music to a new computer

  • Where do I put a workflow so that all users on the Mac can access?

    Where do I put a workflow so that all users on the Mac can access it from Automator?
    Also. why does the search pattern "users" AND "workflows" return results whitch math "and" (lowercase)? I thought "AND" (in caps) is for boolean searches.

    Hi, Mike.
    1. You wrote: "Where do I put a workflow so that all users on the Mac can access it from Automator?"Either:
    • Macintosh HD > Users > Shared
    • Macintosh HD > Applications (if you're the Admin user).
    All users (unless restricted by Parental Controls) have access to those folders.
    2. You wrote: "Also. why does the search pattern "users" AND "workflows" return results whitch math "and" (lowercase)? I thought "AND" (in caps) is for boolean searches."It's unclear as to what search facility you are referring, and a bit hard to follow given the spelling errors in your question.
    Do you mean Discussions search? If so, have you reviewed the Search Tips? They're also available from the search page, where one can click "Tips" under the Search Terms field.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have-I guess I can auto start the DVD but would prefer a button-how and where would I put this "play all" marker??

    I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have…I guess I can auto start the DVD but would prefer a button…how and where would I put this "play all" marker?? Thanks..

    The start chapter button is a play the whole movie button regardless of how many other markers you have.
    Once a DVD starts playing it continues to the end.
    Chapters marker simply gives the viewer a place to start playback whether it be the start, middle or near the end.
    Al

  • My ipad was in recovery mode and it went back to the home screen and it found my info on itunes to the point where i can put music on it but it still says connect to itunes

    my ipad was in recovery mode and it went back to the home screen and it found my info on itunes to the point where i can put music on it but it still says connect to itunes

    sarahwood wrote:
    .. it said my iPod was in recovery mode and I needed to restore it?
    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    To minimise loss... after the successful Recovery... Restore from the most recent Backup...
    See Restore from Backup here
    http://support.apple.com/kb/ht1766

  • Where do I put the "autoplay" code in my photo gallery?

    I have a photo gallery on http://victorylcms.org/photos.html. I'm trying to add "autoplay" to it.
    I got the gallery from http://galleria.aino.se/ and here is what it says to add http://galleria.aino.se/docs/1.2/options/autoplay/, but I can't seem to figure out where exactly to put it in my code to make it work properly. Thanks for any help!
    autoplay
    type: Boolean or Number
    default: false
    If true, this will start playing the slideshow with 5 seconds interval (default). If you set this to any number, f.ex 4000, it will start playing with that interval (in milliseconds)
    Example:
    $("#gallery").galleria({
        autoplay: 7000 // will move forward every 7 seconds

    I got the gallery from http://galleria.aino.se/
    There's a support forum for that gallery
    http://getsatisfaction.com/galleria/
    here is what it says to add http://galleria.aino.se/docs/1.2/options/autoplay/, but I can't seem to figure out where exactly to put it in my code to make it work properly. Thanks for any help!
    autoplay
    type: Boolean or Number
    default: false
    If true, this will start playing the slideshow with 5 seconds interval (default). If you set this to any number, f.ex 4000, it will start playing with that interval (in milliseconds)
    Example:
    $("#gallery").galleria({
        autoplay: 7000 // will move forward every 7 seconds
    Look for similar code in your page
    e.g. line 182
    <!--begin init code for the galleria pics slideshow-->
    <script>
    $('#gallery').galleria({
      autoplay: 7000 // will move forward every 7 seconds
      width:640,
      height:480
    swfobject.registerObject("FlashID");
    </script>
    <!--end init code for the galleria pics slideshow-->

Maybe you are looking for

  • I had to uninstall PSE 12 can not reinstall it, how do I do it???

    Since I bought the paid version of PSE12 I have had nothing but problems. So folks said uninstall it, of course I was hesitant, since it did not seem to work well when my IT guy installed it. Si I did today, have a disc and the # and it almost is fin

  • On the IPad-the browser look has changed in IOS8.How do I change it back to the previous IOS?

    On the IPad.... I just downloaded IOS 8 with the current update. The browser look seems to have changed. The Bookmarks Bar stays on and takes up nearly one third of the screen, and the menu is now on the left instead of the right. How do I hide the m

  • Confused about RAM expansion...

    Okay, so I'm not sure what to believe when it comes to memory in an Intel iMac... I have a 24" 2.33 Ghz Intel Core 2 Duo iMac with 1 gb of RAM (2 - 512 mb chips). Is one of those built in (soldered to the motherboard) or not? I keep seeing some peopl

  • Edit pictures and graphics in a pdf document

    I have many pdf documents that need new and updated logos (jpg images).  How do I delete the old logos and replace them with the new one?  I have Office 2010 and Acrob V10.1.4 but cannot find how to edit pictures.

  • My N95 is not working as i accidently d/ced the us...

    My N95 went dead after i accidently disconnected the USB while upgrading the firmware. Now the screen shows a faint nokia logo when i try turning it on. does anyone know how i can get my phone working again?