Run/deploy on device (Asus eepad)

Hi
I want to deploy/run/debug to an Asus eePad but it is not listed as a connected device. I am using FB 4.5.1 and the tablet is running Android 3.1 and Air 2.6.0.1912 USB debugging is on and connected. I am using on OSX. could anyone offer a hint as to how to get FB or Asus to play nicely
Many thanks
Richard

Hi there.
I know this is an old post, but I fell here having this same problem for some weeks now, and i just figured my issue. Hope it help others:
My iPhone is connecting automatically with my itunes on computer. Not really sure what type of connection or wireless sync, but the fact is that it IS connecting.
For some weird reason it gets Flash Builder crazy and it cannot find the right device anymore. Even when I get my iPhone connected by cable, it says that it found the device, but doesn`t publish to it. The Flash Builder says that it was published, but nothing gets installed, and the debugger cannot connect.
MY SOLUTION (for now): Turn off the phone wi-fi, so it gets out of my home network. works like a charm and I finally can test on my device again.
Really hope this helps.

Similar Messages

  • How to create a JavaMe library that runs on all devices?

    I have the Java ME 3.0 SDK. If I start a Java ME project (Midlet) I have to choose a device that I'm developing for. While I want to create an 'Engine' library that runs on any device. This library won't use any device specific libraries. So if I make different midlets for different devices they can all use the same generic 'Engine' library.
    I've googled a lot on this already and did quite some reading in the documentation of Java ME but didn't find any info on how to do this. I found a way to convert Java projects to midlets with the J2ME plugin for eclipse, but then I'd have to reconvert my Engine project to midlets for every device I want to support every time I make a change in the code of my 'Engine' library.
    Edited by: user8973897 on 23-feb-2011 4:42

    You can find some information here I guess:
    http://www.codeproject.com/Tips/634208/Create-and-Deploy-Custom-Timer-Job-Definition-in-S
    http://www.c-sharpcorner.com/uploadfile/anavijai/custom-timer-job-in-sharepoint-2010/
    http://blogs.msdn.com/b/guruketepalli/archive/2012/01/23/sharepoint-2010-custom-timer-job-send-an-email.aspx
    ***If my post is answer for your query please mark as answer***
    ***If my answer is helpful please vote ***

  • I want to run a Firewire device, there is no port. Is there an adapter for that?

    II want to run a Firewire device, there is no port. Is there an adapter for that?

    If you DV7 has a slot that matches:
    http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&DEPA=0&Order=BESTMATCH&N=-1&isNodeId=1&Des...
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • SCCM 2012: Office 2013 click to run deploy?

    Hi,
    We would like to run Office 2013 next to Office 2010. Therefore the click-to-run option (app-v is only possible for Office 2013 ProPlus) looks the way to go.
    I found a nice guide a Office 2013 Plus “Click to run” Deploy in SCCM:
    http://www.peters.com/Blogs/Lists/Posts/Post.aspx?ID=90 However (posted it also on the site), can I use the /admin to generate the configuration.xml instead and use it within SCCM 2012 deploy?
    J
    Jan Hoedt

    No. Click-to-run does not use the traditional Office setup methodology and thus does not have the same configuration options. More info at
    http://technet.microsoft.com/en-us/library/jj219420(v=office.15).aspx
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • [iPhone] Moved to new computer, cannot run app on device

    I was developing on a mac mini, and I provisioned my iPod touch and was able to run on the device. Later I setup ad-hoc provisioning for my iPod as a test, and that worked too. I am attempting to switch over to a new machine. I've installed the old certificates and encryption keys, as far as I can tell. But when I try and debug on device, I get the dreaded 0xE800000001 error while "verifying application"
    When I try and drag my ad-hoc certificates into XCode, it crashes. I've been trying to follow the directions for provisioning my device, using the existing certificates, no luck so far. When I set up iTunes on the new machine, I used "Consolidate library", then I copied the iTunes folder.
    Any help would be appreciated.

    No, I have the original certificate files which I am installing on the new machine. I'll look into that idea.

  • Authentication failed on device 3 times. Failed to detect SSH version running on the device. PRIMARY-STARTUP config Fetch Operation failed for TFTP

    I have devices loaded but new devices keep getting this error "Authentication failed on device 3 times. Failed to detect SSH version running on the device. PRIMARY-STARTUP config Fetch Operation failed for TFTP" - which trying to get configurations. I am using LMS 3.0.1
    I tried to TELNET on devices via Putty port 22 no good. Please help?
    Name Version License Status Size CiscoWorks  Common Services 3.1.1 Licensed Not applicable  Campus  Manager 5.0.3 Purchased 1500  CiscoView 6.1.7 Licensed Not applicable  CiscoWorks  Assistant 1.0.1 Licensed Not applicable  Device  Fault Manager 3.0.3 Purchased 1500  Internetwork  Performance Monitor 4.0.1 Purchased 1500  Integration  Utility 1.7.1 Licensed Not applicable  LMS  Portal 1.0.1 Licensed Not applicable  Resource  Manager Essentials 4.1.1 Purchased 1500

    Showing 1-1 of 1 records
    Go to page:
    of 1 pages
    Device Name
    SysObjectID
    Model
    Device Status
    Inventory Status
    Inventory Last Updated Time
    Config Status
    Config Last Updated Time
    1.
    R2020012_01
    .1.3.6.1.4.1.9.1.576
    Cisco 2811 Integrated Services Router
    Normal
    Success
    Jan 13 2011 10:43:49 EST
    Failed
    Jan 13 2011 10:37:24 EST
      Rows per page:
    20 50 100 500
    Go to page:
    of 1 pages

  • Error occurred while packaging application: fails to run on iOS device...

    I am building a project in Apple Mavericks using FlashBuilder 4.7 using AIR SDK 3.9 and Flash Player 11.9. 
    The project is plugin project that builds and runs for android in the AIR simulator as well as on the device (so far so good)… it also builds and runs for iOS in the Xcode simulator but fails on the device… I have checked and double checked to make sure that my certificate (p12) and provisioning profile are correct and have also confirmed that the Application descriptor correctly mirrors the app ID (in flash builder as well as in the provisioning profile). I have allowed System Events in the Security & Privacy setting in Mavericks.
    If I try to build and run for the device… after a few minutes it fails with a message… “Exception occurred during launch  Reason: Error occurred while packaging application:” without any detailed information.
    If I try to “Export Release Build” it fails after a few minutes with message… “Error occurred while packaging application: Id: framework not found UIKit  Compilation failed while executing  :  Id64” Even though I know UIKit was included in the Xcode project when I started and UIKit is (I thought) automatically included by Flash Builder!
    Can anyone help me out or point me in the right direction? I really need to get this project running on the device, I was pretty sure that the provisioning was my problem but have not had any luck getting it running no matter how many times I review and check my settings and provisioning. Please Help

    I am building a project in Apple Mavericks using FlashBuilder 4.7 using AIR SDK 3.9 and Flash Player 11.9. 
    The project is plugin project that builds and runs for android in the AIR simulator as well as on the device (so far so good)… it also builds and runs for iOS in the Xcode simulator but fails on the device… I have checked and double checked to make sure that my certificate (p12) and provisioning profile are correct and have also confirmed that the Application descriptor correctly mirrors the app ID (in flash builder as well as in the provisioning profile). I have allowed System Events in the Security & Privacy setting in Mavericks.
    If I try to build and run for the device… after a few minutes it fails with a message… “Exception occurred during launch  Reason: Error occurred while packaging application:” without any detailed information.
    If I try to “Export Release Build” it fails after a few minutes with message… “Error occurred while packaging application: Id: framework not found UIKit  Compilation failed while executing  :  Id64” Even though I know UIKit was included in the Xcode project when I started and UIKit is (I thought) automatically included by Flash Builder!
    Can anyone help me out or point me in the right direction? I really need to get this project running on the device, I was pretty sure that the provisioning was my problem but have not had any luck getting it running no matter how many times I review and check my settings and provisioning. Please Help

  • "running DEPLOYMENT", CTS+ & non-Deployment

    Hello @All:
    Currently we are facing some major issues, trying to use CTS+. When we create a transport request, attach (whatever epa or sca) release it and then tying to import it tp starts and runs and runs and runs...
    In the state "running DEPLOYMENT" the transport request is not completed completey.
    We got the following system landscape:
    DEV --> PROD
    Both systems are dual stacks with SPS12.
    I have already read 4! different documentations with different explanations how to configure the transport route.
    Anyway we did it like this:
    DEV -
    SAP----
    > /SAP/ -
    > PROD
    JAVA------\
    ABAP----
    > /CUST/ ---
    Does anybody know this issue?
    Thanks in advance & Best regards :->

    Hello Ulrich,
    there is no file called B5QT900758.FE6. Instead i have the following files:
    <b>B5QI900758.FE6:</b>
    1 ETP199X######################################
    1 ETP154 MAIN IMPORT
    1 ETP101 transport order     : "B5QK900758"
    1 ETP102 system              : "FE6"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "372.04.08" "700"
    1 ETP198
    4 ETW000 R3trans version 6.14 (release 700 - 17.10.07 - 17:33:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 03.12.2007 - 08:57:04
    4 ETW000 control file: /usr/sap/FE6/trans/tmp/B5QKK900758.FE6
    4 ETW000 > #pid 1265882 on ab3e (fe6adm)
    4 ETW000 > import
    4 ETW000 > buffersync=yes
    4 ETW000 > file='/usr/sap/FE6/trans/data/R900758.B5Q'
    4 ETW000 > continuation='/usr/sap/FE6/trans/data/R900758_#.B5Q'
    4 ETW000 > client=400
    4 ETW000 > recclient="ALL"
    4 ETW000 > excluding 'R3TRDDDD','R3TRDOMA','R3TRDTEL','R3TRENQU','R3TRMACO','R3TRMCID','R3TRMCOB','R3TRSHLP','R3TRSQLT','R3TRTABL','R3TRTTYP','R3TRUENO','R3TRVIEW'
    4 ETW000 R3trans was called as follows: R3trans -w /usr/sap/FE6/trans/tmp/B5QI900758.FE6 /usr/sap/FE6/trans/tmp/B5QKK900758.FE6
    4 ETW000 table logging turned on 'ALL'
    4 ETW000 Connected to DBMS = ORACLE     dbs_ora_tnsname = 'FE6'     SYSTEM = 'FE6'.
    4 ETW690 COMMIT "0" "0"
    4 ETW000  trace at level 1 opened for a given file pointer
    4 ETW000
    4 ETW000 ================== STEP 1 =====================
    4 ETW000 date&time        : 03.12.2007 - 08:57:05
    4 ETW000 function         : IMPORT
    4 ETW000 data file        : /usr/sap/FE6/trans/data/R900758.B5Q
    4 ETW000 Continuation     : /usr/sap/FE6/trans/data/R900758_#.B5Q
    4 ETW000 buffersync       : YES
    4 ETW000 client           : 400
    4 ETW000 repeatimport     : NO
    4 ETW000 repeatclimport   : NO
    4 ETW000 c.s.i.           : NO
    4 ETW000 recclient        : ALL
    4 ETW000 l.s.m.           : VECTOR
    4 ETW000 charsetadapt     : YES
    4 ETW000 def. charset     : WEUROPEAN
    4 ETW000 commit           : 100000
    4 ETW000 table cache      : dynamic
    4 ETW000 EXCLUDING        : 'R3TRVIEW','R3TRUENO','R3TRTTYP','R3TRTABL','R3TRSQLT','R3TRSHLP','R3TRMCOB','R3TRMCID','R3TRMACO','R3TRENQU','R3TRDTEL','R3TRDOMA','R3TRDDDD'
    4 ETW000
    4 ETW000 Character set on this machine : 2 byte unicode big endian.
    4 ETW000 Character set on the data file: ASCII (ISO 8859-1).
    4 ETW000 Data file is compressed with algorithm 'L'.
    4 ETW000 Export was executed on 03.12.2007 at 08:55:54 by b5qadm
    3 ETW709 "700 "
    4 ETW000   with R3trans version: 17.10.07 - 17:33:00
    4 ETW000 Source System = IBM RS/6000 with AIX on DBMS = ORACLE     dbs_ora_tnsname = 'B5Q'     SYSTEM = 'B5Q'.
    4 ETW000
    4 ETW000 language vector during export: ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz(),./:;&
    4 ETW000 lsm during export: VECTOR
    4 ETW000 texts in language i will be converted with codepage 1100
    4 ETW000 texts in language c will be converted with codepage 1100
    4 ETW000 texts in language b will be converted with codepage 1100
    4 ETW000 texts in language a will be converted with codepage 1100
    4 ETW000 texts in language 7 will be converted with codepage 1100
    4 ETW000 texts in language V will be converted with codepage 1100
    4 ETW000 texts in language U will be converted with codepage 1100
    4 ETW000 texts in language S will be converted with codepage 1100
    4 ETW000 texts in language P will be converted with codepage 1100
    4 ETW000 texts in language O will be converted with codepage 1100
    4 ETW000 texts in language N will be converted with codepage 1100
    4 ETW000 texts in language K will be converted with codepage 1100
    4 ETW000 texts in language I will be converted with codepage 1100
    4 ETW000 texts in language F will be converted with codepage 1100
    4 ETW000 texts in language E will be converted with codepage 1100
    4 ETW000 texts in language D will be converted with codepage 1100
    4 ETW000 trfunction = K (transport to consolidation system)
    4 ETW000 Used Commandfile B5QK900758           (WDBAP/1)
    4 ETW000 Target client in E070C updated (400)
    4 ETW000      ... ignoring such differences.
    4 ETW000   0 entries for E070 imported (B5QK900758).
    4 ETW000      ... ignoring such differences.
    4 ETW000   0 entries for E071 imported (B5QK900758          *).
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    3 ETW674Xstart import of "R3TRFILE4753B6D6B64701F5000000000ABE744E" ...
    4 ETW690 COMMIT "52" "52"
    4 ETW000      ... ignoring such differences.
    4 ETW000   1 entry for SI_RQ_CONTENT inserted (4753B6D6B64701F5000000000ABE744E).
    4 ETW000 option 'filedirectory' not specified => using directory '/usr/sap/FE6/trans/data/B5QK900758/'
    4 ETW000 option 'filedirectory' not specified => using directory '/usr/sap/FE6/trans/data/B5QK900758/'
    4 ETW000 file '/usr/sap/FE6/trans/data/B5QK900758/tchiboBOHNENFDI_Jacobs_C~20071015081246.sca' exists already - it's not necessary to extract it again
    4 ETW000 different nametabs for table SI_RQ_FILECNTRL (field ATTRIBUTE_NAME).
    4 ETW000    Existing Field  Imported Field
    4 ETW000      keypart: ' '  ' '
    4 ETW000      format : 'C'  'C'
    4 ETW000      len    : 020  005 (chars)
    4 ETW000      offset : 034  009 (chars)
    4 ETW000 different nametabs for table SI_RQ_FILECNTRL (field ATTRIBUTE_VALUE).
    4 ETW000    Existing Field  Imported Field
    4 ETW000      keypart: ' '  ' '
    4 ETW000      format : 'C'  'C'
    4 ETW000      len    : 250  062 (chars)
    4 ETW000      offset : 054  014 (chars)
    4 ETW000      table SI_RQ_FILECNTRL: entry in DB is 300 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000   0 d /   3 i /   0 u /   0 =   0% ucf SI_RQ_FILECNTRL
    4 ETW000   3 entries for SI_RQ_FILECNTRL imported (4753B6D6B64701F5000000000ABE744E*).
    4 ETW675 end import of "R3TRFILE4753B6D6B64701F5000000000ABE744E".
    4 ETW000 E071-LOCKFLAGs 000001 - 000001 updated ('2', 1 entries).
    4 ETW000 B5QK900758           touched.
    4 ETW000   0 tables in P-buffer synchronized.
    4 ETW000   0 tables in R-buffer synchronized.
    4 ETW690 COMMIT "2772" "2824"
    4 ETW000 18843 bytes read.
    4 ETW000 Transport overhead 25.6 %.
    4 ETW000 Data compressed to 65.2 %.
    4 ETW000 Duration: 0 sec (18843 bytes/sec).
    3 ETW710 "1" "0"
    4 ETW000
    4 ETW000 Summary:
    4 ETW000
    4 ETW000 Totally 4 tabentries imported.
    4 ETW000 2824 bytes modified in database.
    4 ETW000  [dev trc     ,00000]  Disconnecting from ALL connections:               630699  0.630699
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                  130  0.630829
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=0x110fbedd8,usrhp=0x110fbe1e0)
    4 ETW000                                                                            1884  0.632713
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0x110fbedd8,srvhp=0x110fd0b98)
    4 ETW000                                                                            1813  0.634526
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     713  0.635239
    4 ETW000  [dev trc     ,00000]  Disconnected from connection 0                        57  0.635296
    4 ETW000  [dev trc     ,00000]  statistics db_con_commit (com_total=3, com_tx=3)
    4 ETW000                                                                              75  0.635371
    4 ETW000  [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)
    4 ETW000                                                                              77  0.635448
    4 ETW000 Disconnected from database.
    4 ETW000 End of Transport (0000).
    4 ETW000 date&time: 03.12.2007 - 08:57:05
    then I have a  <b>B5QL900758.FE6</b> that looks just like the B5QI900758.FE6.
    And a <b>B5QV900758.FE6</b> which I posted before.

  • "HP Solution Center cannot run because your device installation is not complete"

    I cannot use HP Solution Center because I only get this message when I start it: "HP Solution Center cannot run because your device installation is not complete". I am running Windows XP with an HP PhotoSmart Premium. I can print just fine and the printer is recognized by the PC and the network. I get the same problem whether connected wirelessly or through USB. I have re-installed all software multiple times. Please advise on how to get Solution Center up and running. 

      I had to do a total uninstall and reinstall of the driver. However, as you will see from this and other Support Forum threads there seem to be multiple stumbling blocks to the uninstall/reinstall process. Seems very glitchy. After nearly two days of unsuccessful tries I finally got it done. I did find three different official HP scenarios for the process, including one automatically sent to my desktop by HP upon one of the earlier failures. That sequence did not work work for me, but it was close--I got a partial install. But on another HP help file titled "Product Software Installation stalls or stops in Windows 7 with a USB connected product HP..." I found a six step process (with details for each), and it worked for me on the second try. Here are the six steps, plus extra things I did or discovered that could have helped make it work. I did step 5b. first: downloading and saving  the HP driver file on my computer before starting other steps, since I elected not be be on the internet as I did the installation. 1. Uninstall the HP printer software. See my note below about four ways HP lists do to this. I used two of them.2. Turn off the 'terminate and stay resident programs (has to do with system configuration). See HP details.3. Clear temporary files and folders through Windows accessories.4. Disable firewalls (see my note below about this)5a. Disconned the cable from BOTH the printer itself and from the computer, BUT TURN ON the printer.5b. Get the lastest version driver for you printer from the HP site and save it where you can find it. (I did this first, before other steps, so I could install off-line)5c. Install the driver software that you saved. (see my note below about an optional step that helped me with this, so the install will complete, and not hang up)6. Enable the start up software that was turned off with step 2. (See HP details) Notes: there are versions of HP instructions that  skip steps 2 and 6 and or 3 and 4, but that would not work in my case. I describe the steps that finally worked in case they can help someone else--this has been so frustrating. This uninstall/install process seems to be very touchy and perhaps changes depending on your printer or other configuration of your computer: Note about step 1: I found an HP document that listed four ways to uninstall. On my final and successful attempt I actually used two of the techniques. First I used the HP uninstaller program from the start menu program list on my computer stored with other HP stuff there. When I rebooted it did not appear that any HP programs were removed, but who knows, perhaps this got rid of some hidden file somewhere that had been causing all of the problems. Then I used the regular uninstall process from the control panel, and that worked. All HP programs were gone upon reboot. Note about step 3: I counld not believe this would help, but did it, and again, who knows, perhaps this is critical. Note about step 4: I assumed that step two 'terminate and stay resident programs' turned off my McAfee firewall and antivirus, so I did not turn it off. And I elected to be off the internet during install because I am always fearful about turning off those programs. However, and this may be the source of problems for many people, the HP list was very specific to turn off the Windows 7 firewall. I checked it and it was running, even though I thought McAfee was in charge. So I did turn off the Windows 7 firewall. Subsequently I learned that many people who have upgraded from earlier Windows operating systems to Windows 7 have the Windows firewall operating along with their other firewall, without knowing it. Apparently this does not happen if you did a clean install of Windows 7 rather than an upgrade install. Note about step 5c: On many of my tries the installation program would not terminate or complete, and I would get a partial install that allow some functions of the printer to work, but not Solutions Center. The only way I found to prevent this was at the step near the end, where you hook up the printer, select the box that says it's okay to connect it later. The installer program dumps an icon on you desktop that allows you to connect the printer after the installation shows complete and terminates by itself. By clicking the icon and plugging the cable into computer and the powered-on-printer when directed, the device installs perfectly. That was the only way I could get a full install, or get the installation to terminate. During the two days of trying to make this work I also reinstalled the latest version of Flash player since I read that HP Solutions Center needs it to show screens on your computer about printer functions. Of course downloading Flash onto a 64-bit version of Windows 7 is a little tricky too, but not that difficult. I do not know whether that was important, but it is one more thing to try if you can't make your Solutions Center part of the printer program work. I learned way more about the unintall/install process than I ever wanted to know. Sorry to be so wordy, but after two days of frustrating work on this I thought I should share this, in case any of these ideas could help someone else who is hung up on this. Perhaps there is an easier fix somewhere. The six-step process was on an HP help site and was not even for my specific printer, but the similar list from my model did not work. Wish I knew what the secret to success might have been.  

  • Wat are all needed to be impoted to run ,deploy servlet,jsp in eclipse

    i want to know what are all needed to be impoted
    to run ,deploy servlet,jsp in eclipse
    reply me
    regards
    saravanakumar

    http://www.eclipse.org/webtools/

  • Im not very tech savvy. I use firefox on my desktop, and want to run on my new Asus netbook with Windows Starter. Will FF run faster then IE? What version of FF should I install?

    Im not very tech savvy. I use firefox on my desktop, and want to run on my new Asus netbook with Windows Starter. Will FF run faster then IE? What version of FF should I install? in English
    == This happened ==
    Not sure how often
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAU; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MAAU)

    Im not very tech savvy. I use firefox on my desktop, and want to run on my new Asus netbook with Windows Starter. Will FF run faster then IE? What version of FF should I install? in English
    == This happened ==
    Not sure how often
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MAAU; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MAAU)

  • Csm error message when doing deploy to device

                       hi
    i have csm 4.3 and i did deploy to file and it was a success , when i am doing deploy to device i am getting an error saying:
    an error response from the device prevented succeful completion of this operation. the device provided the following description: crypto map CSM_outside_map 1 match address CSM_IPSEC_ACL_24:unable to locate access-list CSM_IPSEC_ACL_24
    when i am doing preview their is no problem
    what this message meen?

    Hello,
    Am using remote object services.
    USing component (ColdFusion as destination).

  • Ciscoworks LMS 3.2 unable to run Software or Device Update

    I am not able to run software or device update.  Initially I thought it was my proxy (Bluecoat) problem.  so I bypassed the proxy and still getting the same error.  based on the PSU.log, I am getting 404 error which ususally HTTP Not Found.  I am wondering if the URLs have been moved?  I've attached a sample of TCP stream in plain text.
    with proxy credential:
    [ Mon Mar 05 18:56:20 PST 2012 ] INFO   [SwUpdateAction : selectAllUpdates]  : Validated Cisco.com credentials..
    [ Mon Mar 05 18:56:23 PST 2012 ] ERROR  [CcoDownloadAdapter : getXmlFileList]  : failed to connect to Cisco.com:RespCode=404, RespMsg=Not Found
    [ Mon Mar 05 18:56:23 PST 2012 ] ERROR  [RemoteRepSync : downloadPsuHeadersAsXml]  : VDSException thrown com.cisco.nm.xms.vds.VDSException: CcoDownloadAdapter::getfileList():failed to connect to Cisco.com.
    [ Mon Mar 05 18:56:23 PST 2012 ] INFO   [SwUpdateAction : selectAllUpdates]  : removing SwUpdateLock, due to exception..
    bypass proxy:
    [ Tue Mar 06 14:57:24 PST 2012 ] INFO   [SecurityHandler : getCSProxyLogin]  : No proxy User Name configured
    [ Tue Mar 06 14:57:27 PST 2012 ] INFO   [SwUpdateAction : selectAllUpdates]  : Validated Cisco.com credentials..
    [ Tue Mar 06 14:57:27 PST 2012 ] ERROR  [CcoDownloadAdapter : getXmlFileList]  : failed to connect to Cisco.com:RespCode=404, RespMsg=Not Found
    [ Tue Mar 06 14:57:27 PST 2012 ] ERROR  [RemoteRepSync : downloadPsuHeadersAsXml]  : VDSException thrown com.cisco.nm.xms.vds.VDSException: CcoDownloadAdapter::getfileList():failed to connect to Cisco.com.
    [ Tue Mar 06 14:57:27 PST 2012 ] INFO   [SwUpdateAction : selectAllUpdates]  : removing SwUpdateLock, due to exception..

    it seems, your problem is bugID CSCto46927; you can download the patch for windows here: cwcs33x-win-CSCto46927-1.zip
    Also, consider to update LMS 3.2 to version LMS 3.2.1 and apply alls other application patches and point patches available;
    LMS 3.2 SP1:
              ciscoworks_lms321_win_k9.zip

  • Will premiere pro run on this device?

    Will premiere pro run on this device:
    Acer ICONIA W700-6602 - Tablet with Bluetooth keyboard - Core i5 3317U / 1.7 GHz - Windows 8 64-bit - - 64 GB SSD - 11.6" touchscreen CineCrystal wide 1920 x 1080 / Full HD - Intel HD Graphic  YYT1-10981572  | Model#: NT.L0QAA.009

    Anyone have experience running premiere/after effects on a tablet?. I saw someone run premiere pro and ae on a
    Lenovo ThinkPad X220 Tablet on youtube Lenovo ThinkPad X220 Tablet (Adobe Premiere, After Effects, ComicRack) - YouTube. The reason I want to use a tablet is I'm tired of having to retrieve my clips from a camera if I can setup my TL while I'm still on site with the new technology.

Maybe you are looking for

  • Doubt in inner classes

    public class Outer            public static void main(String argv[])                      Outer o=new Outer(); //1                                          Inner i =o.new Inner(); //2                      //Inner i =new Inner();  //3      i.showName(

  • Flickr RSS feeds into iPhoto 6?

    I have tried "subscribing" to some flickr RSS feeds in the hope that iPhoto would automatically download the originals....a bit like photocasting but not going via .Mac. feed://www.flickr.com/services/feeds/photospublic.gne?id=83555001@N00&format=rss

  • How do I fix Time Machine from crashing in mountain lion

    Hi, I recently had to wipe my SSD on my rMBP as I couldn't partition the drive in order to install Bootcamp. I managed to eventually erase the drive and setup a new partition for Windows. I then reinstalled Mountain Lion via the internet and hooked t

  • Camera Raw support for Nikon D810, using Photoshop CS 5.1

    I know the last update supported the D800 - can we please get support for the D810 on Photoshop CS 5.1 (version 12.1 x64)?

  • Plz its very urgent  SEZ sales

    Dear All, My client present business process regarding SEZ sales is Customer is in SEZ, he sells material to customer with excise invoice & ARE1 form. Like Deemed Export he sold the material to customer with Excise invoice but insted of ARE3 he creat