Adobe Drive not connecting to hello world sample launched via Eclipse

I'm trying to get the hello world sample running with Drive SDK 5. I got:
Adobe Drive 5.0.1
AdobeDriveSDK-5.0.0.398770.zip
latest Java JRE 1.6
Eclipes 4.3.1 (Kepler SR 1)
Windows 7 64bit
I configured the hello world project as described in the getting started guide. I double checked that AD4ServiceManager.exe is not running. After starting the project in Eclipse and waiting about 15 seconds, all bundles are active:
osgi> ss
Framework is launched.
id     State       Bundle
0     ACTIVE      org.eclipse.osgi_3.5.0.v20090520
1     ACTIVE      com.adobe.csi.ncomm_2.0.0.28
2     ACTIVE      com.adobe.drive.core_2.0.0.28
3     ACTIVE      org.eclipse.equinox.cm_1.0.100.v20090520-1800
4     ACTIVE      org.eclipse.equinox.preferences_3.2.300.v20090520-1800
5     ACTIVE      org.eclipse.equinox.app_1.2.0.v20090520-1800
6     ACTIVE      com.adobe.drive.biz.filesystem_2.0.0.28
7     ACTIVE      javax.servlet_2.5.0.v200806031605
8     ACTIVE      org.eclipse.equinox.launcher_1.0.200.v20090520
9     ACTIVE      com.adobe.drive.manager.executor_1.0.0.28
10     ACTIVE      com.adobe.drive.connector.cmis_2.0.0.28
11     ACTIVE      com.adobe.drive.ui_2.0.0.28
                 Fragments=27
12     ACTIVE      org.hsqldb_2.2.9
13     ACTIVE      com.adobe.drive.model.synchronization_2.0.0.28
14     ACTIVE      com.adobe.drive.data.persistence.api_2.0.0.28
15     ACTIVE      org.eclipse.equinox.ds_1.1.0.v20090601
16     ACTIVE      org.eclipse.update.configurator_3.3.0.v20090312
17     ACTIVE      org.hibernate_3.2.5
18     ACTIVE      com.adobe.csi.core_2.0.0.28
19     ACTIVE      com.adobe.drive.connector.service_2.0.0.28
20     ACTIVE      com.adobe.drive.model_2.0.0.28
21     ACTIVE      com.adobe.drive.data.provider_2.0.0.28
22     ACTIVE      com.adobe.csi.auth.keystore_2.0.0.28
23     ACTIVE      com.adobe.drive.connector.api_2.0.0.28
24     ACTIVE      com.adobe.drive.data.persistence.hsqldb_2.0.0.28
25     ACTIVE      com.adobe.drive.data.cache_2.0.0.28
26     ACTIVE      org.apache.commons.codec_1.0.0.28
27     RESOLVED    com.adobe.drive.ui.scripting_2.0.0.28
                 Master=11
