Error when trying to controll mp3 player with webService

Hi
I have a system to controll some things in my house, and one of them is my soundsystem. I have a tablet that communicates with an server that do the acctual work.
I found an mp3 player online with the source-code, and I want to controll it using webservices from the client. I stript it an added it to my system. I just want to have buttons on the client, and then the server to do the actual work.
If I don't use WS, just make an object of the player, I can add music to it and play them.
If I do the exact same thing, but it's the WS that gives the commands on the server side I get an ex.
Unable to handle format: mpeglayer3, 22050.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 7000.0 frame rate, FrameSize=32768 bits
Failed to realize: com.sun.media.PlaybackEngine@12b51d4
Error: Unable to realize com.sun.media.PlaybackEngine@12b51d4
I have tryed asking google about the format, and i found somethin about that it hade problems finding the codec. I can se the codec in my JMF Regisrty.
I can find the "com.sun.media.PlaybackEngine" in the jmf.jar thats in my lib.
I have installed jmf 2.1.1e.
Server and client are run from the same pc.
I have tryed from diferent pc, but it dident work.
Anyone?

Glypher wrote:
I have tryed to run it without using web service, and it works perfectHuhh. I actually asked that question, positive that you would reply that it also failed in the desktop app. That is very odd.
Maby the best thing is to move it yes. Can you do it, or tell me how I can do i.I am not so sure now, that that is the best move, since it seems the web service is playing some part in the problem.
I'll leave it to your decision though. If you want it moved, surf on over to the [latest Report Abuse thread|http://forums.sun.com/thread.jspa?threadID=5422989&tstart=0] and ask the mods to move the thread to JMF. Typically that thread is for reporting abuse, but it is also good for getting threads moved, since the community moderators keep an eye on it.

