Java Doesn't See Correct Port Request Coming In On

Oracle Application Server 9.0.4.1
Our HTTP Server is setup to listen on several different ports:
- default virtual host listens on ports 443 and 4443 for https requests
- another virtual host listens on port 80 for http traffic from localhost
When I open up my browser and hit the server on port 4443, it displays my jsp page correctly, HOWEVER, when I print out the url and server port from the request object it:
1) does not include the port number in the url
2) request.serverPort() returns 443, not 4443
Any idea what's going on here?

Of course after posting the message I figured it out.
Source: Any
Destination: 5555,6666,etc
Forward: 80

Similar Messages

  • Firefox doesn't see correct plugin to allow upgrade to 5

    I am running the most recent version of Snow Leopard (10.6.8) and Firefox 3.6.16.  Firefox 4 has been out for a long time, and now Firefox 5 is available.  I usually get update notices from them, but did not get any notice that the newer versions were available. Following their support directions, it said to use their plugin checker, which I did.  Everything has been updated except for the QuickTime plugin, because they say I have 7.6.3 and need to update to 7.6.5.  This seems nuts, because I found the plugin in the Library/Internet plugins, and I have 7.6.6.  In fact their Update button, when I click that, takes me to to 7.6.5, which is for Leopard, not SnowLeopard.
    Should I just download Firefox 5 and see if it runs, since the newer plugin I would think would work with it?  I'm particularly concerned because they are no longer supporting Firefox 3X, and obviously there are new security updates coming along all the time. Does anyone know if it will install?  My concern is that it could disable Firefox completely, and I don't want that to happen.
    All suggestions most graciously appreciated.

    Try the solutions in [[Firefox exe is not a valid win32 application]]

  • Java doesn't work correctly

    With Safari 3.1.1 et FireFox 5.0 on the web often connections using Java do not work , and i get the message :
    UnsatisfiedLinkError: GetProxyConfigURL
    I can't found "ProxyConfigURL" on the web, and after I have reinstalled Java, it's the same message!
    If any of you know what I'm talking about please help.

    Thanks.
    All the error message :
    java.lang.UnsatisfiedLinkError: getProxyConfigURL
    at sun.plugin.net.proxy.MacOSXProxyConfig.getProxyConfigURL(Native Method)
    at sun.plugin.net.proxy.MacOSXProxyConfig.getBrowserProxyInfo(MacOSXProxyConfig.ja va:30)
    at sun.plugin.net.proxy.PluginProxyManager.reset(PluginProxyManager.java:108)
    at sun.plugin.AppletViewer.initEnvironment(AppletViewer.java:574)
    at jep.MyJavaRunTime.initJavaRunTime(MyJavaRunTime.java:37)
    at jep.AppletHandlerFactory.initProperties(AppletHandlerFactory.java:404)

  • Java Doesn't Recognize Something That Exists?

    I'm writing an XML checker for a homework assignment. I'm using a stack which uses a double linked list which uses nodes with a generic data type.
    I ran into a problem after testing the program for the first time. I got a NullPointerException error at the instance where I tried to add a new node to the head. After a little digging I found out that apparently Java doesn't remember that I set the successor of "head" to be "tail". I've already spent 20 minutes going over the code that sets the tail as head's successor but I just can't see what I did wrong.
    Exception in thread "main" java.lang.NullPointerException
         at DLLNode.setNext(DLLNode.java:59)
         at DLLNode.<init>(DLLNode.java:17)
         at DLL.<init>(DLL.java:20)
         at Stack.<init>(Stack.java:11)
         at ParseTokens.<init>(ParseTokens.java:9)
         at Driver.main(Driver.java:16)The program is already too long to post here and broken up into multiple classes, so I will only post the important stuff. Note: Token is just a Record class that keeps two Strings, type and tagName for the xml tag to store.
    DLLNode.java //node with generic datatype T
         private T data;
         private DLLNode<T> successor;
         private DLLNode<T> predecessor;
         public DLLNode(T d, DLLNode<T> next, DLLNode<T> prev) {
              this.setNodeData(d);
              this.setNext(next); //line 17
              this.setPrev(prev);
           public T getNodeData() {
                return this.data;
           public void setNodeData(T newData) {
                this.data = newData;
           public DLLNode<T> getNext() {
                return this.successor;
           public void setNext(DLLNode<T> newNext) {
                this.successor = newNext;
                System.out.println(newNext.toString()); //zeroed in on the problem being here; throws NullPointerException; line 59
           public DLLNode<T> getPrev() {
                return this.predecessor;
           public void setPrev(DLLNode<T> newPrev) {
                this.predecessor = newPrev;
           }DLL.java //manages the DLLNode objects
         private DLLNode<T> head;
         private DLLNode<T> tail;
    //other vars
         public DLL() {
              this.setHead(new DLLNode<T>(null, tail, null)); //problem is probably here; after this, java doesn't see tail as head's successor; //line 20
              this.setTail(new DLLNode<T>(null, null, head));
              this.setSize(0);
           public void setHead(DLLNode<T> value) {
                this.head = value;
           public void setTail(DLLNode<T> value) {
                this.tail = value;
         public boolean addAtHead(T dllData) {
              DLLNode<T> newNode = new DLLNode<T>(dllData, this.head.getNext(), this.head);          
              this.getHead().getNext().setPrev(newNode); //original NullPointerException thrown here at the first instance of this method being used
              this.getHead().setNext(newNode);
              this.setSize(this.getSize() + 1);
              return ((newNode != null) && (newNode.getNext() != null) &&
                        (newNode.getPrev() != null));
         }Stack.java //manages a DLL object as a stack
         private DLL<T> dll;
         public Stack() {
              dll = new DLL<T>(); //line 11
              this.setSize(dll.getSize());
           public void push(T data) {
                dll.addAtHead(data); //original NullPointerException at first instance of push() being used
           }ParseTokens.java //class to actually go through the xml and list what it finds
         private Stack<Token> stack;
         public ParseTokens() {
              stack = new Stack<Token>(); //original error; line 9
         }Driver.java //main
    ParseTokens parse = new ParseTokens();//line 16Thank you for any help.
    Edited by: WhoCares357 on Feb 16, 2010 5:10 PM
    Edited by: WhoCares357 on Feb 16, 2010 5:17 PM

    A user on another forum h(http://preview.tinyurl.com/yjqx4a9) helped me find the problem. I had to create the head and tail first and then point them at each other. Thanks for all the help here.
    @flounder Even though I've already solved my problem I am still confused by what you're saying. The double linked list I created has two placeholders so that I don't have to worry about how many nodes are included. To connect my new node I start at the head and point at whatever is connected to the head (whether it is the tail or another node) to set the successor and predecessor for the new node. I then break the old connections (from the head to the old node after it) and connect them to the new node. I don't see a problem in this, but I am most likely not understanding your concern.
    I don't really want to let this go, because there might be a problem in my code that I don't see right now.
    @AndrewThompson64 I'll use that the next time I have a problem. Thanks.

  • Measurement Computing USB-SSR24 error 42 Digital Port not configured correctly for requested operation

    Using LV 2012 and ULx 2.02 LV driver:
    LV is throwing an error 42 (Digital Port not configured correctly for requested operation) from the ULx write VI but only on PortCH.  All my configurations are correct on the hardware and Instacal tests the ports OK.  I've reinstalled everything and still see the same issue.
    Since PortA is configured identical to PortCH, and PortA is functioning fine, I'm stumped.  This is occuring on two different SSR24 DAQs so I don't think it's the hardware, plus I've already mentioned that the Instacal isn't having a problem with it.
    I've attached my VI I'm using for debug. 
    Jeff
    Attachments:
    test of Wilmington.vi ‏19 KB

    I worked with Measurement Computing and they agreed that there is a bug with certain DI/DO configurations.  There are a possible 16 different DI/DO configurations with the hardware and apparently mine (PortA - DO, PortB- DI, PortCL-DI, and PortCH-DO will throw this error for PortCH.  I'm currently using .net calls to work around the issue until the ULx driver is updated.  I'll post that when I see it.  Attached are the .net VI's that I'm using for simple static IO.
    Attachments:
    USB SSR DOT NET Write Bit.vi ‏20 KB
    USB SSR DOT NET Read Bit.vi ‏21 KB

  • Compose email with formatting, receiver doesn't see it correctly?

    Hi,
    When I compose an email with mail.app and paste images into the text in strategic places, the receiver (using Windows or gmail as email viewer) doesn't see the email formatted correctly. That is, the images are just included as attachments, not appearing in the right place. However, when I look at the mail in "sent items" it looks fine.
    Is there any way to fix this? I actually had a friend say, "it doesn't look right on windows because you're using a Mac" -- is he right? Say it ain't so!
    slegge

    There are no set standards for inline attachments.
    If you look at the actual data stream you'll find that all the message text is sent first, followed by a data block for each attached file.
    Mail puts markers inline to flag where each attachment should be rendered, but that's specific to Mail and other email application may not understand or support that. In these cases the attachments are typically shown at the end, or in some other manner.
    The only real solution is to create HTML-formatted email, which gives you the same control you'd have if you were building a web page, but that's a lot more work, and not actually easy to do in Mail.app.

  • Coldfusion 9 doesn't see java servlets annotated by WebServlet annotation.

    Hi.
    I'm trying to run java servlet application on coldfusion 9 running on top of iis 7 server.
    Also i'm using java 1.7.
    Coldfusion seems doesn't see servlets annotated by WebServlet annotation. I get 404 server response.
    If i add servlets mapping in web.xml everything works fine, except one thing, my application uses WebSockets, which doesn't has xml configuration,
    only annotation @ServerEndpoint.
    So i can't figure out, why my annotations don't work.
    According to coldfusion 9 and java ee, annotations should work and it depends on java version which i use with coldfusion.
    Could you help me please, may be there is a some attribute which i need to set to use annotations like @WebServlet or something like this.
    Thanks.

    ColdFusion 9 "does see" Java Servlets annotated by the WebServlet annotation. A 404 response means in all likelihood that there is a path issue. Verify that your annotation's url-patterns attribute includes the path to the ColdFusion page calling the Servlet.

  • My computer doesn't see my external hard drive

    Hello. I have a Power Mac G4, X10.4.6 and for a long time I've used it successfully with my hard drice - and Icecube 800 hard drive connected through a firewire cable. Now i just formated the intern hard disks and now the computer doesn't see the hard drive. The Icecube 800 doesn't require installation of any drivers and it still works perfectly on other computers. And there's nothing wrong with the ports because I can still connect my iPod. What do i do? Thank you, Sebastian.

    It does. It may not call it "resetting the port", but this method is what resets the port:
    "Tip: FireWire ports are keyed, which means the FireWire cable can only be inserted one way. Check that you are inserting the FireWire cable into the FireWire port in the correct orientation.
    If the issue persists, try these steps:
    1. Shut down the computer.
    2. Disconnect all FireWire devices and all other cables, except the keyboard and mouse cable(s).
    3. Disconnect the computer from the power outlet and wait for 3 to 5 minutes.
    4. Plug the computer back in and turn it on.
    5. Reconnect the FireWire device(s) (one at a time if there is more than one) and test. Test with each FireWire port if you have more than one."
    If it isn't resetting the port properly, I think your port, cable, or controller is damaged.

  • SMC 4.0 doesn't show correct start page after the installation

    Hello,
    after installing SMC 4.0 in a Solaris 10 sparc server it is not possible to get the start page at http://host:6789
    I just get in the browser:
    usage: head [-n #] [-#] [filename...]
    Copyright � 2007 Sun Microsystems, Inc. All rights reserved. U.S. Government Rights - Commercial software. Government users are subject to the Sun Microsystems, Inc. standard license agreement and applicable provisions of the FAR and its supplements. Use is subject to license terms. This distribution may include materials developed by third parties.Portions may be derived from Berkeley BSD systems, licensed from U. of CA. Sun, Sun Microsystems, the Sun logo, Java, Netra, Solaris, Sun Ray and Sun StorEdge are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
    more details:
    # svcs -a|grep web
    disabled        8:30:48 svc:/application/management/webmin:default
    disabled        8:30:49 svc:/system/webconsole:console
    online          8:31:53 svc:/application/management/sunmcwebserver:default
    # cat /etc/release
                           Solaris 10 8/07 s10s_u4wos_12b SPARC
               Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                Assembled 16 August 2007
    root@jumpstart:/ # es-validate
    This script will help you in validation of Sun (TM) Management Center.
    Validation Tool Version         : 4.0
    Host name                       : jumpstart
    Number of CPUs                  : 2
    Platform                        : SUNW,Sun-Fire-V215
    Operating System                : SunOS 5.10
    Memory size                     : 6144 Megabytes
    Swap space                      : 1154008k used, 8156008k available
    JAVA VERSION                    : "1.5.0_12"
    Sun Management Center Production Environment Installation.
    Following layers are installed  : SERVER, AGENT, CONSOLE
    Installation location           : /opt/SUNWsymon
    Sun Management Center Add-Ons and Versions:
    PRODUCT                                         VERSION
    Production Environment                          4.0
    Advanced System Monitoring                      4.0_Build15
    Service Availability Manager                    4.0_Build15
    Sun Fire Entry-Level Midrange S                 3.5-v6
    Netra                                           3.6
    Performance Reporting Manager                   4.0_Build15
    Solaris Container Manager                       4.0_Build15
    Sun Fire Midrange Systems Domai                 3.5-v6
    Dynamic Reconfiguration for Sun                 3.5-v6
    Sun Fire Midrange Systems Platf                 3.5-v6
    System Reliability Manager                      4.0_Build15
    Workgroup Server                                3.6
    Generic X86/X64 Config Reader                   4.0_Build15
    Sun Management Center Patch installation details:
    No Sun Management Center patch is installed.
    Sun Management Center disk-space consumption:
    PRODUCT                         APPROXIMATE DISK SPACE CONSUMED
    Production Environment          : 54452 kB
    Advanced System Monitoring      : 2391 kB
    Service Availability Manager    : 1838 kB
    Sun Fire Entry-Level Midrange S : 1738 kB
    Netra                           : 2005 kB
    Performance Reporting Manager   : 3371 kB
    Solaris Container Manager       : 3688 kB
    Sun Fire Midrange Systems Domai : 1718 kB
    Dynamic Reconfiguration for Sun : 303 kB
    Sun Fire Midrange Systems Platf : 3270 kB
    System Reliability Manager      : 970 kB
    Workgroup Server                : 3707 kB
    Generic X86/X64 Config Reader   : 608 kB
    TOTAL                           : 80059 kB
    Database is located at          : /var/opt/SUNWsymon/db/data/SunMC
    Free space available on this partition is : 2447579 kB
    Following locales are installed :
    Information about upgrade from old versions is not available.
    Sun Management Center Ports:
    SUNMC COMPONENT                  PORT_ID
    agent service                    4800
    trap service                     162
    event service                    163
    topology service                 164
    cfgserver service                165
    cstservice service               167
    metadata service                 168
    platform service                 166
    grouping service                 5600
    rmi service                      2099
    webserver_HTTP service           6789
    webserver_HTTPS service          8443
    Sun Management Center Server Hosts definitions in domain-config.x:
    SUNMC COMPONENT                  SERVER_HOST
    agent service                    jumpstart
    trap service                     jumpstart
    event service                    jumpstart
    topology service                 jumpstart
    cfgserver service                jumpstart
    cstservice service               jumpstart
    metadata service                 jumpstart
    platform service                 jumpstart
    Sun Management Center Processes:
    SUNMC SERVICE                    STATUS
    Java Server                      Running.
    Database services                Running.
    Grouping service                 Running.
    Event-handler service            Running.
    Topology service                 Running.
    Trap-handler service             Running.
    Configuration service            Running.
    CST service                      Not Running.
    Metadata Services                Running.
    Hardware service                 Not Running.
    Web server                       Running.
    Sun Management Center Agent      Running.
    Platform Agent                   Not Running.
    Privilege level for Sun Management Center users :
    CATEGORY                         USERS
    esadm                           : smcadmin
    esdomadm                        : smcadmin
    esops                           : None
    ALL USERS                       : smcadmin
    server is local host
    Web server package is installed correctly.
    Web Server is up and responding.
    Web Server servlet engine is up and responding.
    Validation tool Log file is : /tmp/validation_jumpstart.080613084452.17073What is going on here?
    Any help is really appreciated.
    -- Nick

    @sachint
    I tried your suggestion, but I still have the same situation. Unfortunately.
    I see -
    # svcs -vx
    # svcs -a|grep web
    root@jumpstart:/ # svcs -a|grep web
    disabled       Jun_13   svc:/application/management/webmin:default
    disabled       18:39:06 svc:/system/webconsole:console
    online         18:40:02 svc:/application/management/sunmcwebserver:default
    # cat /var/svc/log/application-management-sunmcwebserver:default.log
    [ Aug  6 18:39:51 Enabled. ]
    [ Aug  6 18:39:51 Executing start method ("/lib/svc/method/es-svc.sh start webserver") ]
    Web server started successfully.
    [ Aug  6 18:40:02 Method "start" exited with status 0 ]
    # svcs -p application/management/sunmcwebserver
    STATE          STIME    FMRI
    online         18:40:02 svc:/application/management/sunmcwebserver:default
                   18:39:53    27621 java
    # telnet localhost 6789
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.If I truss the java process, I see something like -
    # truss -edalf -rall -vall -wall -o /tmp/jumpstart.out -p 27621
    # less /tmp/jumpstart.out
    27621/28:        9.9421 write(7, 0xB02FCEA0, 498)                       = 498
    27621/28:          2 0 0 8 - 0 8 - 0 6   1 8 : 5 3 : 3 1   H t t p P r o c e s s o
    27621/28:          r [ 6 7 8 9 ] [ 3 ]   p r o c e s s . p a r s e\n j a v a . i o
    27621/28:          . I O E x c e p t i o n :   C o u l d n ' t   r e a d   l i n e
    27621/28:         \n\t a t   o r g . a p a c h e . c a t a l i n a . c o n n e c t
    27621/28:          o r . h t t p . S o c k e t I n p u t S t r e a m . r e a d R e
    27621/28:          q u e s t L i n e ( S o c k e t I n p u t S t r e a m . j a v a
    27621/28:          : 2 3 5 )\n\t a t   o r g . a p a c h e . c a t a l i n a . c o
    27621/28:          n n e c t o r . h t t p . H t t p P r o c e s s o r . p a r s e
    27621/28:          R e q u e s t ( H t t p P r o c e s s o r . j a v a : 7 1 0 )\n
    27621/28:         \t a t   o r g . a p a c h e . c a t a l i n a . c o n n e c t o
    27621/28:          r . h t t p . H t t p P r o c e s s o r . p r o c e s s ( H t t
    27621/28:          p P r o c e s s o r . j a v a : 9 7 4 )\n\t a t   o r g . a p a
    27621/28:          c h e . c a t a l i n a . c o n n e c t o r . h t t p . H t t p
    27621/28:          P r o c e s s o r . r u n ( H t t p P r o c e s s o r . j a v a
    27621/28:          : 1 1 2 5 )\n\t a t   j a v a . l a n g . T h r e a d . r u n (
    27621/28:          T h r e a d . j a v a : 5 9 5 )\n\n
    27621/28:        9.9445 send(18, 0xB02FE768, 159, 0)                    = 159
    27621/28:          H T T P / 1 . 1   4 0 0   B a d   R e q u e s t\r\n C o n t e n
    27621/28:          t - T y p e :   t e x t / h t m l\r\n C o n n e c t i o n :   c
    27621/28:          l o s e\r\n D a t e :   W e d ,   0 6   A u g   2 0 0 8   1 6 :
    27621/28:          5 3 : 3 1   G M T\r\n S e r v e r :   A p a c h e   T o m c a t
    27621/28:          / 4 . 0 . 5   ( H T T P / 1 . 1   C o n n e c t o r )\r\n\r\n
    27621/28:        9.9448 ioctl(18, FIONREAD, 0xB02FF34C)  
    ...I have no idea what is happening here.
    -- Nick
    Edited by: der_niki on Aug 6, 2008 9:56 AM

  • Error  java.lang.Exception: Exception in sending Request :: null ..Kill Me

    i use windows XP and oracle10gR2 ,my database run well ,and when run the EM the error java.lang.Exception: Exception in sending Request :: null ,
    my TZ is: agentTZRegion=Asia/Baghdad ,in emd.properites file or SELECT SESSIONTIMEZONE FROM DUAL;
    SESSIONTIMEZONE
    +03:00
    and the OS TIME ZONE is (GMT +03:00) Baghdad
    and I run the Java Console
    but the error remain ,
    Can anybody solve this Error, Please
    Edited by: sabah on 09/07/2011 06:35 ص

    Hi Sabah,
    You are not the only one having this issue,
    check Oracle 10g R2 Enterprise Manager Web Interface doesn't see the database if it has the solution for you.
    Eric

  • Max 9.2.2 doesn't recongize com ports

    Max 9.2.2 doesn't recongize com ports.
    Dell Precision 360
    Windows XP
    Two different computes, multiple attempts, downloads of software - same result: com ports don't show up.

    Hi Test Engineering Leader,
    It may help to clarify some of the different software components at work just to make sure you have to the ones appropriate for your application. MAX is an explorer that allows access to hardware devices using different drivers. DAQmx is one of the drivers, but it does not typically manage COM serial ports (it looks like DAQmx 8.6.1 does support one device over a serial interface, but this is an odd exception and using the serial port through this driver may be unpredictable). COM serial ports are supported in NI-VISA, which allows generic serial port handling and is a commonly used to build instrument drivers. There are other kinds of device drivers, like the 488.2 for GPIB devices, or NI Motion for cameras. You can check out the different Read-Mes to check out whether your device is support.
    If you are trying to directly access the serial ports on your computer, then you should use NI VISA. If there is a particular device you are trying to communicate with, then it should be listed in the Read Me if the driver can operate it correctly.
    So, just to verify, you have already installed the latest version of NI VISA? If so, then you should be able to open MAX and see an option called Serial & Parallel. If this is not listed, then check the device is probably missing from the OS: trying viewing it in the device manager. If it is missing in the device driver and you know it's there, try installing new hardware.
    - Regards,
    Beutlich

  • New MBP doesn't see HDV Camcorder

    I have a new 17" MBP that doesn't see my Canon HV10 connected via firewire. Neither imovie HD or FC Express HD report seeing the camera. I've read the many articles/discussions here. I am using the correct firewire connection. I've tried the camera in many modes playing many tapes.
    Is there a way to tell if the firewire port sees anything connected? I'm down to trying to figure this out at the most basic level.

    You might get more responses posting your question on the iMovie and/or Final Cut discussion boards.
    http://discussions.apple.com/category.jspa?categoryID=141
    http://discussions.apple.com/forum.jspa?forumID=936

  • Airport utility doesn't see airport extreme

    i bought an Airport Extreme to replace a Linksys router that works but with a weak range.
    I disconnected my Linksys router and plugged the cables into the Airport Extreme as per the instructions (btw, i don’t know why Apple has to use the silly little icons instead of labeling the WAN connection ‘Internet,’ but whatever.) I plugged in the power. The Link light for the connection came on.
    The Airport Extreme status light glowed amber.
    I ran the Airport utility on an iPad. It says it doesn’t see any Airport Extreme.
    The Airport Extreme started flashing amber.
    I read the troubleshooting instructions. I powered down the cable modem. I pushed the reset button on the Airport Extreme. I unplugged everything, plugged it in again. I tried the Airport utility on an iPhone. It said it didn't see any Airport Extreme. I checked the Airport utility on the iPad. Still didn't see anything.
    I plugged my Linksys router back in and everything works.
    Huh?

    Power off the cable modem for 5-10 minutes to allow it to reset. It will not recognize the AirPort until it resets correctly.
    Connect the Ethernet cable from the cable modem to the WAN "O" port on the AirPort
    Please go back to the home screen on the iPad
    Tap Settings (gear icon)
    Tap WiFi
    Just under the heading of Setup a New AirPort Base Station, a listing of AirPort Extreme should appear.
    Does it? If yes,
    Tap on AirPort Extreme to start the setup "wizard" and follow the prompts.

  • Updater doesn't see iPod shuffle

    My iPod Shuffle shows up on the desktop. The amber recharge light is blinking. When iTunes opens, I get the following message: "iTunes has detected a software update for the iPod. Would you like to install it now?" When I click "Okay", the updater opens and I get the following message: "An unexpected error occurred". When I click "okay", the updater now tells me to plug in an iPod to update it. My iPod is plugged in and charging, and is on the desktop. When I quit the updater, my iPod does not appear in the iTunes source list.
    I then quit and reopened iTunes. This time when prompted regarding the software update, I click cancel. iTunes now opens with my iPod listed in the Source list. However, when I go to add songs to the iPod I get the following message: "Some of the songs in the iTunes music library were not copied to the iPod because your iPod software is too old. Go to www.apple.com/ipod to get the latest iPod software update."
    I've reinstalled the updater 3 times now. I got the same results as described above each time. The updater doesn't see the iPod. What is the "unexpected error"? Why doesn't the Updater see the iPod?
    Also also - I ordered, received, and installed an Iogear 4 port USB 2.0 pci card, hoping against hope that that would solve the issue. It didn't. I've been working on this since the day after Christmas. The problem seems so uniquely simple, and yet I've never been more frustrated with an Apple product.
    Why won't the updater recognize my iPod and allow me to install the software? I personally believe that there is some communications glitch between iTunes 6.0.1, OS 10.3.9, and iPod updater. Any word on new versions coming out of the Apple bat cave?
    Thanks for any help.
    a very frustrated... Gee
    Dual 1 GHz PowerPC G4   Mac OS X (10.3.9)  

    Restore your Ipod from a Mac computer not a PC it will normally be reconized then by the Pc if not send it to the store

  • Did an update for my ipad to ios 5 from 3 - now it stopped workig at all - only shows an icon of usb connection to i tunes. Reset didn't help , computer doesn't see an ipad. Befor did an update to i-tunes 10 as it was advised. Please HELP !

    Did an update for my ipad to ios 5 from 3 - now it stopped workig at all - only shows an icon of usb connection to i tunes. Reset didn't help , computer doesn't see an ipad. Befor did an update to i-tunes 10 as it was advised. Please HELP ! Another thing - why it happend ? I think that Apple is totaly responsible for this and where they are ? I even can't send them an e-mail ? What type of company it is ?

    Yes, Apple has caused people to go through massive panic, anxiety and wasted time by not coming out and telling us about this problem. They must know about it. How can we tell them? Now I understand why it took me 50 tries to upgrade to OS5. We all got the same crazy errors that caused us to reinstall iTunes, turn off our firewalls, buy new USB cables and basically waste tons of time and energy, when the solution was very simple. Plug your device into a USB port on your computer.
    After years of using a peripheral USB hub successfully it's no wonder we all started freaking out and thinking it was a major problem. Yes, I'm blowing off some steam, but I've been an Apple fanatic for a long time and I'm not happy about their lack of response to this issue.

Maybe you are looking for