28     ACTIVE      org.apache.commons.net_1.4.1
29     ACTIVE      sample.helloworld_2.0.0
30     ACTIVE      com.adobe.csi.bootstrap_2.0.0.28
31     ACTIVE      com.adobe.drive.data.manager_2.0.0.28
32     ACTIVE      org.apache.commons.logging_1.0.4
33     ACTIVE      com.adobe.versioncue.nativecomm_4.0.1.28
34     ACTIVE      com.adobe.drive.biz.versioncue.api_2.0.0.28
35     ACTIVE      org.eclipse.equinox.common_3.5.0.v20090520-1800
36     ACTIVE      com.adobe.csi.pipes_2.0.0
37     ACTIVE      com.adobe.drive.data.model_2.0.0.28
38     ACTIVE      com.adobe.drive.data.persistence_2.0.0.28
39     ACTIVE      com.adobe.drive.processinfo_2.0.0.28
40     ACTIVE      com.adobe.drive.connector.cmis.client_2.0.0.28
41     ACTIVE      com.adobe.drive.ncomm.filesystem_2.0.0.28
42     ACTIVE      org.eclipse.equinox.registry_3.4.100.v20090520-1800
43     ACTIVE      org.apache.commons.httpclient_3.1.0
44     ACTIVE      com.adobe.drive.vcdetector_2.0.0
45     ACTIVE      com.adobe.drive.ncomm.versioncue_2.0.0.28
46     ACTIVE      com.adobe.drive.connector.cqdam_4.0.0.28
47     ACTIVE      com.adobe.csi.core.preferences_2.0.0.28
48     ACTIVE      org.eclipse.equinox.util_1.0.100.v20090520-1800
49     ACTIVE      com.adobe.csi.utils_2.0.0.28
50     ACTIVE      com.adobe.drive.biz.automount_2.0.0.28
51     ACTIVE      com.adobe.csi.core.logging_2.0.0.28
52     ACTIVE      com.adobe.drive.manager.interests_2.0.0.28
53     ACTIVE      org.apache.log4j_1.2.15
54     ACTIVE      com.adobe.drive.ifs_2.0.0.28
55     ACTIVE      com.adobe.drive.core.jobs_2.0.0.28
56     ACTIVE      org.eclipse.osgi.services_3.2.0.v20090520-1800
57     ACTIVE      com.adobe.drive.biz.versioncue_2.0.0.28
58     ACTIVE      com.adobe.csi.auth_2.0.0.28
Also, the output of csstat looks fine:
osgi> csstat
Registered connector factories (schema : reference):
cmis : {org.osgi.service.component.ComponentFactory}={component.factory=com.adobe.drive.connector.handlerfactory, component.name=com.adobe.drive.connector.cmis#cmis, service.id=48}
cq : {org.osgi.service.component.ComponentFactory}={component.factory=com.adobe.drive.connector.handlerfactory, component.name=cq#cq, service.id=75}
helloworld : {org.osgi.service.component.ComponentFactory}={component.factory=com.adobe.drive.connector.handlerfactory, component.name=sample.helloworld#helloworld, service.id=70}
Instantiated connector factories (uuid : factory):
Afterwards, I start Adobe Drive (32bit version). The UI hangs with the message "Adobe Drive is starting. Please wait.". From task manager I can see that not just Adobe Drive was started, but also AD4ServiceManager.exe. I guess, this should not happen, because Adobe Drive should discover the one launched via Eclipse.
So what's going wrong here? How does Adobe Drive discover the one launched via Eclipse? What could block discovery?
Here more details in case that helps debugging the problem. MANIFEST.MF:
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: HelloWorld Plug-in
Bundle-SymbolicName: sample.helloworld
Bundle-Version: 2.0.0
Bundle-Vendor: Adobe Systems
Adobe-AutoStart: true
Require-Bundle: com.adobe.drive.connector.api,
com.adobe.drive.core,
com.adobe.drive.model,
com.adobe.csi.utils
Service-Component: OSGI-INF/HelloWorldHandlerFactory.xml
build.properties
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
               OSGI-INF/
HelloWorldHandlerFactory.xml:
<?xml version="1.0"?>
     <component name="sample.helloworld#helloworld"
     factory="com.adobe.drive.connector.handlerfactory">
     <implementation class="sample.helloworld.HelloWorldHandlerFactory"/>
</component>
Here the Eclipse run configuration settings:

Wow, this seems to help even though it is still a bit shaky. Here the steps I have to do to get it working:
manually launch 64bit version of AD4ServiceManager.exe with parameter -launchedbydrive
launch Eclipse project and wait till ss shows everything as registered (much faster now)
start 64bit version of Drive -> my adapter doesn't show up
shutdown drive
start 64bit version of Drive again -> my adapter now shows up and works as expected
I find a few things confusing here:
In Eclipse, should I configure the 32bit or 64bit version of AD4ServiceManager as plugin execution environment? Currently, I'm using the 32bit version.
Why isn't the step of manually launching AD4ServiceManager.exe not mentioned in the getting started guide?
I will reboot my machine to see if it is still working or just some special sun radiation making it work currently :-)

Similar Messages

  • I have my Time Machine on an external drive (not connected to Airport Extreme) and I have an external HD attached to airport extreme. Is it possible to have Time Machine backUp computer HD AND external HD connected to Airport Extreme. How?

    I have my Time Machine on an external drive (not connected to Airport Extreme) and I have an external HD attached to airport extreme. Is it possible to have Time Machine backUp computer HD AND external HD connected to Airport Extreme. How?

    Is it possible to have Time Machine backUp computer HD AND external HD connected to Airport Extreme.
    Sorry, but no.
    Time Machine will backup your Mac, but not the hard drive attached to the AirPort Extreme.
    Time Machine will back up a hard drive only if it is attached directly to your Mac via USB or FireWire.

  • Hp recovery on laptop gives error message "destination drive not connected"

    I'm trying to carry out factory reset on my 2012 G6 laptop product code B2Y48EA*ABU  serial no. [Personal Information Removed] to factory settings using set of 5 recovery discs
    I followed the procedure  shown here  (although the screen messages are slightly different)
    http://support.hp.com/gb-en/document/c01867418
    I started the laptop with disc 1 in the dvd drive and the hp program was displayed. I selected "factory reset" and followed promts
    When the 4 th disc is in dvd drive and the process is about53% compltete it stops with the error message 
    "destination drive not connected"
    and fails
    Earlier the recovery manager reported that the partion on the hard drive had been re-forrmatted so the drive was connected then!
    All help and suggestions appreciated

    Hi there @Teka,
    I understand that you are having trouble with a System Recovery to a factory image using recovery disks. I am happy to help you with this.
    Are those five disks a set that you created using the recovery manager, or is it a set you ordered from HP?
    Is there any sign of damage, scratches or smudges on the disk it fails on?
    Have you tried cleaning the DVD drive?
    Also take a look through these pages, in particular the troubleshooting page, and see if anything there is of use.
    Performing an HP System Recovery (Windows 7)
    Troubleshooting HP System Recovery Problems (Windows 7)
    Let me know how it goes for you.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • Since upgrading, both our wireless printers are still visible, but OSX will not connect with them.  Both work via connecting from other sources via the same wireless router (airport).  What do I need to do to get my printing/scanning working again?

    Since upgrading, both our wireless printers are still visible, but OSX will not connect with them.  Both work via connecting from other sources via the same wireless router (airport).  What do I need to do to get my printing/scanning working again?

    First thing to try is reset Printing System:
    OS X Mavericks: Reset the printing system
    Next would be reset the router (power off 15 secs then back on). And, 2 minutes later, reset the printers 1 by 1.

  • GX Error (GX2GX) for bank or hello world sample applications

    Hi,
    I installed IAS 6.5 on Win 2000 professional. I tested my installation by accessing the fortune sample application. Yes, it works fine. However, when I deployed the Hello World or Bank sample application, I keep seeing this error:
    "GX Error (GX2GX)
    socket result code missing!!!".
    I have ensure that both the applications were deployed correctly. The deployment tool did not report any error. I am also able to see the 2 applications from the IAS administration tool. I then went to the HTTPAPI subkey in the IAS registry and set the DebugMode to 5. I saw the following message
    [16/May/2003 18:42:01:3] info: NSAPICLI-009: plugin reqexit: 0s+.97s. (1421580416)
    [16/May/2003 18:42:38:0] info: NSAPICLI-012: plugin reqstart, tickct: 1553096666
    [16/May/2003 18:42:38:0] info: NSAPICLI-009: plugin reqexit: 0s+.464s. (1553113298)
    [16/May/2003 18:42:38:6] info: NSAPICLI-012: plugin reqstart, tickct: 1555213509
    [16/May/2003 18:42:38:6] info: NSAPICLI-009: plugin reqexit: 0s+.421s. (1555228604)
    [16/May/2003 18:43:18:6] info: NSAPICLI-012: plugin reqstart, tickct: 1698313776
    [16/May/2003 18:43:18:6] warning: UTIL-013: GXGUID: NameTrans lookup failed (ApplogicServlet System_StaticServlet)
    [16/May/2003 18:43:18:6] warning: NSAPICLI-011: socket result code missing!!!
    Any idea what is wrong??? Please help... Thank you in advance for your help.

    If you're trying to run the Ant scripts, I think I know how you feel.  Here's what I do to seed new test users into a new installation:
    1. Download the workflow-001-DemoCommunitySeedApp.zip File  -> Go to http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/obpm/11g/r1/install/installing_obpm11g.htm#s6. ->  Click Demo Community Seed Application.
    2. Unzip the zip file
    Unzip the contents of the workflow-001-DemoCommunitySeedApp.zip file into a directory. (For these instructions, I will assume you unzipped it into a C:\stageFMW\democommunity directory.)
    3. Deploy the Associated EAR File Deploy
    Deploy the SOATestDemoApp.ear EAR file located in your C:\stageFMW\democommunity\DemoCommunitySeedApp directory to your Managed Server. This is done by:
    Loggin into the WebLogic Administration Console (e.g., http://<your machine>:<your port number>/console)
    In the upper left corner under Domain Structure click Deployments
    Click the "Install" button
    Upload the EAR file by clicking the upload your file link.
    Select the SOATestDemoApp.ear file and click Next -> Next
    Select Install this deployment as an application and click Next
    Check the correct checkbox to deploy the application to the Admin (if there is no SOA Managed Server) or the SOA Managed Server (if it exists)  - typically this is just "soa_server1"
    Once deployed, stop and restart the Admin and Managed Servers
    4. Run the Servlet to Seed the Users
    Run the servlet by opening your browser to: (if you have a managed server) http://<yourmachinename>:8001/integration/SOADemoCommunity/DemoCommunitySeedServlet or (if you deployed it to the admin server) http://<yourmachinename>:7001/integration/SOADemoCommunity/DemoCommunitySeedServlet
    Select Seed Community and then click the Submit button.

  • Seagate external hard drive not connecting to Mac

    I plug in a Seagate GoFlex 500GB external hard drive into my PowerBook (specs at bottom of post). I go into Disk Utility to try to resize one of my partitions so I can back my Mac up. I click the final "Continue" button, and a few seconds later I get an error saying that the partition was not completed correctly and that the drive was removed. It was not. It shut itself off briefly (less than a second because I saw the light (normally always on) go out and come back on)!
    I disconnect my hard drive and plug it into a PC. I pull up Disk Management (Windows equivalent of DU) and I try to resize the volume. Not possible. Okay. But they both are read and I could open each one's folder. So I plug it into my Mac again and after several seconds of it not showing up, I hold it to my ear. First, it spins up. It clicks the whole time. Next, it gradually spins down while making four whines/beeps (inaudible unless you are holding the unit up to your ear), each seperated by 3/4 of a second. Then it spins up again and repeats. I now plug in another 640GB unit and it clicks rapidly (inaudible unless held to ear). Both drives are then plugged into the PC. In Disk Management they show up. I format one of the volumes on the 500GB drive (I realized I did not need the data) and I removed the volume's drive letter. But the drives do not show up on my Mac anymore. (The 500GB model used to!!!!!)
    One drive had a USB 3.0 adapter. One had a 2.0 adapter. I swap around the adapters and I achieve the same result. BTW, I also have a keyboard in the other USB port. It was there from the start.
    The 500GB drive is NOT corrupted. In fact, I used to use it for Time Machine. My TM data is still on that drive and I dare not erase it. The drive is not powered by an AC adapter, either.
    I don't want to go out and get another hard drive because I'm looking to sell my PB.
    What went wrong? How come it no longer connects? I can't have killed the drive becuase it reads on a PC.

    Solved the problem.
    First of all, it seemed that it would not connect the second time because I plugged in the drive to the USB port on the RIGHT side of the keyboard. It worked fine on the LEFT side USB port. Huh?
    Second of all, it shut off because of an issue with there not being enough power. (thanks a brody, the computer was underpowered, see below)
    My solution: My father had a card that you could put in a PC card slot that provided two more USB ports and a port for an AC power adapter. I couldn't find the adapter cord (it was DC-to-USB, likely not enough power) but I plugged in a Palm Pilot wall plug (making it the equivalent of a powered hub, thanks a brody again for the underpowered system solution) and it backed up like a charm.
    Thank you all for all your help!!!

  • SMB Network Drive not connecting

    I have an SMB NAS drive that connected fine in 10.4. However, with 10.5, on my MacBook Pro I can connect to it and can see the 2 volumes on it but can't do anything with them, and can't disconnect from it once connected. On an iMac G5 also upgraded to 10.5, it starts to connect and then locks up. I can connect to the NAS with FTP with no problem but not through sharing.

    Ok, I got it working at 3am last night, and I'm embarrassed to say how. Case sensitivity. My logins differ by the case of the first letter, so I used the syntax to add that and it worked. And I'd swear I did that already at some point, and/or when using the full mount syntax, so I don't know.
    The thing that now ticks me off is, why did this all work fine in Tiger??? I have a theory which I won't get to explore until after work - perhaps the Keychain corrupted? I wonder since whenever I try mounting via the go menu (that still doesn't work, by the way), it prefilled my long name as the user. Now, logically, when I first connected months ago, I would have added the capitalized username in that dialog the first time and been done, which is why I took it for granted that it just would work. So now I'm wondering if no matter what I type, it's ignoring me and trying to log in with my long name from the go menu or the network thing in the finder. There have been some rumblings about some people's Keychains getting borked a bit, so maybe...
    Strm, since you asked specifically, I was using (I hope this is right, I'm not on the Mac right now) mount_smbfs //User@machine/sharename /Volumes/whatever
    If I'm wrong, the @ is a colon. It's annoying that there are all these subtle differences in syntax Also, when I trashed the volume in the UI, it seemed to automatically delete the directory I mounted to, so you may have to keep recreating it. Anyhow, that brings up something else interesting (or not)...I'm not having the IP problem...I can refer to my PC by it's network name in the command line no problem. I think that may be further evidence that my problems, at least, aren't in the smb setup per se, but in the Finder interaction.
    Message was edited by: Jeffe16

  • Adobe AIR - Not connected to the internet

    I was sent anvery urgent, important document that when I tried to open it, said I needed Adobe Air to read it.  I downloaded the Air but when I tried to read my document, I got an error message that said i was not connected to the Internet. I was, of course!!!!!! I have tried everything including uninstalling and reinstalling several times but it still doesn't work and I get the same message. I am extrememly frustrated with being unable to find any support on the Adobe web site. This is the only post I see. i do not understand all the gobbledegook I see here. Anybody out there that can help? I need this document. Thanks

    Hi, ggmnat. Welcome to the Adobe user-to-user forums!
    The question you are asking about is related to Adobe AIR, but you have posted it in the Kuler forum.
    You may be able to use one of these documents to help you with your issue:
    http://kb2.adobe.com/cps/403/kb403150.html
    http://kb2.adobe.com/cps/902/cpsid_90205.html
    http://kb2.adobe.com/cps/902/cpsid_90202.html
    I would also recommend that you post your concern in the Adobe AIR forum: http://forums.adobe.com/community/air/installation

  • OsX Mavericks and Time Capsule Drive not connecting

    Hi,
    I upgraded to Mavericks today and I am now trying to access my 2 TB Time Capsule Hard Drive. I get an error that says: There was a Problem connecting to "XXXX Time Capsule" Server. I also use the Time Capsule for my wireless network, which is working fine. When I go into the AirPort Utility and try to see the Time Capsule info it constantly asks me to put in my password and once I do nothing happens, but the password request appears again in a few minutes. Both my iPhoto and iTunes libraries are stored on my Time Capsule as well as my Time Machine Backups. It has not been able to perform backups either, since it cannot connect to the disk. I am running a MacBook Pro 2010.
    Has anyone else had this problem thus far? Is there a workaround for this or an update I should do?
    Thanks!!

    Howdy seanay89,
    It sounds like you are unable to make a Time Machine backup becuse the disk is not connecting correctly. I want to recommend these links from the article named:
    Time Machine: Troubleshooting backup issues
    http://support.apple.com/kb/HT3275
    Red "i" message: "The backup volume could not be mounted" or "The backup volume could not be found." appears when using network volume or Time Capsule
    Time Capsule: Time Machine backups do not mount
    Mac OS X 10.5.3 or later: Time Machine - "Backup volume could not be mounted" after changing network volume's password
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Win 7 Pro not connecting to remote Win 7 pro via port 3389

    I have a new Dell XPS 8700 Win Pro 64 bit that will not connect to work machine of same specs, i.e, XPS 8700 Win 7 Pro. Ironically an old lap top running XP Pro
    will connect to work computer. I have a new Dell laptop with Win 8.1 pro that will not connect either.  I tried everything, uninstalled Symantec End point, shut off the Windows Firewall, did a complete
    hardware check via Dell Diagnostics, made sure network discovery was on as well as all remote services, turned on RD, changed every setting on the  RD dialog box, pinged the external IP and it timed out. None of the forums seem to have an answer and I
    am at wits end. I set up 15 machines at work under Win 7 for RD and all are working with Win 7 Pro.

    Hello Al Wayne,
    What is your current situation?
    Please share us more information for better analyzation as Frederik Long mentioned.
    Do you mean that the Dell XPS 8700 and laptop can’t RDP to work Windows 7 machines, but the Windows XP laptop can RDP to?
    Please take the following steps for troubleshooting:
    1. Share us the result of command ipconfig /all in the source and destination computers
    2. Check if we can ping the Windows 7 machines from the Dell XPS 8700 and laptop
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • IPad & iPad not connecting to iMac 21.5 Mavericks via USB!

    My iPad 2 and iPhone 5 are not connecting properly to my new iMac.  They have connected with USB cable without issue over the last couple of days, but today, as soon as they connect to the cable they both just flash on/off/on/off/on/off.  It is like the cable is dodgy or not pushed incorrectly!  However, I have tried several cables with both devices with no joy, and strangely my wife's iPhone 4S connects and stays connected without problem!
    Help!!

    Hello joc3554,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    USB and FireWire Quick Assist
    http://support.apple.com/kb/ht1151
    USB: Troubleshooting Error Messages
    http://support.apple.com/kb/TA25618
    Have a nice day,
    Mario

  • Server Admin not connecting to Leopard Server when accessing via VPN

    Hi everyone,
    Recently, as the title suggests, Server Admin (or Server Preferences, for that matter) would not connect to my remote server via VPN. I'm quite sure that the server is working nicely, as the users (both of them lovely young ladies with considerable charms, which makes on-site support quite interesting, if distracting) didn't call me to complain, and I can login via SSH with no problems.
    The server is a Mac Mini, connected to an Airport Extreme (gigabit N), which in turn connects to our ADSL modem, if that helps any.
    Now, I did tinker around a bit with the settings before this happened, so I think it's probably my fault (well, I started my "career" of administering this server a week ago, what do you expect), so I suppose I may have inadvertently limited access to a service required for Server Admin and Server Preferences to function.
    If anyone could tell me which services are absolutely necessary for Server Admin to function, or at least where to start looking, I'd be immensely grateful. I didn't yet go on site to try and wrestle the whole thing from there, as the travel costs are non-trivial, so I'd rather do it remotely, if at all possible.

    This is exactly the difficulty I am having with a 10.5.4 Intel xserve. I have established a VPN connection that connects me to my business LAN, and I know it has carried out the connection because there are a number of things I can access properly that are not available on the public internet. For instance, my LOM ports are restricted to my business LAN, and when I connect to the server via VPN I can access teh LOM ports and using server monitor. However, when I try to use Server Admin, nothing works. It won't connect. I too am confused. All traffic to the xserve is allowed via the business LAN. I thought all traffic was supposed to be routed to the VPN server when connected via a VPN. If this is the case, shouldn't Server Admin work? When I go on site and connect my computer directly to the business LAN, I have no difficulty using Server Admin.

  • Why is my Seagate portable hard drive not connecting with my LG TV?

    Can someone please help me figure out my problem. I recently purchased a Seagate Expansion Portable Hard Drive 2T, 3.0 USB compatible. As I own a MacBook Pro, I formatted it to fit my Mac instead of windows. I have finished downloading all my movies on to it and have connected it into my LG TV usb port but nothing happened. The little green light was on my hard drive indicating it was on and not a broken drive and the TV came up with a prompt saying 'USB Loading.." than immediately after it came up with "Problem on the USB Device. Please check USB". Yes I know the problem is that its formatted to Mac and there for the TV cannot read it. But I don't want to format it to windows for my MacBook doesn't read/write it, (If anyone can help me change that, that would be great!), (as I have another hard drive and it doesn't let me drag movies onto or out of it and only lets me see them,) and the hard drive will be rather useless, Plus I'm using Time Machine and I want to keep a BACK UP of my Mac on a partition of my hard drive (Which I have already done).
    Please & Thank You,
    Jaycee

    Templeton Peck:
    Well yes I know the problem to why it won't connect to my TV (the hard drive is Mac formatted) but I'm hoping someone would have a SOLUTION to the fact that I want it to stay in Mac format AND also somehow work with my tv (If thats even possible?..probably not) OR I can maybe change the format back AND hopefully can get it compatible with my Mac (Can that even be done too? Maybe download some prgram?) so I can still copy/past stuff off of it ---> Which by the way, I'm hopping also someone might have that solution too (Which I stated mildly up the top).
    Also, I posted this up for the reason of which I would expect the people who read these know a little something about Mac/Apple Products (not necessarily about Mac formating but anything else really), So this question is technically about my MacBook for which my hard drive is MAC FORMATTED and that maybe theres a way for my MacBook to copy/past from my old hard drive which ISN'T Mac formatted (In saying that, I can just reformat my new one back IF there is a way for me to still copy/paste stuff off of it onto my MacBook).
    So yea, I think this does has something to do with my Mac.
    - Jaycee

  • Federated Search Error - Hello World Sample

    Hello,
    I am trying to setup a Federated Search using the example HelloWorldSearch.war (java version). I am relatively new to the Portal Technology, but have extensive experience in web app development.
    I am getting an error when I try to run my Federated Search. "Error - Error executing search on Test Federated Search : Federated search of federated portal object 200 could not be executed. The federated portal may be configured incorrectly." Any Ideas?
    I have created 3 Portal Objects:
    1) Remote Server - this points to my Tomcat instance - http://msc_tesposito1:8080/
    2) Search Web Service - which points to app/service. I have specified "HelloWorldSearch/services/SearchProviderSoapBinding" and linked it to my Remote Server Instance.
    3) Federated Search - linked this to my Search Web Service.
    I then took the HelloWorldSearch-Java.war file from the samples provided, renamed it to HelloWorldSearch.war and dropped it in my Tomcat webapps directory. I can hit the web service just fine by executing "http://msc_tesposito1:8080/HelloWorldSearch/services/SearchProviderSoapBinding".
    Does anyone have any ideas as to what I might be able to do to get this working?
    Tom Esposito
    Manheim, Inc.
    www.manheim.com

    It works fine on my local tomcat. All this search returns is - "Place holder" string, it's harcoded there.
    It seems you have registered exemple by manual. Try use migration tool - ...\plumtree\ptportal\5.0\bin\native\ptmigration.bat
    As soon as migration(import) is done all you need to do is change url to your actual remote server

  • External drive not connecting via firewire thunderbolt

    I have a iMac at home and at work. This external drive connected via a thunderbolt/firewire adapter yesterday on my work iMac. When I try to connect on my home iMac it does not work. This drive is powered by the cable and I read that that is a problem but my trouble is that it did work on my work iMac yesterday but will not work on my home iMac today. I am using different adapters, is that the trouble? These macs are the same machine, one has more storage but otherwise the same. 

    I was thinking it might be an issue with the drive needing too much bus power. On the newer iMacs, USB provides higher bus power than FireWire. That might still be the issue, even if the drives supply their own power.
    Just one Firewire port on my iMac.
    I think it has two, but one is FireWire 400 and one is FireWire 800. So you only have one device plugged into those two ports?

Maybe you are looking for

  • Extended warranty for DV6 motherboard?

    I bought a DV6 laptop for my daughter a little over a year ago, and about 2 months after the 1 yr warranty expired she started noticing a lot of heat on the bottom of her laptop.  I helped her clear out the dust in the fan area and made sure she was

  • Issue with Proximity Sensor during calls - Continued.

    This thread is a continuation of Issue with Proximity Sensor during calls which was getting too long and causing some browsers to time out. The old thread has been locked and the last post links to this thread. Thank you. Apple Discussions Hosts

  • Best way to log price information ?

    hi, does anybody has experience in logging price information. Each time the price of an item is updated (item master data, or pricelist -->overview) i want to log this information and store it in a user defined table (user, date, item, pricelist, pri

  • New 2GB Nano does not display videos menu!

    Okay, this is the second iPod Nano that I have had in a month. The first one had a defective drive. Now the new one does not show a menu option for videos! I bought the Nano so that I could download videos from the iTunes store. I can download music

  • Correcting Excise Invoice

    Dear Gurus, One of the users deleted the SECess while posting Excise Invoice(during MIGO). Hence it is not appearing in MIRO. To correct this we cannot cancel the Excise invoice already posted. I tried using J1IH --> additional excise but while I cli