Similar Messages

  • I keep getting this error when trying to backup time capsule with time machine. The backup disk image "/Volumes/Data-1/Dan's iMac.sparsebundle" is already in use.

    I keep getting this error when trying to backup time capsule with time machine. The backup disk image “/Volumes/Data-1/Dan’s iMac.sparsebundle” is already in use.

    Make sure that no other Macs are backing up at the time.
    Pull the power cable from the back of the Time Capsule
    Count to ten
    Plug the power cable back into the back of the Tme Capsule
    Wait a few minutes, then try a backup again.

  • I get an error when trying to import MP3 files in iTunes?

    When I try to import mp3 files into iTunes (version 6), I get an error message of:
    The file "song file name" can not be imported An unknown error has occurred (-50).
    I have already imported these files into iTnes on my old computer, but run into this problem with my new laptop. I downloaded a new version of iTunes just like I installed all my new programs on this new laptop.
    For some reason, I run into this problem when trying to import any mp3 files (as mentioned, even mp3 files that I successfully imported into iTunes previously).
    (I've tried a complete removal and re-install, but that didn't help)
    Anyone know why I'm getting this error message and how to correct things?
    Thanks in advance for any help !!!

    C:\DOCUME~1\Mark\LOCALS~1\Temp\WERe357.dir00\iTunes.exe.mdmp
    C:\DOCUME~1\Mark\LOCALS~1\Temp\WERe357.dir00\appcompat.txt
    those are the files that are sent as an error report... i dont know what the problem is! this is starting to get me mad! I need my music! some1 help plz.
    I cant load that one folder, what could be the problem? I've loaded another folder similar to this one but it was alot smaller and everything worked out fine, but for my big one its messing up.

  • MSI Fail error when trying to  unininstall VMWare Player 7.

    I downloaded the trial version of VMWare Workstation 11.  When I do the install it tries to uninstall VMWare Player 7.  The uninstall fails with the cryptic error message 'MSI Fail.'
    I've found various articles about this around the web and even tried a few 'solutions' to no avail.  Is there a sure fire way to uninstall the Player so I can try the Workstation?

    I already found the link you posted and followed it but the player is still on my system so VMW still wants to uninstall it and I get the msi fail error.  I also tried the manual removal and that didn't work.  In fact I wound up breaking some non vmware stuff.  Thank heaven for disk images.
    Also, the article mentions the file VMware_Install_Cleaner.zip but I can't seem to find it.  Is this something that might work to clear up the problem?  Too bad I can't just reinstall the player but there is no option for that.  I tried a repair but that was a no go too.  Also tried deleting files from my Temp folder which some folks claim worked for them.
    Also ran the MSI fixit program from MS and while it said it fixed some things about the Player I still couldn't install VMW.

  • Always getting errors when trying to control YOKOGAWA 7651 power supply on Labwindows/CVI

    Hi,
    I'm trying to set the voltage on the YOKOGAWA 7651 power supply through labwindows/cvi. I've set up a numeric slide on my userinterface with callback function "yoko7651dcvolts" and constant name "YOKO7651DCVOLTS".
    I always get this error when I run my program:
    "FATAL RUN-TIME ERROR: "DcSource.c", line 53, col 65, thread id 0x00001F3C: Invalid argument type: found 'pointer to double', expected 'pointer to int'."
    This error points to the third argument of the GetCtrlVal function below. The program/compiler wants me pass the variable "yoko1volts" as integer, but I want to (and should) be able to set voltages as floating numbers.
    Plus, even when I declare "yoko1volts" as integer, it stills doesn't work. All I get is zero, zero, and zero...on the power supply meter everytime I press the numeric slide.
    This is the section of the C code that is problemic:
    int CVICALLBACK yoko7651dcvolts (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    double yoko1volts;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651DCVOLTS, &yoko1volts); // to read the values entered on the numerical meter on the user interface
    yk7651_set_volts (yoko76511Panel, yoko1volts); // set the entered values as voltage on the instrument
    break;
    return 0;
    This is the related h-file:
    #define YOKO7651_1 4
    #define YOKO7651_1_YOKO7651SWITCH 2 /* control type: binary, callback function: yoko7651switch */
    #define YOKO7651_1_YOKO7651DCVOLTS 3 /* control type: scale, callback function: yoko7651dcvolts */
    Please help, how can I fix this issue?
    All the drivers (including the YOKOGAWA 7651 power supply) are properly installed and mounted. As a matter of fact, I can successfully turn the power supply on and off with the code below:
    int CVICALLBACK yoko7651switch (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    int yoko7651switchstate;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651SWITCH, &yoko7651switchstate);
    SetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651SWITCH, !yoko7651switchstate);
    yk7651_output (yoko76511Panel, !yoko7651switchstate);
    break;
    return 0;
    It's just setting the voltage on the power supply that is very problematic. Any help is appreciated...Thanks.
    Solved!
    Go to Solution.

    I second Al opinion of a disconnection between the UIR and the variable that holds the panel handle.
    As a side note, I noted that the problematic line is reading the value of the controll whose callback is executed:
    #define YOKO7651_1_YOKO7651DCVOLTS 3 /* control type: scale, callback function: yoko7651dcvolts */
    int CVICALLBACK yoko7651dcvolts (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    double yoko1volts;
    switch (event)
    case EVENT_COMMIT:
    GetCtrlVal (yoko76511Panel, YOKO7651_1_YOKO7651DCVOLTS, &yoko1volts); // to read the values entered on the numerical meter on the user interface
    yk7651_set_volts (yoko76511Panel, yoko1volts); // set the entered values as voltage on the instrument
    break;
    return 0;
    In a situation like this, I would try using GetCtrlVal (panel, control, &yoko1volts); instead, that should get rid of all problems in panel handle / control ID.
    Despite this solution is working, in any case I would deep into the problem as an incorrect panel handle can lead to erratical behaviour in other places of the program.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • IMovie error when trying to export-file open with write privilege

    When trying to export an iMovie, after about two hours, I got a message - error - a file is open with write privilege.  Any idea what might be causing this error or what the error message means?

    Ask the users in the iMovie forum: https://discussions.apple.com/community/ilife/imovie?categoryID=141

  • Java error when trying to access EAS Console with a URL.

    Hi all,
    Trying to access EAS Console with the URL but getting an JAVA error
    And it asks
    Block potentially unsafe components from being run?(recommended)
    Yes No
    Thanks

    What is your Java and EAS versions? Have you checked the supported platform matrices to confirm you have compatible versions?
    http://www.oracle.com/technetwork/middleware/bi-foundation/hyperion-supported-platforms-085957.html
    Cheers,
    Mehmet

  • Receiving "internal error" when trying to burn mp3 disc from playlist

    I'm trying to burn an mp3 disc from a playlist that I've created. Unfortunately, I keep getting an error. I'm currently running iTunes 11.0.2 on my iMac which is currently running 10.8.3.  I've done this many times before, and this is the first that I've had this problem. Here's the error I keep getting:
    The attempt to burn a disc failed. An internal error occured.
    If you want to retry the current failed burn, click on Retry. If you want to go to the next disc burn, click on Next. Otherwise click on Cancel.
    Here's how it goes down:
    I've created a very long playlist which will require the use of multiple discs.
    I right-click on the playlist and select to burn the playlist to disc.
    I then get the usual burn settings pop-up menu where I select the "MP3 CD" format with a preferred speed of "Maximum Possible"
    Note: Since experiencing this error, I have tried varried speeds ranging from 8x to 24x; I still get the error.
    Note Also: I have tried selecting "Audio CD" instead, and the playlist will burn and the error does not appear. This is not an option I want to go with, however, because of the length of the playlist — it would take, like, 25 discs...
    For a moment iTunes will read the disc, then ask permission for the playlist to be split across multiple discs. I say "ok".
    At this point, iTunes will say that it is initiallizing for about a split second then immediately say it's finalizing and spit out the disc. This is when the error pops up.If I select to "Retry", it doesn't retry to burn; it just saves a .txt file to my desktop that is  a copy of the error message. There's no error code/number or anything, though - just the exact same message. "Cancel" and "Next" seem to behave correctly, though.
    I have tried repairing disk permissions and restarting my computer. I've also tried using different brands of CDs: Memorex CD-R and Innovera CD-R. The error persists.
    Any help on this issue would be greatly appreciated. Thanks in advance!

    Some people (for reasons I don't know) have problems with Dynamic Link
    What happens if you export MPEG2-DVD from Premiere Pro... import the 2 files (audio and video) into Encore... and do ALL of your authoring work in Encore?

  • Error when trying to download Flash Player Update for Firefox

    Hello,
    I am having a issue while trying to download 11,5,502,135 for Firefox on the destop.. keep getting the errror message (have the same issue while trying to use IE) .. I currently have version 1,5,502,110 on the desktop and works just fine.. been having this issue for some time trying to download 135..have tried everything that Adobe suggested but to no avail... I do have 11,5,502,135 downloaded on the laptop, same company, same system, same browser, same setup...the only difference the desktop has Norton, the laptop has AVG... but Norton don't seem to have a issue with the update...
    Any suggestions?...
    Larry Woller

    Hello,
    I was getting a script error..I had been to the website that you had posted and tried several suggestions.. this time I went to the site and used the " Flash Player Plugin (For all other browsers)" and for the first time I got a popup saying something to the effect "will finish installation when Mozilla closes).. in the past I would leave the website to access the Flash player download and the Firefox download window open and apparently the player installer and Firefox were  having a conflict.. I closed Firefox and the download window and the download continued and was successful.. will have to add that to my notes, make sure Mozilla is closed once I get the Save window before downloading Flasy Player...
    Thanks for your prompt reply and help...
    Larry Woller

  • Script Error when trying to install Flash Player

    I am running Windows XP and used to have Flash Player installed.  Don't know what happened, but I have to install again.  The error I am getting coming during download:
    "Internet Explorer Script Error"
    and the error message says " 'ActionLaunchAdobe' is undefined"
    Then it has URL: http://127.0.0.1:4383/app/_js/adobe.js
    Any suggestions?
    Thanks.

    when i click in the download area on my mac in safari, i double click the downloaded flash, when i do this i receive the previous message, i'm not trying to open it with reader, i am just not sure how to avoid it.

  • Got errors when trying to open word document with Office Web App Server and customized WOPI host

    I am configuring the Office Web App Server with our ASP.NET MVC WOPI host based on this example. https://code.msdn.microsoft.com/office/Building-an-Office-Web-f98650d6. While both the OWA server and WOPI server has been set up and I can use Excel and PowerPoint
    app to open and edit xls and ppt file now, there are problems opening word documents no matter I enable or disable the editing function of OWA server.
    When I open a word document while enabling editing I got this error:
    If I disable editing I got this message:
    I have tried several file so I thought it is not the files' problem. Also I didn't find any exception in the log of OWA server. 

    Hi Gary Jiang,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing issues about
    apps for Office.
    Based on the description, it seems that you got an issue when you deploy the code sample. If I understood clearly, I suggest that you contact the author of the code sample from the "Q and A" tab.
    Also if you have the question about WOPI, I suggest that you get more effective response from
    Office
    Protocols forum.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error when trying to create a worksheet with 4 columns

    Dear All,
    I was trying to create a worksheet in tabluar formate base on a table (folder) that has 3 columns (items) .. the worksheet was created successfully .. but when saved it , then closed and tried to reopen it i got the following error
    ORA-03120: two-task conversion routine: integer overflow
    when i tried to add the columns one by one to the sheet .. it worked till 3 columns .. when i tried to add the fourth one i got that error agian ...
    I changed the combinations of the columns ... to make sure that there's no problem in the formate of one of them ..
    it worked with any combination of 3 columns
    can you help me to solve this problem
    best of regards,
    Shaimaa

    Cryptic message!
    I saw a definition online for this that said:
    Cause:     An integer value in an internal Oracle structure overflowed when being sent or received over a heterogeneous connection. This can happen when an invalid buffer length or too great a row count is specified. It usually indicates a bug in the user application.
    Action:     Check parameters to Oracle calls. If the problem recurs, reduce all integer parameters, column values not included, to less than 32767.
    Which seems even more cryptic.
    Then checking on another forum with this error, I saw:
    Q. I am getting the above error trying to run a free hand SQL report on two tables that are materialised views (database links) on our reporting database from our production database. Now the bizarre thing with this is that the report does not work on my computer or our production server, however one of my team mates can run the report.
    Can anybody explain why this error might occur? I am able to run free hand SQL on any other table. The Oracle error talks about a CLOB, but if that were the case, why would it work on a different machine?
    A1. Check if you have the same version Oracle client on the three machines. What happens if you run the query through a different tool like TOAD or SQL*Plus ?
    Final A. The problem was due to the different versions of Oracle Client. I was running 9.2 on my PC, I had 9.2 on the server and it wouldn't work. My collegues were running 9.0.1 and had no issues, once I changed back to this version on both my PC and the Server, the problem was gone.
    I think the problem was something to do with BO 6.5.1 as the report was developed in 6.1.a and worked fine, as soon as we upgraded the porblem occured.
    If you are not using CLOB's, I would suggest going down the track of checking your Oracle ver.
    So, with all that info, I'd check:
    1. are you using Disco Desktop and getting this?
    2. Materialized views?
    3. Links to another database in your folder?
    4. Do you have a different Oracle client that others? Can others run the same report and all okay?
    5. Can you run the same query in TOAD, SQL*Nav, SQL*Dev, etc?
    Russ

  • IDoc with error when trying to update two materials with FM: CSAP_MAT_BOM_MAINTAIN.

    Hi
    In my current project I am facing the below issue.
    In client MDM team is creating the master data. The BOM master data also creating through MDM only. The function module used is  CSAP_MAT_BOM_MAINTAIN. When user trying to update the two extra BOM line items getting an error " Error while saving the BOM."
    In SLG1 transaction we observed that the IDOC is trying to change the header level data. After analyzing  I got some conclusion that
    while BOM creation header level material and all components are created with change number reference. When the user trying to update two extra line items with new change number system giving error msg as idoc trying to change header level data. As my knowledge with  FM:CSAP_MAT_BOM_MAINTAIN no changes possible for header. I came to conclusion as header is updated with a change number while creation and when we changing second time with new change number, system not able to replace the old change number with new change number.
    To correct this IDOC what steps i can perform? Is it possible to reprocess this IDOC by changing any field values like MSGFN.
    Please suggest what solution we can provide to reprocess this IDOC.
    Regards
    Kesava

    Hi Rupesh
    Thanks for the replay.
    Here the user created the BOM with the same FM:CSAP_MAT_BOM_MAINTAIN  but he created with change number refernce. This change number is updated in header. Later he wants to add some extra components to this BOM with the same FM:CSAP_MAT_BOM_MAINTAIN and he entered new change number second time to do the change. Then system giving an error status for this IDOC.Then if we check in SLG1 the error message is we are trying to change header fields which is not possible " The BOM header can only be displayed, Your entries were ingored". How can we reprocess this IDOC.
    Regards
    Kesava

  • NSX Lab on Workstation 11 - Nested ESX crashes with unrecoverable error when trying to test VTEP connectivity with MTU 1500

    I'm trying to install and configure NSX 6.1.2 / ESX 5.5 in a nested environment using VMware Workstation lastest bits "VMware-workstation-full-11.1.0-2496824"
    I've configured the MTU on the virtual adapter (VMNet1) used by the VXLAN transport network to 9000 bytes.
    C:\Users\admin>netsh int ipv4 show int
    Idx     Met         MTU          State                Name
      1          50  4294967295  connected     Loopback Pseudo-Interface 1
    19          25        1500  connected     Wireless Network Connection 4
    16          40        1500  disconnected  Bluetooth Network Connection
    11           5        1500  disconnected  Local Area Connection
    20           5        1500  disconnected  Wireless Network Connection 5
    18           5        1400  disconnected  Local Area Connection* 11
    31          20        9000  connected     VMware Network Adapter VMnet1
    when I test VTEP connectivity between ESXi nested host with MTU > 1500, using the following command,
    ping ++netstack=vxlan -d -s 1572 -I vmk2 192.168.192.102
    the ESXi crashes with the following error
    2015-05-21T11:20:47.180+02:00| vcpu-1| I120: Coredump encountered overflow 10218:10218 (2172 duplicates)
    2015-05-21T11:20:48.969+02:00| vcpu-1| I120: Backtrace:
    2015-05-21T11:20:48.970+02:00| vcpu-1| I120: backtrace[00] frame 0x0881eb38 IP 0x13f0820de params 0 0xa6 0x64e 0x312d75706376 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x000310de]
    2015-05-21T11:20:48.971+02:00| vcpu-1| I120: backtrace[01] frame 0x0881f460 IP 0x13f068129 params 0x13f78dc30 0x13f890928 0x2ce 0x3fff ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x00017129]
    2015-05-21T11:20:48.971+02:00| vcpu-1| I120: backtrace[02] frame 0x0881f8b0 IP 0x13f4498bc params 0x13fb8e840 0x3a63ec0 0x13f050000 0x13fb8e840 opus_decoder_destroy + 0x1dec0c [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x003f88bc]
    2015-05-21T11:20:48.972+02:00| vcpu-1| I120: backtrace[03] frame 0x0881f8e0 IP 0x13f6809a2 params 0x161 0x35a59e0 0 0xa36333237 opus_repacketizer_get_nb_frames + 0x163fc2 [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x0062f9a2]
    2015-05-21T11:20:48.972+02:00| vcpu-1| I120: backtrace[04] frame 0x0881f920 IP 0x13f6b8229 params 0x258 0 0 0 opus_repacketizer_get_nb_frames + 0x19b849 [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x00667229]
    2015-05-21T11:20:48.973+02:00| vcpu-1| I120: backtrace[05] frame 0x0881faa0 IP 0x13f680d3c params 0x13f809d60 0x13f7c7374 0x5 0x13fd65da0 opus_repacketizer_get_nb_frames + 0x16435c [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x0062fd3c]
    2015-05-21T11:20:48.973+02:00| vcpu-1| I120: backtrace[06] frame 0x0881fb00 IP 0x13f20c736 params 0 0 0 0 ??? [C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe base 0x13f050000 0x0001:0x001bb736]
    2015-05-21T11:20:48.976+02:00| vcpu-1| I120: backtrace[07] frame 0x0881fb08 IP 0x76ee59cd params 0 0 0 0 BaseThreadInitThunk + 0x000d [C:\Windows\system32\kernel32.dll base 0x76ed0000 0x0001:0x000149cd]
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: backtrace[08] frame 0x0881fb38 IP 0x7701b891 params 0 0 0 0 RtlUserThreadStart + 0x0021 [C:\Windows\SYSTEM32\ntdll.dll base 0x76ff0000 0x0001:0x0002a891]
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: Msg_Post: Error
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: [msg.log.error.unrecoverable] VMware Workstation unrecoverable error: (vcpu-1)
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120+ VERIFY d:/build/ob/bora-2496824/bora/devices/vmxnet3/vmxnet3_hosted.c:718
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: [msg.panic.haveLog] A log file is available in "X:\vCACupdate\Capricornus\vmware.log". 
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: [msg.panic.requestSupport.withoutLog] You can request support. 
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: [msg.panic.requestSupport.vmSupport.windowsOrLinux]
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120+ To collect data to submit to VMware support, choose "Collect Support Data" from the Help menu.
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120+ You can also run the "vm-support" script in the Workstation folder directly.
    2015-05-21T11:20:48.980+02:00| vcpu-1| I120: [msg.panic.response] We will respond on the basis of your support entitlement.
    Any help is appreciated.

    One detail:
    I use Vcloud from my work, so I changed iPv4 addresses of machines. For example, DC1 192.168.2.101,
    Internet names are 192.169.2.101 and so on.
    I mean it is fine that IP addresses differ from mentioned in guide

  • XML error when trying to run any report with add/remove programs - worked briefly after SP1 upgrade - no longer works

    I applied SP1 in hopes of fixing the reporting bug as discussed
    here and it did work - for a day or so. Now, I am getting the error again. Not sure what to do. Please advise.
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    There is an error in XML document (1, 301094).
    '', hexadecimal value 0x1E, is an invalid character. Line 1, position 301094. 
    I also get the "report builder click-once application does not exist on the server" - to which I had applied the registry key
    [HKLM\SOFTWARE\Wow6432Node\Microsoft\ConfigMgr10\AdminUI\Reporting]
    "ReportBuilderApplicationManifestName"="ReportBuilder_3_0_0_0.application"
    SQL
    and SCCM are on the same server - which I can get to report server web but cannot create reports from SCCM console.
    Thanks

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    This problem was solved in SP1 if you are still having this problem after applying SP1, then you need to contact CSS directly for support, they will work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

