I need help getting information from my jsp into my servlet

i have a list box in my jsp and it is being populated with some beans that were processed in a servlet. here is the code for the list box in my jsp.
<SELECT size="5" name="lstAccounts">
<OPTION value="1" selected><%= AccountNum1 %></OPTION>
<OPTION value="2"><%= AccountNum2 %></OPTION>
</SELECT>
AccountNum1 and AccountNum2 are the name of the beans populating the list box.
on this current jsp, when i click on a submit button i need to send some info, including which option in the list box is selected to a servlet. here is the code i have in my servlet in the doPost() method. what i'm trying to do is pass the choice that was selected from the list box to servlet below.
String strAccountNumber;
strAccountNumber = req.getParameter("lstAccounts");
req.setAttribute("AccountNumber", strAccountNumber);
//then forward it to another jsp
when i load the jsp it shows the correct choice from the lstAccounts list box, but it shows its corresponding value instead of the choice itself. Instead of showing whats actually in the bean AccountNum1 or AccountNum2, it shows either 1 or 2 (the value from the html in my jsp). is there anyway i can put a method on the lstAccounts string in my getParameter() method. something like...
strAccountNumber = req.getParameter("lstAccounts.getSelectedItem()");
i hope this made sense. thanks in advance if anyone decides to respond!

Why not just do this?
<SELECT size="5" name="lstAccounts">
<OPTION value=<%=AccountNum1 %> selected><%= AccountNum1 %></OPTION>
<OPTION value=<%=AccountNum1 %> ><%= AccountNum2 %></OPTION>
</SELECT>

