Application working under NetBeans but not as a *.jar file

Hello,
recently I found a little problem. I wrote application that shows all available ports in my computer. When I am running this applications under NetBeans it works with no problem - finds all available ports. Then I am building it to the *.jar file. Application is working with no problem but command:
Enumeration PortIds = CommPortIdentifier.getPortIdentifiers();
is not returning any identifiers - PortIds is empty.
Anyone knows a solution for this type of problems? Thanks

Hi Venkatesh,
Few questions.
1. What is your JDeveloper version? (Always better to post your JDev version along with the question, which would help us to help you better).
2. Did you try adding webserviceclient.jar to the classpath? (Search in your JDev installation directory for the location of this jar file).
-Arun

Similar Messages

  • Application works in jdeveloper but not as standalone jar file

    Hi All
    We have developed an application using BI Publisher APIs,it works as expected through JDevelper,however when I try to deploy it to a jar file a run it through command line it gives me No class found exception for
    javax/xml/rpc/Service class factory.. thinking that the class is not present.I have extracted the jar file but could find the class file in the expected directory........anyhelp would greatly be appreciated.
    Regards
    Venkatesh

    Hi Venkatesh,
    Few questions.
    1. What is your JDeveloper version? (Always better to post your JDev version along with the question, which would help us to help you better).
    2. Did you try adding webserviceclient.jar to the classpath? (Search in your JDev installation directory for the location of this jar file).
    -Arun

  • Program run in Netbeans but NOT running as jar file

    Dear all ,
    i hope any help in this problem.
    i am writing program to access parallel port i put next files :
    1. [ comm.jar + javax.comm.properties ] in
    [ C:\Program Files\Java\jdk1.6.0_18\lib ] and [ C:\Program Files\Java\jdk1.6.0_18\jre\lib ]
    2. [ win32com.dll ] in [ C:\WINDOWS\system32 ]
    when i run application in NetBeans IDE 6.8 work fine and every think is ok
    BUT when i produce jar file , generated jar file does not work [GUI appear but can not get ports on PC]
    - I try to set Environment Variable as next :
    CLASSPATH = .;C:\Program Files\Java\jdk1.6.0_18\lib\comm.jar
    also does not work
    any tip please ?
    Thanks in advance
    Nabil

    First of all, leave the lib and jre/lib directories of the JRE alone. Never ever touch them again. Remove any jars you have put there yourself, or better yet completely remove and reinstall the JRE to make sure you put it back in a correct state.
    After you do that, learn how to properly work with the classpath in both the IDE and the command line.
    Netbeans: you define the classpath by adding jars to the project (right click on the libraries node in the project tree to get the appropriate options).
    Command line: this depends on if you run a single class, or you invoke an executable jar.
    Single class: you use the -cp command line switch to define the classpath
    Executable jar: the jar itself defines the classpath in its META-INF/manifest.mf file. The -cp command line switch is ignored.
    Since you use Netbeans, you'll get an executable jar so make sure to learn how such a jar is structured.

  • Custom F4 help in a BSP application working in Mozilla but not in IE

    Hi,
    I have created a custom F4 help in a BSP application.
    It is working in Mozilla but not in IE. I tried enabling javascript as well but still it is not working.
    Can someone please suggest a possible solution for this?

    Hi,
    See simmilar discussion in thread /thread/1883519 [original link is broken]
    I think this may be helpful for you.
    Thanks,
    Chandra

  • JAR Executable works in netbeans but not under Dos?

    Hi all,
    I have created a jar executable and it works fine in netbeans(it was not created in netbeans) but I can't get it to run on the command line. If I type java ClassName.MainClass it will run but not using the command java JarFile.jar or java -jar JarFile.jar
    Any help would be most appreciated.

    When creating the manifest file did you add a carriage return at the end of the manifest? e.g.
    Main-Class:Hello.class
    (carriage return here on new line)
    I think it runs into problems if you dont add a carriage return ( a new blank line after manifest).
    Hope this helps
    Riz

  • Application works from NB but not from jar

    Hi,
    I'am programming a game in JAVA and this going as planned. Everything works when I run it from NetBeans, but when I execute the jar file from the console, then I get hunderds of the same exception.
    I really don't know what it is, I see a NoSuchMethod exception in the MouseEvent of the method getLocationOnScreen(), but just as i said, the app works fine without errors from out NB.
    Does somebody knows what the problem is?
    thx Sven
    java -jar Hotel.jar
    Loading board images.
    Loading image: /Images/bg-patern-hotel.jpg
    Opening file /Images/bg-patern-hotel.jpg file exisits: true -- [/Users/svenvanzoelen/NetBeansProjects/Games/Hotel/dist/Images/bg-patern-hotel.jpg]
    Loading image: /Images/Main-board-big.jpg
    Opening file /Images/Main-board-big.jpg file exisits: true -- [/Users/svenvanzoelen/NetBeansProjects/Games/Hotel/dist/Images/Main-board-big.jpg]
    Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: java.awt.event.MouseEvent.getLocationOnScreen()Ljava/awt/Point;
         at Engine.GameAction.setMousePos(GameAction.java:137)
         at Engine.InputManager.mouseMoved(InputManager.java:277)
         at java.awt.Component.processMouseMotionEvent(Component.java:5647)
         at java.awt.Component.processEvent(Component.java:5371)
         at java.awt.Container.processEvent(Container.java:2010)
         at java.awt.Window.processEvent(Window.java:1184)
         at java.awt.Component.dispatchEventImpl(Component.java:4068)
         at java.awt.Container.dispatchEventImpl(Container.java:2068)
         at java.awt.Window.dispatchEventImpl(Window.java:1801)
         at java.awt.Component.dispatchEvent(Component.java:3903)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Same error goes 50 times more.Edited by: Svenmeister on Apr 16, 2010 7:22 AM
    Edited by: Svenmeister on Apr 16, 2010 7:22 AM

    Ok, I updated my Mac but still got the 1.5.0_22 crap so I changed the function from the mouseEvent to one that 1.5 supports.
    But now when I run the application from the console the Exception about the mouse function is gone, but I got another exception instead of it. And this one is I believe not JRE version relevant.
    The error is in the loading of the images, at the third PNG image to be precise. The images are now in total 10.8MB in size.
    So is this also a 1.6 thing? Would be awesome if someone can explain it.
    java -jar Hotel.jar Loading board images.
    Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space
         at java.awt.image.DataBufferInt.<init>(DataBufferInt.java:41)
         at java.awt.image.Raster.createPackedRaster(Raster.java:458)
         at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:1015)
         at sun.awt.image.ImageRepresentation.createBufferedImage(ImageRepresentation.java:223)
         at sun.awt.image.ImageRepresentation.setPixels(ImageRepresentation.java:469)
         at apple.awt.OSXImageRepresentation.setPixels(OSXImageRepresentation.java:66)
         at sun.awt.image.ImageDecoder.setPixels(ImageDecoder.java:120)
         at sun.awt.image.PNGImageDecoder.sendPixels(PNGImageDecoder.java:498)
         at sun.awt.image.PNGImageDecoder.produceImage(PNGImageDecoder.java:419)
         at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:246)
         at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
         at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
    Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
         at java.awt.image.DataBufferInt.<init>(DataBufferInt.java:41)
         at java.awt.image.Raster.createPackedRaster(Raster.java:458)
         at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:1015)
         at java.awt.image.BufferedImage.<init>(BufferedImage.java:345)
         at apple.awt.CGraphicsConfig.createCompatibleImage(CGraphicsConfig.java:174)
         at GUI.Board.toBufferedImage(Board.java:1472)
         at GUI.Board.loadImages(Board.java:1143)
         at Engine.HotelMain.switchState(HotelMain.java:86)
         at Engine.HotelMain.<init>(HotelMain.java:57)
         at Engine.HotelMain.main(HotelMain.java:194)Edited by: Svenmeister on Apr 16, 2010 11:01 AM

  • The application runs from netbeans, but not the command-line

    Hi
    I have developed a GUI application using NetBeans. All source code files are compiling without problems and the program runs just fine when i press "run <app name>" in NetBeans. However, when i try to execute the jar file using the command "java -jar <name of jar>", then i get this error message (im standing in the same directory as the jar file which is the dist directory:
    $ java -jar /home/icebyte/NetBeansProjects/TripPlanner/dist/TripPlanner.jar
    Exception in thread "main" java.lang.NoClassDefFoundError: tripplanner/Main
    Caused by: java.lang.ClassNotFoundException: tripplanner.Main
    at java.net.URLClassLoader$1.run(URLClassLoader.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:209)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:324)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:269)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:337)
    Error: Could not find the main class.
    Error: A JNI error has occurred, please check your installation and try again
    Does someone know why i am getting this error ? I would be nice to find out. I have also tried to go into the src directory of the netbeans project and compile all files there which works fine, but when i try to run the program with "java <file that contains main method>" i get this error:
    Exception in thread "main" java.lang.NoClassDefFoundError: MainMenu (wrong name: tripplanner/MainMenu)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:638)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:143)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:281)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:74)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:216)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:209)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:324)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:269)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:337)
    Error: Could not find the main class.
    Error: A JNI error has occurred, please check your installation and try again
    I have JDK and JRE installed on the system (it came with netbeans). I have tried setting the JAVA_HOME variable, but there is no difference. Anyone? Thanks for all help.

    Hmm, i solved the problem now. I looked at this problem yesterday and couldnt find out why i was getting these stack traces, but now i know :)

  • Adobe Illustrator works under root, but not my normal admin account.

    I am having an issue using Adobe Illustrator under my normal system administrator. It works under the root user. Not sure why this is. They can't help me fix it. This also happens on my laptop.
    Here is my report from illustrator.
    Date/Time:       2013-02-15 17:35:05 -0700
    OS Version:      10.8.2 (Build 12C60)
    Architecture:    x86_64
    Report Version:  11
    Command:         Illustrator
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Version:         682 (16.0.0)
    Parent:          launchd [144]
    PID:             524
    Event:           hang
    Duration:        0.82s
    Steps:           9 (100ms sampling interval)
    Hardware model:  iMac12,2
    Active cpus:     4
    Free pages:      5110 pages (-1977)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Adobe Illustrator [524]
    Path:            /Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Architecture:    x86_64
    Parent:          launchd [144]
    UID:             501
    Task size:       151005 pages (+5)
      Thread 0x8148     DispatchQueue 1          priority 47       
      9 ??? (Adobe Illustrator + 1455608) [0x1001635f8]
        9 ??? (Adobe Illustrator + 7271892) [0x1006ef5d4]
          9 ??? (Adobe Illustrator + 7336837) [0x1006ff385]
            9 ??? (Adobe Illustrator + 7714456) [0x10075b698]
              9 exo::app::OS_AppBase::RunEventLoop() + 55 (exo) [0x10a91d807]
                9 -[NSApplication run] + 517 (AppKit) [0x102181283]
                  9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x102189ed2]
                    9 _DPSNextEvent + 2073 (AppKit) [0x10218ab7f]
                      9 _NSHandleCarbonMenuEvent + 245 (AppKit) [0x1022689c6]
                        9 _HandleMenuSelection2 + 565 (HIToolbox) [0x10ed650b8]
                          9 MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605 (HIToolbox) [0x10ed65aab]
                            9 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94 (HIToolbox) [0x10ed89a4f]
                              9 SendMenuItemSelectedEvent + 254 (HIToolbox) [0x10ed89bc3]
                                9 SendMenuCommandWithContextAndModifiers + 59 (HIToolbox) [0x10ed89c11]
                                  9 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443 (HIToolbox) [0x10ede4e89]
                                    9 SendEventToEventTarget + 40 (HIToolbox) [0x10edae1bd]
                                      9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410 (HIToolbox) [0x10ed983d9]
                                        9 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206 (HIToolbox) [0x10ed98f0a]
                                          9 NSSLMMenuEventHandler + 342 (AppKit) [0x1023a9245]
                                            9 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135 (AppKit) [0x10209d2f7]
                                              9 -[NSMenu _internalPerformActionForItemAtIndex:] + 36 (AppKit) [0x10209d46f]
                                                9 -[DVAMacMenu performActionForItemAtIndex:] + 61 (dvaui) [0x10a0d5a9d]
                                                  9 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133 (AppKit) [0x1023b013a]
                                                    9 -[NSMenuItem _corePerformAction] + 406 (AppKit) [0x1023b044c]
                                                      9 -[NSApplication sendAction:to:from:] + 342 (AppKit) [0x10227aa59]
                                                        9 -[ExoMacApplication handleMenuCommand:] + 187 (exo) [0x10a91ff5b]
                                                          9 void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 93 (dvacore) [0x1099a99bd]
                                                            9 void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void >(boost::function0<void>, bool*) + 250 (dvacore) [0x1099a5eda]
                                                              9 ??? (Adobe Illustrator + 7722907) [0x10075d79b]
                                                                9 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 123 (dvacore) [0x1099a6e4b]
                                                                  9 exo::app::OS_AppBase::DispatchMenuCommand(int) + 119 (exo) [0x10a91e4d7]
                                                                    9 exo::uisupport::CommandHandlerBase::CallCommandChain(int) + 62 (exo) [0x10a99406e]
                                                                      9 exo::uisupport::CommandHandler::DoCallMyCommandChain(int) + 36 (exo) [0x10a994664]
                                                                        9 exo::uisupport::CommandHandler::HandleCommand(int) + 259 (exo) [0x10a994613]
                                                                          9 ??? (Adobe Illustrator + 7715668) [0x10075bb54]
                                                                            9 ??? (Adobe Illustrator + 4749011) [0x1004876d3]
                                                                              9 ??? (Adobe Illustrator + 11786005) [0x100b3d715]
                                                                                9 ??? (Adobe Illustrator + 9793842) [0x100957132]
                                                                                  9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 13900 (Adobe Illustrator) [0x100c8236c]
                                                                                    9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 1228 (Adobe Illustrator) [0x100c7f1ec]
                                                                                       9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 24282 (Adobe Illustrator) [0x100c84bfa]
                                                                                         9 PluginMain + 6952 (Rasterize) [0x11fdac308]
                                                                                           9 PluginMain + 4443 (Rasterize) [0x11fdab93b]
                                                                                             9 PluginMain + 26658 (Rasterize) [0x11fdb1002]
                                                                                               9 PluginMain + 15450 (Rasterize) [0x11fdae43a]
                                                                                                 9 ??? (Adobe Illustrator + 10313109) [0x1009d5d95]
                                                                                                   9 ??? (Adobe Illustrator + 10429204) [0x1009f2314]
                                                                                                     9 ??? (Adobe Illustrator + 8638949) [0x10083d1e5]
                                                                                                       9 ??? (Adobe Illustrator + 10437339) [0x1009f42db]
                                                                                                         9 ??? (Adobe Illustrator + 10432916) [0x1009f3194]
                                                                                                           9 ??? (Adobe Illustrator + 10213037) [0x1009bd6ad]
                                                                                                             9 ??? (Adobe Illustrator + 11032453) [0x100a85785]
                                                                                                               9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 15393 (Adobe Illustrator) [0x100c82941]
                                                                                                                 9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 13900 (Adobe Illustrator) [0x100c8236c]
                                                                                                                   9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 1228 (Adobe Illustrator) [0x100c7f1ec]
                                                                                                                     9 std::_Rb_tree<SPSUAS, std::pair<SPSUAS const, int>, std::_Select1st<std::pair<SPSUAS const, int> >, std::less<SPSUAS>, std::allocator<std::pair<SPSUAS const, int> > >::erase(SPSUAS const&) + 24282 (Adobe Illustrator) [0x100c84bfa]
                                                                                                                       9 PluginMain + 280 (BNPlugin) [0x1332677e8]
                                                                                                                         9 PluginMain + 29301 (BNPlugin) [0x13326e945]
                                                                                                                           9 PluginMain + 9949 (BNPlugin) [0x133269dad]
                                                                                                                             9 PluginMain + 36051 (BNPlugin) [0x1332703a3]
                                                                                                                               9 PSLShutdown + 388 (AdobePSL) [0x105d3c8f4]
                                                                                                                                 9 PSLGetPreferences + 11343 (AdobePSL) [0x105d3c40f]
                                                                                                                                   9 PSLCreateStringUTF8 + 460233 (AdobePSL) [0x105dbfce9]
                                                                                                                                     9 PSLCreateStringUTF8 + 464882 (AdobePSL) [0x105dc0f12]
                                                                                                                                       9 PSLSetImageGuides + 1436569 (AdobePSL) [0x105f27959]
                                                                                                                                         9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3318833 (AdobePSL) [0x105aadb11]
                                                                                                                                           9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3354840 (AdobePSL) [0x105ab67b8]
                                                                                                                                             9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3353884 (AdobePSL) [0x105ab63fc]
                                                                                                                                               9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3353361 (AdobePSL) [0x105ab61f1]
                                                                                                                                                 9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3346950 (AdobePSL) [0x105ab48e6]
                                                                                                                                                   9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 3342002 (AdobePSL) [0x105ab3592]
                                                                                                                                                     9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5349487 (AdobePSL) [0x105c9d74f]
                                                                                                                                                       9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5347260 (AdobePSL) [0x105c9ce9c]
                                                                                                                                                         9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5349200 (AdobePSL) [0x105c9d630]
                                                                                                                                                           9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5348952 (AdobePSL) [0x105c9d538]
                                                                                                                                                             9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5348825 (AdobePSL) [0x105c9d4b9]
                                                                                                                                                               9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5514694 (AdobePSL) [0x105cc5ca6]
                                                                                                                                                                 9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5514476 (AdobePSL) [0x105cc5bcc]
                                                                                                                                                                   9 ??? (AdobePSL + 118259) [0x10576ddf3]
                                                                                                                                                                     9 ??? (AdobePSL + 117995) [0x10576dceb]
                                                                                                                                                                        9 ??? (AdobePSL + 117654) [0x10576db96]
                                                                                                                                                                          9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 569177 (AdobePSL) [0x10580e639]
                                                                                                                                                                            9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 580792 (AdobePSL) [0x105811398]
                                                                                                                                                                              9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 5501091 (AdobePSL) [0x105cc2783]
                                                                                                                                                                                9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 579476 (AdobePSL) [0x105810e74]
                                                                                                                                                                                  9 PSSLO::ConstAutoResource<PSSLO::StyleSheet>::ConstAutoResource() + 585837 (AdobePSL) [0x10581274d]
                                                                                                                                                                                    9 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x10c929122]
                                                                                                                                                                                     *9 psynch_mtxcontinue + 0 (mach_kernel) [0xffffff80005b46d0]
      Thread 0x815b     DispatchQueue 2          priority 49       
      9 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10c7439ee]
        9 kevent + 10 (libsystem_kernel.dylib) [0x10c929d16]
         *9 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x8164     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b4657e4]
            9 ??? (AdobeACE + 230874) [0x1044ac5da]
              9 ??? (AdobeACE + 234185) [0x1044ad2c9]
                9 MPWaitOnQueue + 252 (CarbonCore) [0x10b3f0b24]
                  9 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b48e3eb]
                    9 TSWaitOnCondition + 108 (CarbonCore) [0x10b48e214]
                      9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                       *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x8165     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b4657e4]
            9 ??? (AdobeACE + 230874) [0x1044ac5da]
              9 ??? (AdobeACE + 234185) [0x1044ad2c9]
                9 MPWaitOnQueue + 252 (CarbonCore) [0x10b3f0b24]
                  9 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b48e3eb]
                    9 TSWaitOnCondition + 108 (CarbonCore) [0x10b48e214]
                      9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                       *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x8166     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b4657e4]
            9 ??? (AdobeACE + 230874) [0x1044ac5da]
              9 ??? (AdobeACE + 234185) [0x1044ad2c9]
                9 MPWaitOnQueue + 252 (CarbonCore) [0x10b3f0b24]
                  9 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b48e3eb]
                    9 TSWaitOnCondition + 108 (CarbonCore) [0x10b48e214]
                      9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                       *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x817a     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 AGMInitialize + 3288383 (AdobeAGM) [0x104963deb]
            9 AGMInitialize + 3259056 (AdobeAGM) [0x10495cb5c]
              9 AGMInitialize + 3255471 (AdobeAGM) [0x10495bd5b]
                9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                 *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81b5     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 83761 (adbeapeengine) [0x120878ec1]
                  9 APXGetHostAPI + 2516093 (adbeapeengine) [0x120acac0d]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81b6     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 83761 (adbeapeengine) [0x120878ec1]
                  9 APXGetHostAPI + 2516093 (adbeapeengine) [0x120acac0d]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81b7     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 83761 (adbeapeengine) [0x120878ec1]
                  9 APXGetHostAPI + 2516093 (adbeapeengine) [0x120acac0d]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81b8     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 83761 (adbeapeengine) [0x120878ec1]
                  9 APXGetHostAPI + 2516093 (adbeapeengine) [0x120acac0d]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81cb     priority 63       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 CAPThread::Entry(CAPThread*) + 156 (CoreMediaIO) [0x1237de2de]
            9 CMIO::DAL::RunLoop::OwnThread(void*) + 146 (CoreMediaIO) [0x1237e66f8]
              9 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10ae9b6b2]
                9 __CFRunLoopRun + 1078 (CoreFoundation) [0x10ae9bee6]
                  9 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10ae96803]
                    9 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10c927686]
                     *9 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x81ce     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 2614859 (adbeapeengine) [0x120ae2ddb]
                  9 APXGetHostAPI + 2516032 (adbeapeengine) [0x120acabd0]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81d3     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 APXGetHostAPI + 2516713 (adbeapeengine) [0x120acae79]
            9 APXGetHostAPI + 2516410 (adbeapeengine) [0x120acad4a]
              9 APXGetHostAPI + 2516289 (adbeapeengine) [0x120acacd1]
                9 APXGetHostAPI + 4164403 (adbeapeengine) [0x120c5d2c3]
                  9 APXGetHostAPI + 2516032 (adbeapeengine) [0x120acabd0]
                    9 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10c9290fa]
                     *9 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5d30]
      Thread 0x81d4     priority 48       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 PluginMain + 364210 (dBrushTool) [0x127e802d2]
            9 usleep + 54 (libsystem_c.dylib) [0x10c84a717]
              9 __semwait_signal + 10 (libsystem_kernel.dylib) [0x10c929386]
               *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x81d5     priority 47       
      9 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10c9276c2]
       *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x81d6     priority 47       
      9 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10c9276c2]
       *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x81d7     priority 47       
      9 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10c9276c2]
       *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x81d8     priority 47       
      9 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10c9276c2]
       *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x82f9     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 PluginMain + 1571030 (ScriptingSupport) [0x12029cbd6]
            9 PluginMain + 1471097 (ScriptingSupport) [0x120284579]
              9 PluginMain + 1570187 (ScriptingSupport) [0x12029c88b]
                9 __semwait_signal + 10 (libsystem_kernel.dylib) [0x10c929386]
                 *9 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x82fb     priority 47       
      9 thread_start + 13 (libsystem_c.dylib) [0x10c7ad181]
        9 _pthread_start + 327 (libsystem_c.dylib) [0x10c7c0742]
          9 Invoke + 44800 (ServiceManager-Launcher.dylib) [0x11686e253]
            9 Invoke + 37055 (ServiceManager-Launcher.dylib) [0x11686c412]
              9 Login + 15394 (ServiceManager-Launcher.dylib) [0x1168627ad]
                9 Login + 480 (ServiceManager-Launcher.dylib) [0x11685ed6b]
                  9 Invoke + 36186 (ServiceManager-Launcher.dylib) [0x11686c0ad]
                    9 Invoke + 35935 (ServiceManager-Launcher.dylib) [0x11686bfb2]
                      9 Invoke + 33826 (ServiceManager-Launcher.dylib) [0x11686b775]
                        9 Invoke + 33482 (ServiceManager-Launcher.dylib) [0x11686b61d]
                          9 Invoke + 23534 (ServiceManager-Launcher.dylib) [0x116868f41]
                            9 Invoke + 22916 (ServiceManager-Launcher.dylib) [0x116868cd7]
                              9 Invoke + 21187 (ServiceManager-Launcher.dylib) [0x116868616]
                                9 Invoke + 20412 (ServiceManager-Launcher.dylib) [0x11686830f]
                                  9 Invoke + 39187 (ServiceManager-Launcher.dylib) [0x11686cc66]
                       

    Hi, couldn't read all those logs, but...
    Question matks, even in the root UUID 0 account indicate some deeper problem, but no expert.
    Was it maybe Installed with root privileges???
    Have you booted from the Restore paryion & Repaired Disk, then Permissions?

  • Application works no WTK but not on phone

    I created a very simple application, with a form, some textfields, nothing fancy, no images, no menus, etc.
    It works fine on the WTK simulator, and it installs on the phone, but when I execute it I get "Application Error" and it doesn't even open.
    I'm manually creating the JAR file... is there anything I should add to it? I'm using the manifest file created by WTK and the class file (only one).

    Hey thanks mate.
    I have posted my code in other thread if you would like to have a look at it.
    I m using 3G to access my webserver. Oh yeah, I m using pure HTTP and not WAP-HTTP since I have changed the configuration.
    But, as I said previously I had no problems doing the samething from the same device although I didnt send any data, just something like pinging the web server and getting a reply in form of say " works1","works2" and so on....
    Ok, I will have a look at device config. data sheet.
    Thanks for your reply

  • Application works in emulator but not on real device

    Hi Everyone,
    I have been trying to build this application and avail users to download it from a WAP page.
    Now, initially for testing purpose I managed to transfer it on my mobile device which is a Sony Ericsson Z800 using a data cable.
    The application downloads 2 images from an Apache Tomcat web server and displays it on user screen. I have created this application using MIDP 2.0. I managed to install it on my mobile device and now when I m trying to send request to the server I wont get any response ? The request itself is not reaching to the web server.
    Strangely it works when I give a static path from my mobile browser like: http://xxx.xxx.xxx.xxx:8080/servlet?param1=x&param2=y but when the same path is accessed from installed application it wont work :-(. Its a static IP so there is no problem with changing of IP Address.
    Please note that I have transferred only the jar file. Does that make any difference ?
    Please guide me as to where I m going wrong..
    Regards

    Hey thanks mate.
    I have posted my code in other thread if you would like to have a look at it.
    I m using 3G to access my webserver. Oh yeah, I m using pure HTTP and not WAP-HTTP since I have changed the configuration.
    But, as I said previously I had no problems doing the samething from the same device although I didnt send any data, just something like pinging the web server and getting a reply in form of say " works1","works2" and so on....
    Ok, I will have a look at device config. data sheet.
    Thanks for your reply

  • JMF code working under linux but not windows XP

    Hello everyone,
    I'm currently working on a nice cross-platform project involving sound producing. I decided to take a look at JMF and test it a bit to know if its features can suit me. I tried to make it works under windows, using a very simple sample of code. The system seems to play the sound as some console output detects the start and the end, but all i hear is a very short noise ( 1/2second ) like a "CLIK" and nothing else. I tested the code under linux, using the same computer and it works just fine, playing the same wave nicely and entirely.
    some info:
    -i used the cross platform JMF, no performance pack ( i tried it , but still no result )
    -the code just opens a file dialog and plays the selected file
    -the selected file was always a very simple .wav
    -i did not use system classpath variables because i don't like it, i rather use local classpath ( which works fine too, no doubt about it )
    -i tested this little soft on 2 other computer using windows XP, and still got the same result.
    Please, have you got an idea about what's going on ?
    Thanks a lot for any answer!
    Maxime - Paris . France
    Code Sample:
    import java.io.File;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import javax.media.*;
    import javax.swing.JDialog;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    public class JMFSound extends Object implements ControllerListener {
         File soundFile;
         JDialog playingDialog;
         public static void main (String[] args) {
              JFileChooser chooser = new JFileChooser();
              chooser.showOpenDialog(null);
              File f = chooser.getSelectedFile();
              try {
                   JMFSound s = new JMFSound (f);
              } catch (Exception e) {
                   e.printStackTrace();
         public JMFSound (File f) throws NoPlayerException, CannotRealizeException,     MalformedURLException, IOException {
              soundFile = f;
              // prepare a dialog to display while playing
              JOptionPane pane = new JOptionPane ("Playing " + f.getName(), JOptionPane.PLAIN_MESSAGE);
              playingDialog = pane.createDialog (null, "JMF Sound");
    playingDialog.pack();
              // get a player
              MediaLocator mediaLocator = new MediaLocator(soundFile.toURL());
              Player player =     Manager.createRealizedPlayer (mediaLocator);
    player.addControllerListener (this);
    player.prefetch();
    player.start();
    playingDialog.setVisible(true);
         // ControllerListener implementation
         public void controllerUpdate (ControllerEvent e) {
    System.out.println (e.getClass().getName());
         if (e instanceof EndOfMediaEvent) {
                   playingDialog.setVisible(false);
                   System.exit (0);
    Message was edited by:
    Monsieur_Max

    Hello everyone,
    I'm currently working on a nice cross-platform project involving sound producing. I decided to take a look at JMF and test it a bit to know if its features can suit me. I tried to make it works under windows, using a very simple sample of code. The system seems to play the sound as some console output detects the start and the end, but all i hear is a very short noise ( 1/2second ) like a "CLIK" and nothing else. I tested the code under linux, using the same computer and it works just fine, playing the same wave nicely and entirely.
    some info:
    -i used the cross platform JMF, no performance pack ( i tried it , but still no result )
    -the code just opens a file dialog and plays the selected file
    -the selected file was always a very simple .wav
    -i did not use system classpath variables because i don't like it, i rather use local classpath ( which works fine too, no doubt about it )
    -i tested this little soft on 2 other computer using windows XP, and still got the same result.
    Please, have you got an idea about what's going on ?
    Thanks a lot for any answer!
    Maxime - Paris . France
    Code Sample:
    import java.io.File;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import javax.media.*;
    import javax.swing.JDialog;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    public class JMFSound extends Object implements ControllerListener {
         File soundFile;
         JDialog playingDialog;
         public static void main (String[] args) {
              JFileChooser chooser = new JFileChooser();
              chooser.showOpenDialog(null);
              File f = chooser.getSelectedFile();
              try {
                   JMFSound s = new JMFSound (f);
              } catch (Exception e) {
                   e.printStackTrace();
         public JMFSound (File f) throws NoPlayerException, CannotRealizeException,     MalformedURLException, IOException {
              soundFile = f;
              // prepare a dialog to display while playing
              JOptionPane pane = new JOptionPane ("Playing " + f.getName(), JOptionPane.PLAIN_MESSAGE);
              playingDialog = pane.createDialog (null, "JMF Sound");
    playingDialog.pack();
              // get a player
              MediaLocator mediaLocator = new MediaLocator(soundFile.toURL());
              Player player =     Manager.createRealizedPlayer (mediaLocator);
    player.addControllerListener (this);
    player.prefetch();
    player.start();
    playingDialog.setVisible(true);
         // ControllerListener implementation
         public void controllerUpdate (ControllerEvent e) {
    System.out.println (e.getClass().getName());
         if (e instanceof EndOfMediaEvent) {
                   playingDialog.setVisible(false);
                   System.exit (0);
    Message was edited by:
    Monsieur_Max

  • This CFHTTP works under CF5 but not CF7

    Hi,
    Can some one explains to me why this code works under CF5,
    the page is returned in fileContent, but under CF7, the fileContent
    only contains "connection failure", although the status is reported
    as "200 OK".
    Also, i'd appreciate if someone could test it under CF8 and
    tell mes if the page is returned.
    Thanks.

    Hi everyone, I’m experiencing a similar prob but find
    that your suggested solutions don’t seem to work for me.
    On my remoteserever (CF7.02). it returns 408 Request Time-out
    no matter what I do. It just never connects. When submitted from my
    local server (cf8 developer) I get connected everytime. I have a
    friend with the same host (on a different server) and he has no
    probs cfttp’ing to this url with the same code.
    <cfhttp
    url="
    http://api.clickatell.com/http/sendmsg"
    resolveurl="false"
    timeout="5"
    method="post"
    >
    <cfhttpparam type="formfield" name="api_id"
    value="9999999">
    <cfhttpparam type="formfield" name="user"
    value="aaaaaaa">
    <cfhttpparam type="formfield" name="password"
    value="xxxxxx">
    <cfhttpparam type="formfield" name="from"
    value="61400000000">
    <cfhttpparam type="formfield" name="to"
    value="27999100000">
    </cfhttp>
    I’m not sure if it’s a compression issue or not.
    I tried
    <cfhttp
    url="
    http://api.clickatell.com/http/sendmsg"
    resolveurl="false"
    timeout="5"
    method="post"
    >
    <cfhttpparam type="Header" name="Accept-Encoding"
    value="deflate;q=0">
    <cfhttpparam type="Header" name="TE"
    value="deflate;q=0">
    <cfhttpparam type="formfield" name="api_id"
    value="9999999">
    <cfhttpparam type="formfield" name="user"
    value="aaaaaaa">
    <cfhttpparam type="formfield" name="password"
    value="xxxxxx">
    <cfhttpparam type="formfield" name="from"
    value="61400000000">
    <cfhttpparam type="formfield" name="to"
    value="27999100000">
    </cfhttp>
    AND
    <cfhttp
    url="
    http://api.clickatell.com/http/sendmsg"
    resolveurl="false"
    timeout="5"
    method="post"
    >
    <cfhttpparam type="header" name="Accept-Encoding"
    value="*" />
    <cfhttpparam type="Header" name="TE"
    value="deflate;q=0">
    <cfhttpparam type="formfield" name="api_id"
    value="9999999">
    <cfhttpparam type="formfield" name="user"
    value="aaaaaaa">
    <cfhttpparam type="formfield" name="password"
    value="xxxxxx">
    <cfhttpparam type="formfield" name="from"
    value="61400000000">
    <cfhttpparam type="formfield" name="to"
    value="27999100000">
    </cfhttp>
    As per
    http://www.talkingtree.com/blog/index.cfm/2004/7/28/20040729/
    and
    your suggestions only to note that none of these suggestions
    permitted a successful connection from my remote host. They all
    connect immediately from my local host.
    I also noted Dan’s quote:
    “After some more testing, it appears CFMX 7 reports the
    user agent string of "CFSCHEDULE" and not "ColdFusion". This means
    you should also add the "CFSCHEDULE" string along with the string
    "ColdFusion" to your MIME type exceptions list. “
    From:
    http://blog.pengoworks.com/index.cfm/2006/3/13/CFHTTP-Connection-Failures-issues-with-Gzip
    I’m not sure of the syntax to do this or if the GZIP
    stuff is even relevant to my server. (Yep, I’m with Godaddy)
    Anyone???

  • Song and Artist Info missing under itunes but not in the original file, and putting track number next to certian songs. Help

    i recently updated my itunes...today i opened it up and moticed abuout 100 songs missing...they are now at the bottom of itunes song list with a number next to them with information mission such as this the example below
    01 human                                                                 (this song should have the killers name as artist and cd title, etc)
    01 hosanna     hillsong united                                 (this song should have the cd title to it)
    02 lay me down                                          burning light
    02 leave out all the rest
    02 let it be                       the beatles
    03 papercut
    when i go under the original folders and files in the itunes folder everything is normal no missing info, etc. but under itunes orgnising its picking and choosing the same songs and putting the track number next to it and others songs in the same cd not. plus info missing. under the infor when i click right button all info missing there...but not under original file.
    please help

    A response on this subject from another post:
    It could be that you have inadvertently imported these CDs into iTunes as part of a compilation. If so, the artists won't show in the artists menu on the iPod.
    To check, highlight the tracks on one of the offending artists CDs in iTunes, right click and select "get info". This brings up a multiple song info window, and from there you can check if you have 'yes' in the box marked "part of a compilation".
    If you have, select 'no' instead and click 'ok'. Do this with any CD that has this issue. This will alter the info in iTunes, and you should then connect your iPod and synchronize the changes.
    The problem arises because the information contained on the Gracenote CD Data Base (where iTunes gets all it's album/artist/track info from), is sometimes incorrect. It can show CDs as compilations when in fact they are not.
    ramstigo wrote:
    I had an earlier post on this subject with a similar problem. I tried what you suggested and it worked indeed. You can select the artists from your Ipod on Itunes and after highlighting the artists/albums affected, click NO on the compilation box and the issue is resolved: the artists appear on the list.
    Thank you so much!!!!.

  • Access of MySQlL Driver class by eclipse but not from Outside Jar file

    Dear All,
    I have done a standalone application having access with MySQl database.
    I could access it when i execute it from eclipse. But when i export it into Jar file and running I get MySQL Driver class not found exception.
    Give me a better solution for this issue.

    CLASSPATH, CLASSPATH, CLASSPATH.
    You have defined the Eclipses Project Library Path to include the MySQL jar, but ar not including it on the classpath when executing the jar.
    Either modify the MANIFEST.mf file in the jar to include a reference to the MySQL driver jarfile or call java in the following manner
    java -cp /full/path/to/MySQL/Driver/jarfile.jar -jar yourJarFile.jarObviously, if this is on Windows and you are executing through a double click, the first option is the best option.

  • ACS 4.1- shell command works under user but not group

    Hi,
    This question might actually belong under tacacs server but it's only happening with the ACE.  I've configured tacacs on the 4710 and configured the tacacs server per the documentation. If I enter the shell:<context>*Admin default-domain under the group settings when I login with my tacacs ID my role is set to Network-Monitor.  If I set the shell in my specific tacacs ID I'm assigned the correct role as Admin.  We're running ACS ver 4.1 and the ACE is A4(1.1)
    Thanks

    For the tacacs settings under the user settings make sure you select the radio button for "Use Group Level Setting" rather than just removing the av-pair.
    Thanks,
    Tarik

Maybe you are looking for

  • SAP PI Interface for Multiple Bapi

    hi, i need to expose 2 Bapi (Bapi A and Bapi B) using SAP PI 7.0 using single PI Interface / webservice. 3rd party --> SAP PI -->SAP ECC6. for first option, i can create new Bapi C and include Bapi A & B new Bapi C.  then only expose BAPI C in SAP PI

  • HOW TO UPLOAD SPREADSHEET TO SAP

    I need to know how do we upload a excel sheet to SAP. What is the transaction code. There is an excel sheet with costs and expenses downloaded for a charge card from bank. we want to post those expenses to liablitlity account in SAP. So if these expe

  • Why does google chrome freeze and crash after installing mavericks?

    I use google chrome and after installing mavericks my chrome started moving slower and slower until it eventually froze.  The keyboard becomes locked and the mouse is just a pinwheel.  Cannot click on anything or force quit.  I end up powering it dow

  • Uninstalled Photoshop Elements 9 Trying to reinstall

    I uninstalled Photoshop elements 9 today because i clicked on the edit page and it said it could not find a file which means i deleted something in my computer without realizing it was important ( oops ) BUT anyways.. im trying to find Photoshop Elem

  • How many client connections will iMQ 2.0 handle?

    My main concern is what the number of concurrent client connections (in a single instance) iMQ can handle? This also depends on Hardware/Software configuration, JVM version (if it pure Java implementation), etc. But it also depends on Vendor implemen