Help with which permissions to go into policy file

I posted this question in Java Web Start & JNLP forum, but realize it may be more appropriate here.
I am writing my first policy file. I am trying to devise a "system" whereby the users/developers within my organization can use Java Web Start to access each other's applications from our intranet. Previously we were either copying the applications and running them locally or else mapping network drives, but they were running from command line (with no sandbox issues?) either way.
The application that I am testing Java Web Start with tries to make a database connection. Even with my jarfile signed and my application requesting "all-permissions" and the user granting the permission when prompted, the database connection was always failing. I started looking into the solution of having each user (within my organization) append some "grants" into their user policy file.
Since these users have already been "trusting" each other's programs enough to run them from the command line, they wouldn't mind an "automatically" having the same level of trust via JWS. But I don't know enough about permissions to know how to specify the correct permissions and know that I am not dangerously widening the permissions.
How do I write grant clauses into a policy file that say "anything run from our intranet web server can do anything a command-line program could do" ? I tried this:
grant codeBase "http://our_intranet_webserver/-" {
  permission java.security.AllPermission;
};...but the database connection still fails. But when I add this:
grant codeBase "file:/C:/Program Files/Java Web Start/-"{
  permission java.net.SocketPermission "*", "connect";
(the codebase would refer to the local Java Web Start program itself)...the database connection succeeds. (When I replace SocketPermission with AllPermission, the connection fails. I don't understand that.) BUT if I go granting general permissions to Java Web Start, wouldn't that grant apply to every Java-Web-Start-deployed application on the Web, not just our stuff?
Thanks for any help or advice on the matter,
/Mel

(When I replace SocketPermission with AllPermission, the connection fails. I don't
understand that.) This problem is solved. It is not true. I currently have a policy file that says:
grant codeBase "http://our_intranet_webserver/-" {
  permission java.security.AllPermission;
grant codeBase "file:/C:/Program Files/Java Web Start/-"{
  permission java.security.AllPermission;
};and the db connection does not fail. If I remove the first grant clause, leaving only AllPermissions to Java Web Start, the db connection does not fail.
BUT if I go granting general permissions to Java Web Start, wouldn't that grant apply to
every Java-Web-Start-deployed application on the Web, not just our stuff?This is still my problem. Why should I have to grant Java Web Start permissions (regardless of all or some) when I only want to grant them to a subset of codebases from which Java Web Start can run programs (specifically our intranet webserver)? I think this question has gone back to being more appropriate for the JWS Forum.
Thank you,
/Mel

Similar Messages

  • Problem with granting permissions in the security policy file

    Hi,
    I have a security policy file. I am granting permissions to some files. Now even if I have given permissions explicitly it doesnt taking it and gives error. My code snippet is as follows:
    grant codeBase "file:${jboss.server.home.dir}/deploy/jboss-ws4ee.sar/-"{
         permission java.security.AllPermission;
    The stack-trace for the same is as follows:
    11:09:49,518 ERROR [MainDeployer] Could not initialise deployment: file:/C:/Java/jboss-4.0.2/server/all/deploy/jboss-ws4ee.sar/jboss-ws4ee.war
    java.security.AccessControlException: access denied (java.io.FilePermission C:\Java\jboss-4.0.2\server\all\tmp\deploy\tmp17221jboss-ws4ee.war read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:269)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
         at java.lang.SecurityManager.checkRead(SecurityManager.java:863)
         at java.io.File.lastModified(File.java:771)
         at org.jboss.deployment.MainDeployer.init(MainDeployer.java:866)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:765)
         at org.jboss.deployment.MainDeployer.addDeployer(MainDeployer.java:360)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:121)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy37.addDeployer(Unknown Source)
         at org.jboss.deployment.SubDeployerSupport.startService(SubDeployerSupport.java:111)
         at org.jboss.web.AbstractWebContainer.startService(AbstractWebContainer.java:600)
         at org.jboss.web.tomcat.tc5.Tomcat5.startService(Tomcat5.java:409)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
         at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
         at sun.reflect.GeneratedMethodAccessor11.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:897)
         at $Proxy0.start(Unknown Source)
         at org.jboss.system.ServiceController.start(ServiceController.java:418)
         at org.jboss.system.ServiceController.start(ServiceController.java:440)
         at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy4.start(Unknown Source)
         at org.jboss.deployment.SARDeployer.start(SARDeployer.java:273)
         at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
         at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
         at sun.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
         at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:121)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:127)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
         at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
         at $Proxy8.deploy(Unknown Source)
         at org.jboss.deployment.scanner.URLDeploymentScanner.deploy
    Here I am giving all permission which in turn encapsulate FilePermission also. So this should work. But why it is bypassing this permission?
    Any clues?!
    Thanks.
    Jahnvi

    grant codeBase
    "file:${jboss.server.home.dir}/deploy/jboss-ws4ee.sar/-"{That's not a codebase, it's a specification for a FilePermission. A codebase is a list of one or more directories or JAR files expressed as URLs.

  • Help with a flash html inserting into DW

    Hello,
    I have created a enquiry section in flash for one of my html DW pages for my site. When I publish the flash doc ti creates a html page (Contact.html). When I open the flash html page in DW or upload it to my server, everything works fine. I recieve an email at my prefered destination etc etc. But as its only a section of my contact page of my website i need to insert it into my site page (get_in_touch.html) soon as i try and take all the stuff from contact.html and insert it into a div in my get_in_touch.html it doesn't respond when the submit button is pressed..... Can someone please help!!!!!
    Dan

    Thanks for all your help. I've managed to sort out the problem, still not
    sure what it was.... My sites live now.
    Just one question for you if you dont mind.
    The page which has the flash on it (yes this one again!) Well if someone
    goes to the page with out having flash player installed on their machine,
    i'm looking for some script to detect that there computer doesn't have
    Flash and redirect them to another html page I've created.
    Would really appreciated any advice you may have.
    many thanks,
    Dan
                                                                                    pziecina                                                 
                 <[email protected]>                                                                               
    To
                 09/09/2009 16:40                Daniel Herrington        
                                                 <[email protected]
                                                 m>                       
                    Please respond to                                       cc
                 clearspace-571537347-50                                  
                 [email protected]                               Subject
                      ums.adobe.com              Help with a
                                                 flash html inserting into DW
                                                                                    Hi
    Somewhere above your tag, you will have a line similar to this - Also in your tag the swf file -
    These are the files that I said may be wrong or missing.
    However if you just edit the flash generated page and include the items you
    require in this, and maintain the same file position, you should have no
    problems,
    PZ

  • Hello  I need your help with installing the flash drive into my laptop

    Hi
    I am Rachel Friedman asking for your help with installing the flashdrive player into my laptop.
    Thanks
    Rachel

    To give you any useful advice, I'm going to need to know more about your computer and browser:
    https://forums.adobe.com/message/5249945#5249945

  • Help with folder permissions issue

    Hello, I'm new to BI and I'm having issues with folder permissions.
    Here is what we are trying to do:
    We have two folders, lets say Folder A and Folder B. We have two application roles, Role1 and Role2.
    Folder A should have full control for Role1, Folder B should not be visible for Role2. Folder B should have full control to Role2, Folder A should not be visible for Role1.
    Under permissions for those two folders we have set it up accordingly. For Folder A, Role 1 has "Full Control", Role 2 has "No Access". Folder B, Role 2 has "Full Control", Role 1 has "No Access".
    Everything works fine if a user has one or the other role.
    But when a user has both the roles, they need to see both the folder but only see 1.
    What am I doing wrong? Thanks for the help in advance.

    if it's any consolation, seems to happen in the mac version, too. i use manually get album artwork on some new files imported from a CD - i renamed it exactly the same way it is in the itunes store, which previously always worked without fail. now, nothing. just says the requested resource can't be found. so, likely it's a bug.

  • Granting different permissions to different codebases : policy file problem

    Hi all. I'm having a bit of a problem with policy files and granting different persmissions to different codebases. What I have at the moment is a server app that copies a class file from the client to a specified directory on the server, and then dynamically loads and runs that class. This all works fine, but obviously as user submitted code is going to be run on the server I want to restrict what they are allowed to do. My app is going to be bundled up in a single jar file, and the directory that the client code is being copied to a subdirectory of the app installtion (not that this should make much difference). What i want to do is grant all permissions to my code in the jar file and resrict the permssions granted to code in the strategies directory. I assumed i would just be able to do this using my own policy file, but at the moment i'm not having much luck.
    Directory structure:
    c:/project/code/
    |
    |-labyrinth.jar
    |-strategies/
    Contents of labyrinth.policy:
    grant codeBase "file:../code/labyrinth.jar" {
    permission java.security.AllPermission;
    Command line arguments:
    java -Djava.security.manager -Djava.security.policy==./labyrinth.policy -classpath .;./labyrinth.jar;./strategies/;%CLASSPATH%; labyrinth.LabyrinthServer
    I've tried specifiying the absolute path to the jar file in the policy file as well as the relative path, i've tried including -Xbootclasspath/a and appending the jar file. All I seem to be able to manage though is either granting all permissions system wide, including the strategies dir, or none and getting security exceptions within my code. Anyone tried doing anything similair or got any idea where I might be going wrong? Any help would be appreciated as its really starting to doing my head in.
    TIA. Matt.

    Did you try putting a slash at the beginning of your "file" specification? e.g., instead of saying
    grant codeBase "file:../code/labyrinth.jar" {
    permission java.security.AllPermission;
    say
    grant codeBase "file:/../code/labyrinth.jar" {
    permission java.security.AllPermission;
    Hope this helps.

  • Help with Premiere Pro freezing after importing MPEG files

    I have
    had some files sent for me to edit which are MPEG I believe.  They will import, but
    as soon as I try and do anything with it, the whole thing freezes for several minutes!  It is unworkable.  I have tried waitin
    g for the audio file to conform.  I have tried rendering the work area.  None of this helps.  If it does play, it lasts for a few seco
    nds with sound playing at what appears to be twice the speed!  I normally wortk with DV files and these are fine.  By the way, the files I am struggling with do play in media player/real player etc.  I cant believe that premiere would not support this format.  Even Movie Maker just about manages it!  When it does freeze, it really freezes!  As in it wont even let me shut down without literally ripping out the power cable!!  Please help with simple English if possible, and sorry if I havent given you specifics that you would need.  But I honmestly dont know as these were just files sent to me on a memory stick. It was filming from a camcorder, but not sure what type.  The thumbnail says MPEG and the properties just says movie file.  It is about 2GB for an hour I think.  Thanks for any help.  My version is Premier Pro 1.5

    Genuinely sorry that I dont know all the technical things that people need
    to know.  I always try to find out when I am asked specifically and told how
    to find them.  I did look at the link, but that just seemed to be a lot of
    stuff about posting ettiquette, nothing about MPEGS.  Perhaps I got the link
    wrong.  All a bit hard for me as I have a visual imp[airment.  Thanks again

  • I need help with Compressor 4 settings to convert .mp4 files to .m4v for iBooks Author

    I'm a curriculum design guy with no video background. I have Compressor 4, but don't really know much about how to best use it.  I'd appreciate some help with getting the right setting for my project. Screen shots of settings would be much appreciated, since I don't know much video terminology.
    I'm making an free iBook for students on WWII propaganda using old videos from the Internet archive.
    I'd plan to use Compressor to:
    1. Convert the .mp4 files to a .m4v that iBooks Author will accept. (I know I can use QT for that, but it increases file size)
    2. Use Compressor to reduce file size so my iBook doesn't get too big
    3. Get videos that look & sound the best, given the poor quality of the original source videos.
    Here's some sample videos that I'll use:
    http://www.archive.org/download/OutOfTheFryingPanIntoTheFiringLine/OutOfTheFryin gPanIntoTheFiringLine.mp
    http://archive.org/download/AvengeDe1942/AvengeDe1942_edit.mp4
    PS - I will also be editing some of the original videos in iMovie - if I use different settings to prep those videos for iBook Author, let me know.
    Much thanks in advance for any help

    Compressor is half the size compared to QtX encoding, 17 MBs...
    File Format... H.264 for Apple Devices...
    Device: iPhone Local/WiFi
    Aspect Ratio: 4:3 480x368
    Data Rate: 700
    Uncheck Multi-pass

  • When syncing iPhone 4 with new update songs turn into "other" files

    Hello,
    Yesterday i upgraded the iphone software to ios7, after doing this everything was working well but when it tried to sync my music files from itunes it said it was syncing music file until the iphone had synced completely when they turned into "other" files.  I ahve tried restoring it but nothing has worked and it keeps happeneing.  Was wondering if anyone was also having this problem and could point me in the right direction.
    Thank you inadvance.

    So far there is no fix, there are many threads on this topic and many people with this problem. We are all ticked off and Apple needs to fix this ASAP. They don't seem to care.

  • Need Help with Kontakt2 player  - not reading Garritan GPO files in Pro 7

    I upgraded to Logic Pro 7 from 6 and messed up one of my libraries. First, the Kontakt player did not even show up in my pull-down menu, so, I upgraded to K2. Now, the player loads but it tells me that my GPO (Garritan) patches can't be used. What is going on? Anybody? Please help. Thank you.
    P.S. I upgraded to 7.2.3 and that did not do it.

    The problem is that Kontakt plugin has no files in it
    Kontakt has a file browser, which lets you access all the files on all your disks. It also has a comprehensive database function.
    You do not need to put files in any particular place, you just need to navigate to where your files are, and load them. If you don't know how to use the disk browser, then read that section in the manual.
    All you sample/instrument/multi files on your computer won't magically show up in this window, you need to do some file management or point the browser to the files you want to load.
    I get the message the files cannot be used.
    This is probably related to the issue I mentioned i my first response above.
    Seriously - this is not a Logic issue, it is an NI one - you will get much better help in the NI forums, or GPO support than here.
    Message was edited by: Bee Jay

  • Help With Repair Permissions!

    Hi All,
    I have a June 2009 17" 2.8 UMBP. I keep getting regular Spinning Beach Balls, Lock Ups, Delays and a whole host of Trackpad Issues much like many people are experiencing with the 1.7 Firmware Update which only is supposed to affect the 13" & 15" UBMP Models. I read on another post that Apple recommended to "Verify & Repair Disk Permissions" which I done. The problems still remain and the report in "Verfiy Permissions" is exactly the same (it seems) as that of the "Repair Permissions" and where it says "Repair Permissions Complete" at the end. The "Repair Permissions" Report still says that "Permissions Differ" on all lines - how can they have been repaired if they still differ? I am a novice and not technically aware about Macs so I hope someone can help me. Here is a copy of the report:
    2009-07-17 15:10:11 +0100: Verify permissions for “Macintosh HD”
    2009-07-17 15:10:23 +0100: Reading permissions database.
    2009-07-17 15:10:23 +0100: Reading the permissions database can take several minutes.
    2009-07-17 15:13:50 +0100: Permissions differ on "System/Library/Frameworks/CoreVideo.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:52 +0100: Permissions differ on "System/Library/Components/AudioCodecs.component/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:52 +0100: Permissions differ on "System/Library/Components/CoreMediaAuthoringPrivateComponents.component/Conten ts/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:52 +0100: Permissions differ on "System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:52 +0100: Permissions differ on "System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CodeRes ources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:53 +0100: Permissions differ on "System/Library/QuickTime/AppleProResDecoder.component/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:53 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:53 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:53 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMediaKeys.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:53 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMime.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTTransport.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTPlugIn. prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/Resources/QTAbout.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTStreami ng.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:13:54 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTUpdate. prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:14:31 +0100:
    2009-07-17 15:14:31 +0100: Permissions verification complete
    2009-07-17 15:14:31 +0100:
    2009-07-17 15:14:31 +0100:
    2009-07-17 15:14:38 +0100: Repairing permissions for “Macintosh HD”
    2009-07-17 15:15:07 +0100: Reading permissions database.
    2009-07-17 15:15:07 +0100: Reading the permissions database can take several minutes.
    2009-07-17 15:18:32 +0100: Permissions differ on "System/Library/Frameworks/CoreVideo.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:33 +0100: Permissions differ on "System/Library/Components/AudioCodecs.component/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:34 +0100: Permissions differ on "System/Library/Components/CoreMediaAuthoringPrivateComponents.component/Conten ts/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:34 +0100: Permissions differ on "System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:34 +0100: Permissions differ on "System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CodeRes ources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/QuickTime/AppleProResDecoder.component/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMediaKeys.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTMime.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTAdvance d.prefPane/Contents/Resources/QTTransport.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTPlugIn. prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTRegiste r.prefPane/Contents/Resources/QTAbout.bundle/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTStreami ng.prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:18:35 +0100: Permissions differ on "System/Library/PreferencePanes/QuickTime.prefPane/Contents/Resources/QTUpdate. prefPane/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    2009-07-17 15:19:13 +0100:
    2009-07-17 15:19:13 +0100: Permissions repair complete
    2009-07-17 15:19:13 +0100:
    2009-07-17 15:19:13 +0100:
    How do I fix things so things do not differ? I am hoping that will then fix the issues I am experiencing with my UBMP!
    Thank You,
    Suave!

    Hi
    I think you will find that many people are suffering this very same problem with permissions, it is nothing to be too concerned about and will in all probability disappear after a system update sometime in the future.
    There was a similar problem when I had a PowerBook G4 every time you repaired permissions it showed a whole raft of errors which would not go away. Eventually Apple released a system update and they all vanished.
    It is not broken and it is not going to impact on the running of the computer in anyway.
    I have just got a new MBP and have the same permission problem but my trackpad is functioning perfectly and I don't suffer any spinning beach ball.
    I would contact Apple, or go into an Apple Store and seek advice about the trackpad and spinning beach ball as these are probably caused by other problems than permissions being wrong.
    Phil

  • Help with exporting tracks from Garageband into iTunes please?!

    I have voice-recorded a list of Italian words and phrases which I want to import into iTunes as separate tracks so that I can shuffle them & test myself to learn them. So far I have been using the cycle region to import each word but it is taking forever! I beieve it is not possible to have multpile cycle regions and have been playing about with the markers using the podcast track but I can't get it to export in chapters either.
    Is there a way to split a single track in Garageband and import it as mulitple tracks into iTunes all at the same time?
    Thanks for any help you can give me!

    vanessa2011 wrote:
    the chapters only work when you actually burn to CD. I assume that's correct?
    for your purposes, yes (technically it would create podcast style chapters so you could jump past a section, for instance, but not in a shuffle fashion like you want)
    vanessa2011 wrote:
    I'm guessing that will take an awful lot of CDs?!
    you could use a re-writtable, but no, this doesn't sound like a really workable solution for what you're doing.
    vanessa2011 wrote:
    Just two of the chapters has already become 220 'songs' in iTunes and over 20MB.
    one thing you should be doing is selecting the "compress" option in the export dialogue. you can probably use very aggressive compression for spoken word since hi-fidelity wouldn't be that important (you might experiment with a custom setting to see how low you can go with it still being acceptable)
    vanessa2011 wrote:
    I wonder how much would fit onto a CD
    in terms of audio, it's time, not disc space. a standard CD holds 74 minutes of audio (some store 80)
    you could try an audio editor instead of GB:
    http://www.bulletsandbones.com/GB/GBFAQ.html#audioeditors
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    but GB is probably the most simple option

  • Help with html code - inserting video into Muse

    I am seeking help writing the code to insert a video into Muse. I uploaded video into my Business Catalyst hosting. I need it to autoplay, loop and not show any controls or frames.
    When I host video on Vimeo or YouTube, I see markings on the video that is why I am trying to just host in the same place that the files are stored for my website. If there is a way to host on youtube with out any markings showing up on the video I would be open to that too.
    I don't want to see any play button or time bar.
    Thanks in advance!!

    Hello,
    Just as an FYI - we also have an HTML5 video tool over at MuseThemes.com that achieves this, but works on mobile devices as well. The link above looks like it uses Flash, which isn't common anymore since the release of HTML5 based video.
    Simply drag the widget out onto your canvas, and link up your videos / set options like loop, controls visible, etc. It's quite a flexible widget, and there's a complete training video included so you don't get stuck
    Check out the widget here
    Just wanted to provide another alternative that could be helpful. Cheers!
    Steve Harris
    MuseThemes.com

  • I need help with a permissions or authentication problem

    I recently upgraded my Quickbooks application which involved replacing the existing application with a new full version downloaded from Intuit's web site. As soon as I replaced it, it stopped opening. Even reverting to the previous version won't help. It will open if I create a temporary new user and log in as that user. Repairing permission did not help. Something is preventing the application from being authenticated for me (the original user) perhaps? is there perhaps an invisible file that I shoulddelete? Anyone know how I can "reauthenticate" the program? I'm trying to avoid creating a new permanent user and having to move all my files into that. There must be a solution. Needless to say, Intuit was extremely unhelpful. There only sugestion was to log in as a temporary user whenever I need to work in Quickbooks.

    I guess I'm talking to myself. In case anyone will eventually read this, I did just figure out a solution. ApplicationEnhancer (and WindowShade X) was the culprit. After excluding Quickbooks from its list, it starts up fine.

  • Please help with combining two java packages into one iteration

    Hello, I work for a pharmaceutical company and run reports for credits that we have received. Currently the packages are reported seperately from the credit reports and my job is to combine them. There are two models that handle these and I need to link the second to the first with some common entities. Please help me figure out what I need to do in order to add a credit column to the report. I have a sample of the code below and would appreciate any help you can offer.
    First, the info pulled about the boxes:
    rm = (ReportManager) ManagerFactory.getManager(ManagerFactory.REPORTS);
    items = rm.getRVSSearchResults(hvstoresid,
    hvstoregroupsid,
    String.valueOf(request.getParameter("price_type")).trim(),
    String.valueOf(report_by).trim(),
    vendor_type,
    String.valueOf(request.getParameter("vendor")).trim(),
    from_date,
                        until_date,
    debitNum,
                        processing_type,
    sort_field,
    sort_direction,
                        includeAll222s).iterator();
    Second, the page that has the data i need to transpose to the first:
    PackoutModel pm = null;
                             int iter = searchpageposition*resultPageSize;
                             while (iter < packouts.size() && iter<(searchpageposition*resultPageSize)+resultPageSize)
                             { pm = (PackoutModel) packouts.get(iter);
                                  BigDecimal invoiceAmt = DataConverter.parseBigDecimalWithAlternateWhenNull(pm.getInvoiceAmt(),"0.00");
                                  BigDecimal creditRec = DataConverter.parseBigDecimalWithAlternateWhenNull(pm.getAmtReceived(),"0.00");
                                  BigDecimal processingFee = DataConverter.parseBigDecimalWithAlternateWhenNull(pm.getProcessFeeTotal(),"0.00");
                                  BigDecimal shippingFee = DataConverter.parseBigDecimalWithAlternateWhenNull(pm.getShippingHandlingFeeTotal(),"0.00");
                                  BigDecimal balanceDue =(invoiceAmt.add(processingFee.add(shippingFee))).subtract(creditRec);
    All that I need from the second page is to get a value for:
    DataConverter.parseBigDecimalWithAlternateWhenNull(pm.getAmtReceived(),"0.00");
    which I believe must first have the store id, etc equal to the first model. So there is the existing rvs.FOO and the needed pm.BAR but since it is in an iter loop, I can't seem to figure out how to join the two.
    Any ideas?

    could you explain your problem with a simplified schema or a more
    understandable code.
    (don't bother to write the details of your project plz)

Maybe you are looking for