Similar Messages

  • Need help getting contacts from outlook 2010

    I need help getting my contacts from outlook 2010 to icloud and/or my iphone. I have icloud up and logged in on pc. when I go to a contact to import it says there was a problem reading the vcard. any help is welcomed.

    I do have the latest version of DTM and working with OUTLOOK 2000.  I know it is old, but it still does what I need it to. I did try to uninstalland reinstall.  No luck.  The only options listed to sync are yahoo, outlook express, and ASCII inport/export.  Obviously it is not syncing my other data either, but it is my contacts that I am most concerned with at this point.  The calader would be nice too!  Any other suggestions, or is my outlook too old to sync?   

  • NEED HELP GETTING FILES FROM ITUNES ON ONE COMPUTER TO THE OTHER.

    So I was using a PC to backup my iphone 5 to itunes; however, i just bought a macbook pro and it wont let me transfer the files from one computer to the other and i need help!

    Click here and pick the option which best fits your situation.
    (93771)

  • Need help getting songs from itunes to ipod shuffle/ help

    i seem to having problems getting songs from itunes to ipod?
    any one want to hwlp me with this?
    m

    Perhaps if you posted what the problem os we can try to help. And also what steps you have taken to try and fix this mystery problem.
    Patrick

  • How do i retrieve information from the JSP into my SELECT statements?

    I need to retrieve the information that is being entered into JSP page.. So that i can use them to do an SQL statement.. but im not very sure if my codes are correct.. Following are my codes.. Pls help.. thx
    MyJSPPage.jsp
    <jsp:useBean id="user" class="user.User" scope="session"/>
    <form name="loanItem" method ="POST" action="user">
    <input type="hidden" name="userID" value="<jsp:getProperty name="user" property="userID"/>">
         <tr><td align=left height="34"> <b> <font size="4">Member ID:</font>
    </b> </td>
              <td height="34">
              <jsp:getProperty name="user" property="userID"/></td>
         </tr>     
    ==================================================================================
    MyManager.java --> this file is where all my SQL statements are ..
    [l]String itemType = session.getParameter("itemType");[l] (--->> is how i retrieve info from the JSP page?)
              if (itemType.equals("Book"))
                   String sqlQuery1 = "select loanDuration from ItemPolicy where itemType ='" + itemType+ "'";
                   System.out.println(sqlQuery1);
                   ItemPolicy itempolicy = null;
                   try {
                        db = new Database();
                        rs = db.readRequest(sqlQuery1);
                        if (rs != null && rs.next()) {
                             itempolicy = new ItemPolicy();
                             itempolicy.setLoanDuration(Integer.parseInt(rs.getString("loanDuration")));
                        db.close();
                   } catch (SQLException se) {
                                  se.printStackTrace();
                                  throw (new UserException("Unable to retrieve from Database!"));
                             } catch (Exception e) {
                                  e.printStackTrace();
                                  throw (new UserException("Unknow error encountered!"));
                   String dueDate = util.getDueDate(itempolicy.getLoanDuration());
              else if (itemType.equals("Magazine"))
    ==================================================================================
    Thanks in advance...

    you should change to request.getParameter("itemType").
    or just System.out.print the itemType to see it got the value.
    Hope it helps.

  • How get information from radio button into a textfile,

    ok, Here's my code. The point of the system is to write information from the booking form, onto the textfile named "something.txt"
    write code;
    public void write() {
    String fullfile = "something.txt";
    try {
    BufferedWriter out = new BufferedWriter(new FileWriter(fullfile));
    out.write("");
    out.write("HOLIDAY BOOKING SYSTE,");
    out.write("");
    out.write("SECTION 4.0 DESITNATION");
    out.write("");
    out.write("Holiday Destination: " + list.getSelectedValue());
    out.write("Duration of holiday: ");
    out.write("");
    out.write("SECTION 5.0 TRAVEL RESERVATION DETAILS");
    out.write("Airport for depature and return");
    out.write("Depature Date: " + txtDateD.getText());
    out.write("Depature Time: " + txtTimeD.getText());
    out.write("Arrival Date: " + txtDateA.getText());
    out.write("Arrival Time: " + txtDateA.getText());
    out.write("Holiday Destination: " + txtbookingno.getText());
    out.write("Customer Booking Information");
    out.close();
    } catch (IOException f) {
    //end of file writer
    The code below is for the radio buttons, The choice is to either pay for an "Economic" ticket, or a "First Class" ticket. If a customer selects the economic ticket radio button, what line of coding do i add to the write method above, to show "Economic ticket"
    JRadioButton EconomyButton = new JRadioButton(EconomyString);
    EconomyButton.setMnemonic(KeyEvent.VK_C);
    EconomyButton.setActionCommand(EconomyString);
    constraints.gridx=0;
    constraints.gridy=27;
    constraints.insets = new Insets (0,0,0,0);
    EconomyButton.setFont(new Font("palatino linotype", Font.PLAIN,13));
    gridbag.setConstraints(EconomyButton,constraints);
    c.add(EconomyButton);
    JRadioButton FirstClassButton = new JRadioButton(FirstClassString);
    FirstClassButton.setMnemonic(KeyEvent.VK_C);
    FirstClassButton.setActionCommand(FirstClassString);
    constraints.gridx=1;
    constraints.gridy=27;
    constraints.insets = new Insets (0,0,0,0);
    FirstClassButton.setFont(new Font("palatino linotype", Font.PLAIN,13));
    gridbag.setConstraints(FirstClassButton,constraints);
    c.add(FirstClassButton);
    Also i ran into another slight problem, theres a textbox called "Fine" in another form called "page1", how do i call it's value i.e. what line of code do i place for it in the method above? Help,

    Try to use the "[ code][ code]" tags, it makes your code much easier to read! :)
    If you want a method, such as write() to be able to get text from a radio button, such as EconomyButton, make sure to declare it higher in your code and public, so you can use the method:EcononomyButton.getText()Also note, you may find it easier if you rename your variables to lower case, such as "economyButton", and your classes upper case.
    For more information on ways to get information out of a button you've created, check out the javadocs:
    http://www.google.com/search?&q=java+5+jradiobutton
    Note, if you scroll down, you'll see a bunch of "Methods Inherited By" stuff. You can use them too!
    -FBL
    (This is your code, using the code tags)
              /* Write code */
         public void write() {
              String fullfile = "something.txt";
              try {
                   BufferedWriter out = new BufferedWriter(new FileWriter(fullfile));
                   out.write("");
                   out.write("HOLIDAY BOOKING SYSTE,");
                   out.write("");
                   out.write("SECTION 4.0 DESITNATION");
                   out.write("");
                   out.write("Holiday Destination: " + list.getSelectedValue());
                   out.write("Duration of holiday: ");
                   out.write("");
                   out.write("SECTION 5.0 TRAVEL RESERVATION DETAILS");
                   out.write("Airport for depature and return");
                   out.write("Depature Date: " + txtDateD.getText());
                   out.write("Depature Time: " + txtTimeD.getText());
                   out.write("Arrival Date: " + txtDateA.getText());
                   out.write("Arrival Time: " + txtDateA.getText());
                   out.write("Holiday Destination: " + txtbookingno.getText());
                   out.write("Customer Booking Information");
                   out.close();
              catch (IOException f) {
              //end of file writer
                        /* Radio buttons */
         JRadioButton EconomyButton = new JRadioButton(EconomyString);
         EconomyButton.setMnemonic(KeyEvent.VK_C);
         EconomyButton.setActionCommand(EconomyString);
         constraints.gridx=0;
         constraints.gridy=27;
         constraints.insets = new Insets (0,0,0,0);
         EconomyButton.setFont(new Font("palatino linotype", Font.PLAIN,13));
         gridbag.setConstraints(EconomyButton,constraints);
         c.add(EconomyButton);
         JRadioButton FirstClassButton = new JRadioButton(FirstClassString);
         FirstClassButton.setMnemonic(KeyEvent.VK_C);
         FirstClassButton.setActionCommand(FirstClassString);
         constraints.gridx=1;
         constraints.gridy=27;
         constraints.insets = new Insets (0,0,0,0);
         FirstClassButton.setFont(new Font("palatino linotype", Font.PLAIN,13));
         gridbag.setConstraints(FirstClassButton,constraints);
         c.add(FirstClassButton);
         

  • Need help getting information out of array and into text/object files

    Im having alot of trouble with this i have the classes for the array, text reader and writer, and object reader and writer mostly done. I originally had a getInfo method in my object and text classes to input the data needed, but that wasnt how the instructor wanted. So my question is how do i take the infomation in the array in class studentarray and send that information to the text and object classes? I have looked online for an example and cant seem to find one that looks like it would work. I am pretty sure what i need will be put in the class StudentArray
    here is requirements i havent figured out how to implement
    - read student records from a �text� file
    - write student records into a �text� file (new data after sorting)
    - read student records from an �object� file
    - write student records into an �object� file (new data after sorting)
    I have sorting methods below in StudentArray just didnt post them
    public class StudentArray {
    private static Scanner input = new Scanner(System.in);
    private static student sArray[] = new student[5];
    public static void insert() throws NegativeIDException
    for(int i = 0; i < 5; i++)
    System.out.println("Please enter firstname:");
    String Fname = input.next();
    System.out.println("Please enter lastname:");
    String Lname = input.next();
    System.out.println("Please enter id:");
    int Id = 0;
    try
    Id = input.nextInt();
    NegativeIDException nide = new NegativeIDException("No negative number for id.");
    if(Id < 0)
    throw nide;
    scanner.nextLine();
    System.out.println("you must enter a positive number try again");
    catch(InputMismatchException ime)
    System.err.printf("\nException: %s\n", ime);
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    System.out.println("Please enter year admitted:");
    int Admitted = 0;
    try
    Admitted = input.nextInt();
    NegativeIDException nide = new NegativeIDException("No negative number for id.");
    if(Admitted < 0)
    throw nide;
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    catch(InputMismatchException ime)
    System.err.printf("\nException: %s\n", ime);
    scanner.nextLine();
    System.out.println("you must enter an integer try again");
    System.out.println("Please enter Gpa:");
    double Gpa = input.nextDouble();
    int t = 0;
              int q = 0;
              System.out.println("Please select your track");
                   System.out.println("1 for doctoral student");
                   System.out.println("2 for graduate student");
                   System.out.println("3 for major student");
                   System.out.println("4 for minor student");
                   t = input.nextInt();
                   if (t == 1)
                             System.out.println( "Please select your doctoral topic");
                             System.out.println("1 for Video Games");     
                             System.out.println("2 for CPU History");     
                             System.out.println("3 for Other");     
                             int c = input.nextInt();                         
                             String diss = "";
                             if (c == 1)
                                  diss = "Video Games";     
                             else if (c == 2)
                                  diss = "CPU History";
                             else if (c == 3)
                                  diss = "Other";
                             sArray[i] = new CSDoctStudent(Fname, Lname, Id, Admitted, Gpa, diss);
                             q++;                              
                        else if (t == 2)
                        System.out.println( "Please enter the number for your graduate course");
                        System.out.println("1 for Software Engineering");     
                        System.out.println("2 for Theory");     
                        System.out.println("3 for Other");     
                        int b = input.nextInt();
                        String Theory = "";
                        if (b == 1)
                             Theory = "Software Engineering";     
                        else if (b == 2)
                             Theory = "Theory";
                        else if (b == 3)
                             Theory = "Other";
                        sArray[i] = new CsGradStudent(Fname, Lname, Id, Admitted, Gpa, Theory);
                   q++;     
                        else if (t == 3)
                             System.out.println( "Please enter the number for your major course");
                             System.out.println("1 for Hardware");     
                             System.out.println("2 for IS");     
                             System.out.println("3 for Theory");     
                             int m = input.nextInt();
                             String track = "";
                             if (m == 1)
                             track = "Hardware";
                        else if (m == 2)
                             track = "IS";
                        else if (m == 3)
                             track = "Theory";
                             sArray[i] = new CSMajorStudent(Fname, Lname, Id, Admitted, Gpa, track);
                             q++;     
                   else if ( t == 4)
                             System.out.println( "Please enter the number for your minor course");
                             System.out.println("1 for Computer Application");     
                             System.out.println("2 for Multimedia");     
                             System.out.println("3 for Web Technology");
                             int d = input.nextInt();
                             String Hardware = "";
                             if (d == 1)
                                  Hardware = "Computer Application";     
                             else if (d == 2)
                                  Hardware = "Multimedia";
                             else if (d == 3)
                                  Hardware = "Web Technology";
                             sArray[i] = new CSMinorStudent(Fname, Lname, Id, Admitted, Gpa, Hardware);
                             q++;     
                   else;
    sArray= new student(Fname,Lname,Id,Admitted, Gpa);
    //trying to write it to a text file with this
    import java.io.PrintWriter;
    import java.util.Scanner;
    import java.io.File;
    import java.io.FileNotFoundException;
    public class TStream {
    private Scanner input = null;
    private PrintWriter output = null;
    private student [] sArray = new student[5];
    public TStream()
    public void write()
    try
    output = new PrintWriter("tdatabase.txt");
    for(int i = 0; i < 5; i++)
    output.print(sArray[i].getFname() + "\t");
    output.print(sArray[i].getLname() + "\t");
    output.print(sArray[i].getId() + "\t");
    output.print(sArray[i].getAdmitted() + "\t");
    output.print(sArray[i].getGpa() + "\t");
    output.println();
    output.close();
    catch(FileNotFoundException fnfe)
    System.err.printf("\nException: %s\n", fnfe);
    System.out.println("Can not open this file.\n");
    public void read()
    try
    input = new Scanner(new File("tdatabase.txt"));
    for(int i = 0; i < 5; i++)
    String Fname = input.next();
    String Lname = input.next();
    int Id = input.nextInt();
    int Admitted = input.nextInt();
    double Gpa = input.nextDouble();
    sArray[i] = new student(Fname,Lname,Id,Admitted,Gpa);
    input.close();
    catch(FileNotFoundException fnfe)
    System.err.printf("\nException: %s\n", fnfe);
    System.out.println("Can not open this file.\n");

    Use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Need help getting servername from afp volume mount

    Hello I am trying to write a script to take the path of a selected file or folder, put it on the clipboard, and make it a PC friendly link/path to email to pc users in my company. We are sharing files off of 3 servers.
    My problem is not with the scripting, but with the fact that all mounted volumes from these servers show up only from their mountpoint in the Volumes folder, i.e. /Volumes/DeptShare/Inbox/ and the like. In the "Get Info" Window I can see the servername (Server: afp://servername/pathtofile/etc) but I cannot find any clean way to call that from a script, to tie a mountpoint (Volumes/DeptShare) to the server it's on, if the user has volumes from more than one server mounted...
    So my script can't replace "Volumes" with the proper servername.
    Hope Im being clear, happy to elaborate, much obliged for any help.

    Hi Bob, thank you so much for the quick response.
    Unfortunately system_profiler SPNetworkVolumeDataType isn't revealing a server name for me. I think part of the problem is that it is afp; smb does reveal the server name there. Similarly, when I type "mount" in terminal, the afp server/login for the volume is just listed as a long character string starting with afp_ instead of a username@servername like with smb. With the SPNetworkVolumeDataType all I'm seeing re: server info is this: (I think the first part is just bonjour looking at our domain, I actually can't browse any servers through that. But I included it anyways in case)
    Servers:
    Type: autofs
    Mount Point: /Network/Servers
    Mounted From: map -fstab
    Automounted: Yes
    MyShareName:
    Type: afpfs
    Mount Point: /Volumes/MyShareName
    Automounted: No
    Another way I was trying to do this was to try and somehow "ping" a path to filename on each server, to see if the file/path could be checked or return an error and the script could know which server it was on. But I can't figure out the right language to do that either. I can do it like this in terminal:
    \[-a /Volumes/path/file\]
    but not like this:
    \[-a /servername/path/file\]
    or this:
    \[-a afp://servername/path/file\]
    so I still don't have the server name tied to the path.
    The only other thing I can think of is having the script check the mountpoint name against a list of share names on each server, but that's a little heavier than I was hoping this would be. Plus it drives me nuts that the "Get Info" window can see the servername I can't call it easily somewhere!!
    Message was edited by: Mr hotdogz

  • Need help getting pics from Adobe Starter Edition to Photoshop Elements 10!!!

    I had Adobe Photoshop Starter Edition already installed on my computer when I bought it.  I hadn't used it in quite a while because my camera was broken.  I recently got a new camera.  I tried to export my pics to my computer and as soon as it came up my pics immediately went to Adobe Photoshop Starter Edition.  It wants me to put in a registration code which I don't have because it is no longer a working product.  I talked to someone in chat and they said to install Photoshop Elements and I should be able to get them into the new program.  I've installed that and I still can't figure out how to do it when the starter edition won't let me do anything without a registration key!!!!!!!!!!!  I want my pics back!!!  These pics are precious to me.....the sad part is I clicked on the box to NOT erase them from my camera....and it erased them anyways.  Can someone please help???
    Thanks,
    Lisa

    Your pictures are not really in the starter edition program.
    From an adobe employee Mark Dahm:
    "It is a common misconception that Starter Edition 'stores', or copies, your files into it. But the program does not move or copy files at all, rather it scans your system's My Pictures directory, and generates miniature versions of your pictures (called thumbnails) so that you can browse a 'flat' list of thumbnails of your photos, overcoming the inconvenience of having to go into separate folders in Windows Explorer to have to find files.The thumbnails, as well as any tags, and Albums that you create in Starter Edition are all stored in the Photoshop Album catalog file, separate from your pictures, and your pictures remain where you originally copied them to your computer.
    If you use Photoshop Album to subsequently download files from a digital camera or scanner, the default location where the program will create those files would be in the My Pictures>Digital Camera Photos folder. But if you do NOT use Photoshop Album Starter edition to download files from your camera, then you will find that folder empty.
    The thumbnails in the Starter Edition catalog will exist, even if you decide to move or delete the original photos that were added to the program. This will cause files in the Photoshop Album catalog to become 'disconnected' from the original photos. To reconnect the files, you can use the File>Reconnect Missing files command to see if the program can locate the original files in a new location, and once again re-link the catalog thumbnails to the files they once referenced.
    Since Photoshop Album has been discontinued, I recommend that folks find an alternative solution. One alternative that will preserve most of what you've created in Starter Edition is the Photoshop Elements 8 trial. Install that, and it will automatically convert the Photoshop Album catalog to a current format, and the program will not time out, as Starter Edition did. If you want to purchase more Editing power, you can also choose to purchase the full program, but it's not required.
    If you are like many who have come to this forum wondering how you can get to your photos, now that the program has become locked or expired, don't worry; your photos have never been moved by Photoshop Album; they remain wherever you intially put them, on your hard drive. To get to them, you can navigate your file system using Windows Explorer. They are typically in your My Documents>My Pictures folder. Here is a handy How-To that you could refer to to find photos on your system, as well as some other tips for how you can use folders to keep your photos organized: http://www.microsoft.com/windowsxp/using/setup/maintain/filemgmt.mspx
    Hope those tips help!
    -Mark"

  • I need help getting assistance from Adobe Technical Support.  Ideas?

    I feel that I am getting the run around by Adobe technical support and wondered if anyone had any recommendations on how to handle this problem.
    Any recommendations or assistance would be greatly appreciated.  This is very important to me.  In previous upgrades this has been fixed with the update, but Adobe has not added an update to RoboHelp 8.0 yet.  Does anyone know of an update in the works?
    I have repetedly contacted Adobe Technical support with a bug that I have found and also reported a bug on the website where you report bugs. 
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    I continually am told that it is worked on by the "highest level" but each time they try the bug out as if it is not being worked on.  Does anyone have a recommendation about how to get my bug worked on.  I have confirmed that it is in fact a bug and can be replicated on other computers.  Sometimes they say they will help and then put in a ticket that it is my turn to submit information.  Most of the time I just am told I will get a call and do not
    I have posted my problems on an earlier posts and have gotten some work around recommendations but they do not solve my problem.  This is a very used feature that does not work and it is a really cool feature in my online help system.
    http://forums.adobe.com/thread/522651 and http://forums.adobe.com/thread/92958?tstart=0

    LOL, your last reply? Or the last line of your reply? Which says: Please contact me via my site.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Need help getting icons from jar

    I switched to the latest java plugin, 1.4.2 and now I can't get the applet to retrieve the GIF image within its jarfile. The class files and imagery are all located in the same jarfile. If I use the following code:
    ivjJToggleButton20.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/MoveVertex2.gif")));
    The jarfile is downloaded again and the image is retrieved from the downloaded jarfile instead of the jar currently displayed in the browser.
    any help or ideas are greatly appreciated!

    I usually do something like this to load an icon from a JAR:
    java.net.URL iconURL = getClass().getResource("/yourImageFile.gif");
    if (iconURL != null) icon = new javax.swing.ImageIcon(iconURL);
    JButton.setIcon(icon);
    This should work.

  • Need help getting scrollbar from design to code

    First off id like to say I'm VERY NEW to coding I know the basics of CSS and I even less of flash. But im willing to learn anything iv only been doing this for 3 months.
    i have CS5 master colection
    ok Here is my design for the cliant's site
    the part im having trouble with is the gallery on the left.
    i sent the the scrollbar to flash Catalyst CS5. but then i could not find out how to make my custom scrollbar work in dreamweaver so i sent the whole gallery. then i ran in to the problem of
    how do i make the gallery control which embedded youtube video is going to play.
    i would like to just do it with out making the whole gallery a swf file.
    so in the most simplest terms i would like a custom designed scrollbar on the left side of my gallery div
    here is what i have uploaded to my test file on the back end of the quick version of his site http://http://resettheus.com/Test/Big_Gov.html
    plz help even if you could just point me to a tutorial that would be great.
    thank you

    thank you for the help JTANNA let me try to be a little more clear (this is y i never post on these things i never say the right thing)
    this is what i would like the site gallery to look like
    the scrollbar (B) is one of those black papper clips and the gallery (A)is just going to be thumbnails linked to a iframe that will be youtube videos
    so i re worked the CSS code from what i posted earlier to somthing like this (im not on my work comp with the sntax at hand)
    <div class=player_gallery>
         <div class=gallery_header>Video Galler</div>
         <div style="width:24px; height:415px;">   was hoping to put the scrollbar (B) here    </div>
         <div style="width:226px: height:auto;">
                   <a href="http://www.youtube.com/embed/o5gEceNyp0M" target="player">
                   <img src="Images/Markets-Exploitation-or-Empowerment.jpg" width="82px" height="50px"/>
                   <p>Markets Exploitation or Empowerment</p></a>
                        </div>
    something like that. i know that i have things wrong in there but i hope from this post and my last post i can get the answer im looking for
    thanks again

  • Need help getting artwork from iTunes

    New iPod / iTunes user here. After importing my CDs directly into iTunes, I am encountering artwork problems with two CDs that are available in iTunes, yet for some reason I can't use for my imported music.
    I researched enough to figure out that the album tags seem to be the culprit in this situation, and was successful in fixing a few other albums, but the following two I cannot figure out what's wrong:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=41228583&s=143441
    Henryk Gorecki: Symphony #3 by Zinman, Upshaw, and London Sinfonietta
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=27287148&s=143441
    Oliver Messiaen: Eclairs sur l'au-dela by Simon Rattle and Berlin Philharmonica
    With both, I've edited the tags to match exactly (as far as I can tell) with the versions in iTunes, including spelling, diacritic marks, and punctuation, yet I still get the "artwork not found" message.
    I've even tried adding random spacing at the end of the tags, but still nothing. Can anyone help me with this? I was hoping maybe someone who bought these albums off iTunes or got the tags right would be able to let me know if there's some sort of hidden spacing that I'm not catching.
    Thanks for any help!

    well if you're trying to just get the artwork it's easy enough to do by yourself...
    just look up an image in (for example) google search and when you find the one you want as your album artwork just right click and save to a picture file on your comp that you can easily find...
    then go to a song in that album in the "music" tab in itunes and right-click. select "get info" and then go to the last tab called "artwork" and select the "add" box. pick the picture and select "ok"
    then that pic should show up as your album artwork...
    hope this helps

  • A website I need to get information from returns a message stating that I do not have the most recent XML parser, and suggests using IE 5.5 or newer. This, of course, I have no intention of doing. Any suggestions?

    This is supposed to be an animated Help page. However, when Itry to click on it, it gives me the message:
    Your browser does not seem to have the most updated XML parser.
    Please use Microsoft Internet Explorer 5.5 or up for PointingTheWay features.
    System Can Not Proceed any further.

    Unfortunately, it's a member-only page, with member id and password required. I'm trying to contact their IT dept., but without much luck, so far!

  • Need help getting photos from a shared photo stream in iCloud

    I received several invites to several shared photo streams from the same person. Some of them worked fine. Others said "from unknown" and don't show up, even though they are all from the same person. What do I do?

    Welcome to the Apple Community.
    If you delete photos from a shared photo stream they are removed everywhere, however if the other party has already copied the photo to one of their own albums, you can't delete that.

Maybe you are looking for