Generics problem - unchecked and unsafe problems

basically my teacher said it needs to run if she types in "% javac *.java " otherwise i'll get a zero...
so with that said, i've read that to fix the generic problem you can do the -Xlint:unchecked but that wont help me.
and i've also read about raw types being the source of the problem, but now i'm completely stuck as to how to fix it. any suggestions would be greatly appreciated.
here is my source code for the file that is causing this:
import java.io.*;
import java.util.*;
public class OrderedLinkedList<T> implements OrderedListADT<T>
     private int size;
     private DoubleNode<T> current;
     public OrderedLinkedList()
          size = 0;
          current = null;
     public void add (T element)
          boolean notBegin = true;
          size = size + 1;
          if (isEmpty())
               current = new DoubleNode<T>(element);
          while (current.getPrevious() != null)
               current = current.getPrevious();
          Comparable<T> cElement = (Comparable<T>)element;
          while (cElement.compareTo(current.getElement()) > 0)
               if (current.getNext() != null)
                    current = current.getNext();
               else
                    notBegin = false;
          if (notBegin)
               DoubleNode<T> temp = new DoubleNode<T>(element);
               DoubleNode<T> temp2 = current;
               current.setPrevious(temp);
               temp.setNext(current);
               temp.setPrevious(temp2.getPrevious());
               current = temp;
          else
               DoubleNode<T> temp = new DoubleNode<T>(element);
               while (current.getPrevious() != null)
                    current = current.getPrevious();
               temp.setNext(current);
               current.setPrevious(temp);
     public T removeFirst()
          try
               if (isEmpty())
                    throw new EmptyCollectionException("List");
          catch (EmptyCollectionException e)
               System.out.println(e.getMessage());
          while (current.getPrevious() != null)
               current = current.getPrevious();
          DoubleNode<T> temp = current;
          current = temp.getNext();
          size = size - 1;
          return temp.getElement();
     public T removeLast()
          try
               if (isEmpty())
                    throw new EmptyCollectionException("List");
          catch (EmptyCollectionException e)
               System.out.println(e.getMessage());
          while (current.getNext() != null)
               current = current.getNext();
          DoubleNode<T> temp = current;
          current = temp.getPrevious();
          size = size - 1;
          return temp.getElement();
     public T first()
          try
               if (isEmpty())
                    throw new EmptyCollectionException("List");
          catch (EmptyCollectionException e)
               System.out.println(e.getMessage());
          while (current.getPrevious() != null)
               current = current.getPrevious();
          return current.getElement();
     public T last()
          try
               if (isEmpty())
                    throw new EmptyCollectionException("List");
          catch (EmptyCollectionException e)
               System.out.println(e.getMessage());
          while (current.getNext() != null)
               current = current.getNext();
          return current.getElement();
     public int size()
          return size;
     public boolean isEmpty()
          if (size == 0)
               return true;
          else
               return false;
     public String toString()
           return "An ordered linked list.";
}the other file that uses this class:
import java.io.*;
import java.util.StringTokenizer;
public class ListBuilder
     public static void main(String[] args) throws IOException
          String input;
          StringTokenizer st;
          int current;
          OrderedLinkedList<Integer> list = new OrderedLinkedList<Integer>();
          FileReader fr = new FileReader("C://TestData.txt");
          BufferedReader br = new BufferedReader(fr);
          input = br.readLine();
          while (input != null)
               st = new StringTokenizer(input);
               while (st.hasMoreTokens())
                    current = Integer.parseInt(st.nextToken());
                    if (current != -987654321)
                         list.add(current);
                    else
                         try
                              unload(list);
                         catch(EmptyCollectionException f)
                              System.out.println(f.getMessage());
               input = br.readLine();
          System.out.println("Glad That's Over!");
     public static void unload(OrderedLinkedList<Integer> a) throws EmptyCollectionException
          while (!a.isEmpty())
               System.out.println(a.removeFirst());
               if (!a.isEmpty())
                    System.out.println(a.removeLast());
          System.out.println("That's all Folks!\n");
}

i tried @SuppressWarnings("unchecked") and that didnt work. so i ran it and it showed these errors:
Exception in thread "main" java.lang.NullPointerException
at OrderedLinkedList.add(OrderedLinkedList.java:30)
at ListBuilder.main(ListBuilder.java:32)
Press any key to continue...
which would be:
          while (current.getPrevious() != null)and:
                         list.add(current);