Maybe you are looking for

  • How can I access a network harddisk from a OS9 Computer?

    I have an Airport Extreme Base Station and a hard disk connected to it. I can access the disk from all MacOS X computers, but I want to use it primarily with my TAM, running MacOS 9.2.2. It is directly connected via network cable to the base station.

  • Issues with images in Yosemite (Can't load images correctly)

    I have been experiencing a weird behavior in Yosemite (10.10.1), related to opening images of any kind in most of my programs in my MacBook pro 15" (Late 2011). Images would not load correctly, showing a bizarre pattern of black stripes (example imag

  • DB Adapter does not show selectable tables

    HI guys, in the wizard I am unable to see the tables which I need to use for database adapter. But I do have access to those tables, and able to select from them in SQL worksheet from with in Jdev. I dont own the tables, but my user id have readable

  • In serious need of help. Can't uninstall Coldfusion 8

    I installed coldfusion 8. I set myself up with an administrator account. I'm on an Acer windows vista 32 bit computer. All the updates for windows are installed. When I try to uninstall CF8 it tells me that I don't have enough access....I'M THE ADMIN

  • Constantly freezing/crashing...All of a sudden

    Windows 7 Ultimate 64-bit Nvidia GeForce GTS 250 Latest Flash player. The other day, I was promted by Adobe to upgrade my flash player. After that, llife has been hell. It crashes every single time in Firefox or any browser. Honestly, I have tried ev