Similar Messages

  • I want to ask about iphone that the facetime is not working in UAE is that a problem ? and this problem affect the front camera "hardware"?

    i want to ask about iphone that the facetime is not working in UAE is that a problem ? and this problem affect the front camera "hardware"?

    minaaemile wrote:
    there somting is like not clear so  i think that the blocking of factime is affect the front camera so i want be sure if the front camera of iphone from UAE is like any iphone from another country and have the same quality ??
    The front-facing camera is available for use even without FaceTime.  If you are having issues with your front-facing camera, I suggest troubleshooting the issue:
    Basic Troubleshooting Steps when all else fails
    - Quit the App by opening multi-tasking bar, and swiping the App upward to make it disappear.  (For iOS 6 older, hold down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.)
    - Relaunch the App and try again.
    - Restart the device. http://support.apple.com/kb/ht1430
    - Reset the device. (Same article as above.)
    - Reset All Settings (Settings > General > Reset > Reset All Settings)
    - Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    - Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    - Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.

  • Unchecked and unsafe operations

    Hi All,
    Would you please tell me what are uncheked and unsafe operations that we have in Java.
    Thanks in advance,
    Sham

    They are potential errors. (Most of them are not errors but a few of them might be, so you should never have any warnings when you compile)
    Kaj

  • Generic technology connector and SPML problems

    I'm having some trouble finding docs for my problem. What I'm trying to do is create my own spml web service (employing the new Java 6 JWS technology), which can be used by OIM by means of a generic technology connector . But no matter what I do, I can't seem to make the two communicate. I can't find any documentation explaining how to create a SOAP web service for SPML: what methods should be created, their signature, whether there is any specific WSDL that I should use to generate the Java classes and methods for the web service, etc...
    I actually don't even know whether the new JWS can be used at all. Perhaps I should be using Apache Axis (or Axis2) or something else.
    Thanks.

    This is what I've found in the docs:
    "Each SPML request is sent in a SOAP message. The SOAP header carries authentication information for the request. The actual SPML request data is the SOAP message body. "
    All I'm trying to do is create a SOAP web service (in this case with Java 6, but that's not fundamental) that can intercept that message and grab the SPML request (and then do what I have to do).
    I tried with something like the following code:
    package wsspml;
    import javax.jws.WebService;
    import java.io.IOException;
    import java.util.logging.*;
    @WebService
    public class SPMLServer {
         public String processRequest(String requestData) {
    but it won't work. It's like the exposed SOAP method "processRequest" is invisible. It's not being called. Perhaps the signature is wrong. I don't know what to make of it. I'm trying to understand how to grab that SPML request that's coming from OIM through the custom generic technology connector that I configured.

  • Generic Data Source and InfoPackage Data Selection

    Hello,  I'm trying to extract data from a generic data source (composed of a view joining 4 tables) using the Data Selection Criteria in an infopackage.  Sometimes the selection criteria is ignored and more data is pulled than expected.  The number of selectable items in the generic data source has been reduced (in case this was an issue) and for a short time the infopackaged pulled the expected number of records.  Then another change was made to the generic data source and the problem returned.  In any case, the transported generic data source does not work in the target system either.  I'm not sure what is causing this to happen.  Any ideas???  BW 3.5.
    Regards,
    Sue
    Message was edited by: Sue and Enrique
            Ramesh P

    Hi,
         Some of the datasources will not have  default Infopackages for them.You can create the infopackages according to the requirement.There is no big deal for creating Infopackages.You can go ahead creating them.
    Regards
    Karthik

  • IPod Shuffle 2nd gen and Mac problem/troubleshooting guide

    Ok, warning this is going to be a little long...
    The problem: Brand spanking new out of the box ipod shuffle 2nd gen won't play songs after ipod assistant setup. Flashing green/orange lights. Also will not update or restore (greyed out). Shows up as formatted for Windows. Software and Serial show up as "n/a".
    System specs: Powerbook G4 17inch 1ghz, 1gb RAM, 10.4.9 running iTunes 7.1.1
    Attempted solutions that have NOT worked:
    1) mac retail store visit to genius bar. it restored on mactel machine. worked and played songs. unfortunately resyncing to my library caused ipod to return to problems above immediately.
    2) another mac retail store visit to genius bar, this time with laptop to show them the problem. they told me it was my machine not the shuffle. i explained i am a mac sys admin and that is ridiculous...my machine though a few years old is completely up to date. we then deleted all receipts out of the Library dealing with iTunes and reinstalled iTunes via software update. same problem immediately after the setup assistant. no software version and no choice to update or restore ipod. downloaded the ipod reset utility for mac for 2nd gen shuffle and error message shows "the selected ipod is not supported by this utility". also shuffle icon shows up as generic white ipod. mac genius stumped so they swap out my brand new shuffle for another brand new shuffle.
    3) 2nd shuffle in a week and same problems occur. will not update in iTunes. will not restore in iTunes. will not restore in ipod reset utility. icon shows generic white ipod. i can copy music to it but it will not play, lights flash green and orange.
    4) tried to use disk utility to reformat. erase using MS-DOS, but it says FAT16 instead of FAT32. same problems as above.
    *weird that I can't reformat to FAT32 when selecting the MS-DOS format. I only see FAT16 as a choice. Disk utility should do FAT32 but I can't seem to get it to work on shuffle and i don't have a spare hard drive to test it on. Anyone have any experience reformatting ipods via Disk Utility to windows format? Please share...
    At this point I have access to a mactel book and will attempt to fix it on the newer machine. I will be very upset if it works because there is nothing saying that you need new hardware to use the new shuffle. i also get the usb 1.1 error message but again there is nothing saying you need usb 2.0 for shuffle use.
    if anyone has tried anything different with good results please respond! from my experience this seems to be an issue specifically between older mac ppc machines and the new windows drivers installed on the shuffle. i use windows drives all the time with my mac and there are no problems. however a brand new ipod shuffle 2nd gen out of the box does not seem to like my older machine...even after two reinstalls of itunes! even the reset utility is not working as described....
    any help with this is much appreciated!!!
    Powerbook G4, 1ghz, 1gb RAM, usb 1.1, 17inch Mac OS X (10.4.9)

    Ok here it is, my final post on thoughts on this issue...
    Unfortunately, my guess was correct, there does seem to be a hardware issue related to iTunes 7.1.1 and whether it is on a mactel machine or an older ppc machine.
    I can confirm this because the ipod settings screen on my older PPC powerbook is TOTALLY different than the screen I saw on the newer mactel macbooks, even though the software version says its EXACTLY THE SAME! (iTunes 7.1.1)
    On a mactel macbook, I see the ipod shuffle settings such as "Autofill" etc with the correct icon and software version and serial number.
    On my PPC powerbook, I see a generic white ipod icon (even though the finder shows the correct icon of my 2nd gen shuffle) and the settings tab for the ipod is completely different....the update and restore continued to be grayed out, there is no software version or serial number available as well. This is probably why I am not able to register my ipod shuffle from my machine.
    I did not erase and resync the ipod shuffle to my PPC machine to see if that would allow it to continue working. So far so good. After unmounting, it still plays songs. However, I checked the "manage songs manually" option and added just one more song to the shuffle. I tried to then play that song but it would not play even though it was copied onto the shuffle...I could play it from the ipod via iTunes but not when I was just listening to the shuffle. I confirmed this with the application "PodWorks", the song I copied from my library does NOT show up in the list of songs on my ipod shuffle...however it DOES show up and play in iTunes.
    So I feel pretty stuck right now...
    I can have a working ipod shuffle but NOT from my ipod library. It seems I can only listen to songs off my friends newer machines because for whatever reason, the ipod shuffle DOES NOT WORK with a PPC Powerbook 17inch, 1ghz, 1gb RAM, 10.4.9 running the current latest version of iTunes 7.1.1.
    ***** to be me. Anyone else come to same conclusion?
    If this is real then other users with older macs should not waste their money on the 2nd generation ipod shuffle. Please respond if you have any suggestions or thoughts on this matter.
    Mac OS X (10.4.9)

  • Mail and iPhoto Problems with sending photos.

    Mail and iPhoto Problems with sending photos.
    I have this problem that started a while ago and seems to be getting worse.
    Here are the different scenarios.
    -If I try to share a photo to email within iPhoto, it will insert the image file name in the mail message, but no image icon or opened image. In iPhoto Preferences under General I have chosen to use Email Photos using Mail.
    -If I choose to use iPhoto to send the photo, it will compose the message and the photo is viewable. If I send the message i can view the photo within the email I sent to myself. Nothing happens when I double click on the photo in the Mail message. Nothing happens when i control click on the photo in the mail message. Nothing happens when I try to drag the photo to the desktop from the mail message. When I try to save attachments from the email and choose a place to save it, the save button is grayed out and it cannot be saved. When I check the mail message it says there is an attachemnt but there is no file size listed.
    -If I use the stationary within Mail app I cannot drag a photo into the placeholder, I get a circle with a line through it symbol when I try. It happens if I try to drag a photo from the desktop or from the media browser within Mail app.
    -If I drag the photo to the desktop from iPhoto, I can double click it on the desktop and it will open in Preview.
    -If I then control click on the same photo on the desktop and scroll to share/email, the generic photo icon will be inserted in the mail message. If i double click the photo icon in the mail message  I get a message it can't be opened because it is empty.
    -If I drag that same image to the mail message body the same thing happens.
    -If I send that email to someone they cannot open the image file.
    What I can do:
    - I can drag that same image file on the desktop to my dropbox folder and  it will upload. From there I can go on my iPad and download the photo and send it through email just fine.
    -I can open the same image file on my desktop in Preview, I can copy and paste it into a mail message and the image will be viewable in the mail message by me and by the recipient.
    -I can drag that same image on the desktop to my safari browser window and it will be viewable in the page. i can then copy and paste that image into a mail message and it is viewable in the message.  I can then send that email message to myself and i can control click on the image and get all my options. It also shows as an attachment with the size of the image file in the mail message.
    I can send that message to someone and they can see the photo and open it fine.
    -If I send that same email to me I can see the photo within the mail.  If I then drag that photo to the desktop I cannot use it again to put in an email as the same problem happens again.
    I have tried all scenarios in my user account, another users account and in a guest account. The same happens in all. I am guessing because of this it is not a corrupt preference file, unless all of the preference files are corrupt. The guest user account I added a new email account so it was brand new and still had the problem.
    I am stumped, all and any help is appreciated.

    Another problem that may be related….
    I have Snapz Pro. I used to be able to save the snaps to my desktop or a folder. Now when I take a screenshot and try to save the file to my desktop or a folder on my desktop I get this message  "Files cannot be created in the selected location. You do not have permission to write to the selected location.   Please choose a different location."  I have found that i can only save the file to the clipboard.   I have repaired permissions many times and still I have this problem.

  • Problem selecting and dragging or moving an object with hyperlink activated

    Hei!
    It is impossible to select or move normally an object, for instance a photo, which contains an activated link, and that's very annoying.
    First: Let's say I have that object on the top of the page and I want to put it lower, or maybe cut it and paste it somewhere else. First I need to select it, but as soon as the mouse is on top of it, the mouse over activates and opens a webpage to the designated link.
    Second: before I do anything with it, I need to select the object and the only way to do it is by drawing a selection rectangle, which gives me the problem of needing to avoid surrounding objects which I don't want to select. If I don't have space enough, I have to let them get selected together with the desired object, and then unselect using the command key + mouse click.
    Third: if I want to move it, i can only do it with the arrow keys, because if I use the mouse, I get back to first problem. So it's that, or disabling the hyperlink, move the object normally, and putting the hyperlink on again. None of it very practical.
    If I actually want to cut the object and paste it in another page of the site, after I went through first and second problem, I can cut normally the object, got to the desired page and paste it there. If once there I still need to move the object to place it where I want, I end up in third problem anyways.
    Is there any way to avoid this trouble?
    Thanks

    Thanks Mark, but you answered what I already included within my question. I wrote "So it's that, or disabling the hyperlink, move the object normally, and putting the hyperlink on again"
    With that, to "Uncheck the "Make hyperlinks active" you need to first select the object, and you end up back to the first and second problem I wrote.

  • Copy and Paste Problem in Dreamweaver CS5.5

    Hi All,
    I saw the posts for Dreamweaver CS4 for copy and paste problems. I tried all the suggestions but to no avail.  My copy and paste would not work. Then I found what worked for me...
    I went to Edit --> Keyboard Shortcuts --> and I changed from "Dreamweaver Standard" to "Dreamweaver Mx2004". For the moment, it is working.  I am on XP Professional.
    From the other posts the suggestions were...
    Switch to Classic Mode
    Delete the Configuration file
    Uncheck "Enable related files"
    It was a problem for sure, and hopefully I won't be back for this one  :-)  Good luck

    Hello,
    The problem has been solved by over writing the � font.properties � file in jre/lib/� .
    The changes given as follows:
    # Exclusion Range info.
    # exclusion.dialog.0=0500-20ab,20ad-ffff
    # exclusion.dialoginput.0=0500-20ab,20ad-ffff
    # exclusion.serif.0=0500-20ab,20ad-ffff
    # exclusion.sansserif.0=0500-20ab,20ad-ffff
    # exclusion.monospaced.0=0500-20ab,20ad-ffff
    That is, we comment the lines having Red foreground color.

  • Problem selecting and copying items

    I use my iPad Air to work on groups in the photo sharing site, flickr.  Since installing IOS8 I am having extreme difficulty in selecting and copying awards.  Selection is done by dragging through the html, and then clicking on a blue icon "COPY"  Sometimes the code saves correctly, sometimes it doesn't, sometimes it changes to code previously saved  It is driving me nuts.  Can anyone help.
    I have tried restarting the iPad, but that didn't help.

    Thanks Mark, but you answered what I already included within my question. I wrote "So it's that, or disabling the hyperlink, move the object normally, and putting the hyperlink on again"
    With that, to "Uncheck the "Make hyperlinks active" you need to first select the object, and you end up back to the first and second problem I wrote.

  • JDeveloper 3.1 and JSP problems

    Hello everybody.
    I present myself. I am a French student in computer sciences who makes a training course in a French company. (You will excuse the bad quality of my English)
    I have some difficulties in the use of Oracle JDeveloper tool.
    1st problem:
    I encountered this problem during the creation of a JSP page for a simple Intranet application connected to an Oracle database.
    JDeveloper doesnt want to take into account the fact that one of my tables has two primary (composite) keys;(Each of these two keys is primary key of another table). That results on the one hand in an error during the loading of the default edition form (" JBO-25030: Failed to find or invalidate owning entity ") and in addition by impossibility of consulting the recordings of this table according to one of the two key parameters (selected in RowSetBrowser). Nevertheless, this last aspect works within the Oracle Business Component Browser.
    2nd problem:
    Imagine, for example, the following simplified conceptual diagram:
    Racks ---> Files ---> Sheets (they are tables)
    How on a JSP page, can I display in the easiest way (with a JSNavigatorTab and a RowSetBrowser), the recordings of the table Sheets of a particular File, without to use a selection at the table Racks level.
    (You choose directly, with a ComboBox or a RowSetBrowser, a File to display all the corresponding Sheets, without to choose a Rack before.)
    In fact, I try to have an application as simple and ergonomic as possible.
    I thank all those who will be able to inform me on these obscure points which slow down my project considerably.
    Regards.
    Guillaume Vidal
    null

    Hi,
    * For your 1st problem, try to uncheck the "composite association" checkbox in the association object linking your tables together, should work better.
    * For the second one,
    when you create the application module containing the rack/file and sheet views, add the file view at root level (i.e do not use the view link relationship, which would include it as a detail view for the racks view), then add the sheet view through the file/sheet viewLink.
    This way you'll be able to browse the entire file and sheet list in a basic master/detail view.
    Good luck, Remi
    by Guillaume Vidal:
    Hello everybody.
    I present myself. I am a French student in computer sciences who makes a training course in a French company. (You will excuse the bad quality of my English)
    I have some difficulties in the use of Oracle JDeveloper tool.
    1st problem:
    I encountered this problem during the creation of a JSP page for a simple Intranet application connected to an Oracle database.
    JDeveloper doesnt want to take into account the fact that one of my tables has two primary (composite) keys;(Each of these two keys is primary key of another table). That results on the one hand in an error during the loading of the default edition form (" JBO-25030: Failed to find or invalidate owning entity ") and in addition by impossibility of consulting the recordings of this table according to one of the two key parameters (selected in RowSetBrowser). Nevertheless, this last aspect works within the Oracle Business Component Browser.
    2nd problem:
    Imagine, for example, the following simplified conceptual diagram:
    Racks ---> Files ---> Sheets (they are tables)
    How on a JSP page, can I display in the easiest way (with a JSNavigatorTab and a RowSetBrowser), the recordings of the table Sheets of a particular File, without to use a selection at the table Racks level.
    (You choose directly, with a ComboBox or a RowSetBrowser, a File to display all the corresponding Sheets, without to choose a Rack before.)
    In fact, I try to have an application as simple and ergonomic as possible.
    I thank all those who will be able to inform me on these obscure points which slow down my project considerably.
    Regards.
    Guillaume Vidal
    null

  • Timeline - Cannot Move Tracks and Display Problem

    I've created about a ten-minute timeline that I'd really prefer not to toss out because a lot of work went into creating parts of it and getting the timing right with the music, etc. When I first open the project in Premiere Elements, everything seems okay - my timeline plays with all transitions and I can scroll around in the timeline. However, I appear to have done something where whenever I click and drag to try to move a track, the timeline goes insane. I get a circle with a line through it for a cursor and a blank tooltip window, whether I try to drag the track horizontally or vertically. After that, while the timeline will still play, the timeline itself gets all wonky in its display, almost as if the video isn't refreshing on it. (It's kind of like the timeline has crashed.) I attached a screenshot of what it looks like. Whenever I move my cursor to the edge of the timeline, the timeline scrolls in that direction.
    I'm running Premiere Elements 7 Educational Version on  a Core 2 Duo laptop with 3GB RAM, an Intel 965 graphics chip (latest Intel drivers are installed), and Vista Business 32-bit. The clips are from a standard DV cam (not HD), and there are some PNG format stills and MP3 sounds mixed in there as well. There are three active A/V tracks. I think that's all the relevant information, but ask me if you need more.
    Can anyone tell me what I've done and/or how to fix this?

    Good morning every one!
    The bad news: As expected the problem does still occur. The good news: I was able to track it down to one clip in the timeline.
    To save others time, I will described what I have evaluated quite detailed in the following paragraphs...
    As it seemed to me that deactivating the Windows indexing service made the usage of PrE more stable I thought that maybe file locks would cause the trouble. So I verified this by opening the project in PrE, writing and executing a small Java application that puts an exclusive file lock on one of the files from the project and tried to move the according clip in the timeline. It worked without any problems and the known symptoms did not occur. So we can put aside the file locks.
    Afterwards I tried to reproduce the problem by playing around with the scene that caused problems last week. I tried by moving around the video clips and the problem did not occur. Then I remembered my statement I have made earlier, that the problems seemed to occur as I started to work with titles and music clips -- and bingo: I have three music clips in my "soundtrack" track and one of them seems to cause the whole trouble. After I have clicked on this specific music clip, the problem occurs and it is no longer possible to move anything in the timeline and the strange behaviour regarding the automatic scrolling when the cursor is at the left/right etch is activated.
    It was easily reproducable: Restart PrE, open my project, move a video clip to verify that moving clips works, click on the specific music clip and the problem occurs. I have tried this several times and each time the problem occured. When I clicked on one of my other two music clips everything was fine -- same for the video clips I tried. So in my case it seems to be this single clip.
    OK, what's specific regarding this clip: All my music files are placed on a share on my Windows home server (in contrast to the video footage which is located on the local HD). So I moved the "dangerous" music file to the local HD, changed the path to the file with a text editor directly in the PrE project file (which is a simple XML file) and started up PrE again. I verified that PrE takes the file from the local HD (server was down), but the problem did still occur. So it is not a network issue.
    The next specific thing is, that this music file is the only file in my project which is a .wma-file -- the others are .mp3-files. So I did three things:
    At first I downloaded the project file provided by SQFreak2 in this thread and checked whether he is also using .wma-files. The result: He does not use them.
    As the second thing I again changed my project file in the text editor: I changed the path of the music clip to some other .mp3-file. Afterwards I opened up PrE with that project file, used the playback to verify that the other music file is referenced by the clip instead of the original wma-file and then tried to move the clip -- again the symptoms occured.
    As the last step I created a new project, added the "problematic" wma-file, placed it on the "soundtrack" track and afterwards tried to move it. The result: No problems at all.
    So it neither seems to be a generic problem with wma-files nor does it seem to be a file-specific problem at all.
    Lets summarize the things from above: File locks do not cause any trouble. In my project a single audio clip seems to cause the problem. The problem seems to be caused by the clip and not the file referenced by the clip (no matter whether local or server based, wma or mp3, the problem occurs in every case).
    What I have learned? Well, I am not sure. But in the meanwhile I am quite sure, that it hasn't to do anything with hardware and drivers, but that we are dealing with a bug in PrE that occurs in specific project cirumstances.
    This morning I have got some additional ideas I would like to try to track the problem down (e.g. the problematic clip has a transition for a fade out in the end [when I did this I didn't knew, that a fade out could be easily achieved in the clip's properties] -- I will try to remove this one and look what will happen).
    P.S.: In one of my earlier posts I stated the assumption that the problem occurs as soon as I move the mouse cursor over the vertical scroll bar of the timeline -- but this is definitely not the case.

  • Problem selecting and deselecting photos

    My mind is confused.  Last night I was carefully selecting photos from about 900 in the browse view.  I held down the command key continually and then left clicked one image I wanted after another.  Sometimes after chosing 45 images, sometimes after only 10, Aperture 3 would on its own start all over.  The count at the bottom of the view would reset to 1.  All the images I had just selected were deselected.  I did this seveal times, always being very careful to click only in the images and no where else.  The thumbnails were large, so accuracy was not an issue.  I would scroll down using the wheel, always holding down the command key.  It seemed to have a mind of its own.  i'm well familiar with the Finder interface, so it wasn't me being clunky.  I repeated this behavior a number of times...baffling behavior.  Besides Aperture 3 being beastly slow on my imac, this was extremely irritating and buggy.  Am I the only one who has experienced?  What say you Apple?  Thank you collective.

    Thanks Mark, but you answered what I already included within my question. I wrote "So it's that, or disabling the hyperlink, move the object normally, and putting the hyperlink on again"
    With that, to "Uncheck the "Make hyperlinks active" you need to first select the object, and you end up back to the first and second problem I wrote.

  • WSRP Producer Registration and Firewall Problem

    Hi,
    I am trying to register a WSRP producer in JDev 11g TP3, and am running into a problem with our firewall, which requires authentication. The WSRP producer is on a system inside our firewall, however it references a WSDL outside our firewall (http://www.oasis-open.org/committees/wsrp/specifications/version1/wsrp_v1_bindings.wsdl).
    I have my proxy configured via preferences->Web Browser and Proxy to use the proxy server, but exclude our domain.
    The problem I have is that I can either Check the choice to "Use Proxy for contacting the Portlet Product", in which case I get an http 407 error trying to access the internal server, or uncheck the choice, in which case I get a timeout accessing the WSDL outside our firewall.
    Does anybody know how to configure the proxy settings to allow me to access a producer inside our firewall, which references a WSDL outside our firewall?
    Thank you!

    Peter,
    Firstly, thanks for your answer. Which log files are you referring to? I didn't find anything wrong in the richtextportlet application log. The error appears when trying to refresh a previously registered producer.
    I'm using both PDK-Java and WSRP portlets and the problem only happens with WSRP portlets. The app is using ADF security with a lightweight xml provider, I'm running the app in the embedded OC4J and the portlets are being consumed from the built-in portlet ready instance (OC4J_Webcenter) in an Oracle Webcenter 10.1.3.2.0 AS installation.
    Thanks again,
    Yoel

  • I have a new Macbook pro and need to run some Windows software, it appears "Parallel" should work well from what I've have read. Will I have any issues or problems accessing and printing from various printers on my Windows 7 network within Parallel?

    I have a new Macbook pro and need to run some Windows software, it appears "Parallel" should work well from what I've have read. Will I have any issues or problems accessing and printing from various printers on my Windows 7 network within Parallel? Is Parallel in fact the best way to go?

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

Maybe you are looking for

  • Outlook Integration in Windows 64bit

    I am currently running my demo laptop on Windows Server 2008 64 bit. I have all my applications including Outlook running fine , however I am unable to run SBO Outlook Integration, it installs hoever the system log Message comes up with an error mess

  • Oracle Express Edition And Windows Encrypted File System (EFS)

    Hello, I want to use oracle express edition with windows encrypted file system. I tried some possibilities like encrypting xe folder. But connection can not be established when efs is used. Is there a compatibility problem between oracle xe and windo

  • Billing Plan - Next Bill Date

    Hello I have a requirmenet to generate a charge on a bill for one month only. I've configured my item category to use a custom billing plan.  I have most of the information correctly configured except for the Next Bill Date. The Next Bill Date is sho

  • Adobe product that used to open all types of files

    My laptop have window 7, 64 bits operating system. I need any product (software) that open all types of files . Thank you nori642 Denver,CO,80231

  • Can i take SFM2 out from my 6500 core

    Hi, I have two core 6500 switches pls see the below commands CORE1#sh fabric utilization slot channel Ingress % Egress % 1 0 0 1 3 0 0 0 3 1 1 0 CORE1#sh mod Mod Ports Card Type Model Serial No. 1 2 Catalyst 6000 supervisor 2 (Active) WS-X6K-S2U-MSFC