My printer is on line i just can not get it working on my laptop

my printer is on line i just can not get it working on my laptop

Hi @murphyett , 
Thank you for visiting the HP Support Forums and Welcome. I have read about your HP Printer and not working Wirelessly. Here is a link to the HP Print and Scan Doctor. The HP Print and Scan Doctor will run a check on your system.
What is the model of printer? I would be happy to assist if needed as there are many models of HP Printers I would need the model number. How Do I Find My Model Number or Product Number?
Please respond with which Operating System you are running:
Which Windows Operating System am I running?
Please let me know.
Thanks.
Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Similar Messages

  • Activatable RMI - can not get to work

    Hi
    I am desperate to get activatable RMI to work. I tried the Sun tutorial example and even that I can not get to work.
    I would really appreciate it if someone can highlight where my stupidity lies.
    Here are my sources:
    Remote Interface:
    package compute;
    public interface Compute extends java.rmi.Remote
    void executeTask() throws java.rmi.RemoteException;
    Client code:
    package client;
    import compute.*;
    import java.rmi.*;
    public class Client
    public static void main(String[] args)
    if (System.getSecurityManager()==null)
    System.setSecurityManager(new RMISecurityManager());
    try
    Compute comp=(Compute) Naming.lookup("//"+args[0]+"/ComputeIT");
    comp.executeTask();
    System.out.println("returned");
    catch (Exception e)
    System.out.println("Exception caught!");
    System.out.println(e.getMessage());
    Server Implementation:
    package actengine;
    import compute.*;
    import java.rmi.*;
    import java.rmi.activation.*;
    public class ActServerImp extends Activatable implements Compute
    public ActServerImp(ActivationID id,
    MarshalledObject mobj) throws RemoteException
    super(id,0);
    public void executeTask() throws RemoteException
    return;
    Server Setup program:
    package actengine;
    import compute.*;
    import java.rmi.*;
    import java.rmi.activation.*;
    import java.util.Properties;
    public class ActServerSetup
    public static void main(String args[])
    try
    System.setSecurityManager(new RMISecurityManager());
    Properties props=new Properties();
    props.setProperty("java.security.policy",
    "/u/pretora/java/rmi/actsrv/security.policy");
    ActivationGroupDesc.CommandEnvironment ace = null;
    ActivationGroupDesc agd=new ActivationGroupDesc(props,ace);
    ActivationGroupID agi=ActivationGroup.getSystem().registerGroup(agd);
    // ActivationGroup.createGroup(agi,agd,0);
    String location="file:/u/pretora/java/rmi/actsrv/";
    MarshalledObject data=null;
    ActivationDesc ae=
    new ActivationDesc(agi,"actengine.ActServerImp",location,data);
    Compute cri=(Compute)Activatable.register(ae);
    System.out.println("Remote reference obtained");
    Naming.rebind("ComputeIT",cri);
    System.out.println("Remote reference bound to registry");
    // System.exit(0);
    catch (Exception e)
    System.out.println("ActServerSetup caught "+e);
    e.printStackTrace(System.out);
    If I run the lot (rmiregistry and rmid (with security pol!)) I get the following exception on the server side:
    java.io.StreamCorruptedException: InputStream does not contain a serialized obje
    .at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:855)
    .at java.io.ObjectInputStream.<init>(ObjectInputStream.java:174)
    .at sun.rmi.server.MarshalInputStream.<init>(MarshalInputStream.java:102)
    .at sun.rmi.server.ActivationGroupInit.main(ActivationGroupInit.java:52)
    the client side just times out:
    failed to activate object; nested exception is:
    java.rmi.activation.ActivationException: timeout creating child process
    It does work if I uncomment the 2 commented lines in the server setup progam and let rmid use the setup program's JVM to instantiate the ActServerImp.
    Any ideas much appreciated. Thanks

    I finally found my problem. By changing the codebase string in ActServerSetup.java from file:/// to http:// URL, I was able to see in Apache HTTP server's log the 404 errors for my interface classes. The line that read
    String location="file:/u/pretora/java/rmi/actsrv/";
    had to be changed to
    String location="file:///u/pretora/java/rmi/actsrv/ file:///u/pretora/java/rmi/common/";
    Now I am all set.
    thanks

  • Flex 4 - Can not get ADG working

    Hello,
    I have just downloaded flex 4 SDK (flex_sdk_4.0.0.14159_mpl) and Flash Builder 4.
    I have created a test prroject and can not get it working with Advanced Data Grids.
    Here is my set up:  Created Project called Test, this contains one MXML file that contains an Advanced Data Grid:
    <fx:Script>
            <![CDATA[
                import mx.collections.HierarchicalData;
                [Bindable] private var _test:HierarchicalData;
            ]]>
    </fx:Script>
    <mx:AdvancedDataGrid id="test" dataProvider="{_test}">
       <mx:columns>
           <mx:AdvancedDataGridColumn headerText="COL_A" />               
           <mx:AdvancedDataGridColumn headerText="COL_B" />               
           <mx:AdvancedDataGridColumn headerText="COL_C" />               
        </mx:columns>
    </mx:AdvancedDataGrid>
    This works Okay.  I then include a libary into the project, the libary, also built with the same SDK, contains a class that contains nothing but one single method that does nothing:
    <mx:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx"
               width="100%" height="100%">
        <fx:Script>
            <![CDATA[
                import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
                private function test(col:AdvancedDataGridColumn):void { }
            ]]>
        </fx:Script>
    </mx:Canvas>
    Launcing now causes the error
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
        at mx.controls::AdvancedDataGridBaseEx/getSeparator()[E:\dev\4.0.0\frameworks\projects\datav isualization\src\mx\controls\AdvancedDataGridBaseEx.as:4618]
        at mx.controls::AdvancedDataGridBaseEx/createHeaderSeparators()[E:\dev\4.0.0\frameworks\proj ects\datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4660]
        at mx.controls::AdvancedDataGrid/createHeaderSeparators()[E:\dev\4.0.0\frameworks\projects\d atavisualization\src\mx\controls\AdvancedDataGrid.as:2428]
        at mx.controls::AdvancedDataGridBaseEx/drawSeparators()[E:\dev\4.0.0\frameworks\projects\dat avisualization\src\mx\controls\AdvancedDataGridBaseEx.as:4574]
        at mx.controls::AdvancedDataGridBaseEx/updateDisplayList()[E:\dev\4.0.0\frameworks\projects\ datavisualization\src\mx\controls\AdvancedDataGridBaseEx.as:2119]
        at mx.controls::AdvancedDataGrid/updateDisplayList()[E:\dev\4.0.0\frameworks\projects\datavi sualization\src\mx\controls\AdvancedDataGrid.as:2899]
        at mx.controls.listClasses::AdvancedListBase/validateDisplayList()[E:\dev\4.0.0\frameworks\p rojects\datavisualization\src\mx\controls\listClasses\AdvancedListBase.as:3468]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\4.0.0\frameworks\projects\framewo rk\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:718]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    Removing the method in the libary project alivates the problem.  But I can not see why this is a problem in the first place!!??!?!?!?!?!?!?
    Can anyone help. this is really weird.

    I'm getting the same error. This is due to a bug in AdvancedDataGridBaseEx.  The offending code is:
                var headerSeparatorClass:Class =
                    getStyle("headerSeparatorSkin");
                sepSkin = new headerSeparatorClass();
    if getStyle returns null then you will be trying to instantiate  headerSeparatorClass is going to cause the "Instantiation attempted on a non-constructor" error.
    Apparently someone thought that the headerSeparatorSkin would never be null.

  • Hello, I use MAC AIR OSX 10.6.8 and have Adobe CS2, that I was using 2 years ago on my older computer. I stopped using it because it would close down in the middle of work. Now I would like to reinstall it on the MacAir but I can not get it working. It te

    Hello, I use MAC AIR OSX 10.6.8 and have Adobe CS2, that I was using 2 years ago on my older computer. I stopped using it because it would close down in the middle of work. Now I would like to reinstall it on the MacAir but I can not get it working. It tells Adobe doesnT support my System. But I can not update my old version or activate it. What can I do?

    The mac you want to install photoshop cs2 on is running mac os x 10.6.8 Snow Leopard?
    (photoshop cs2 won't run on intel macs with mac os x newer than snow leopard)
    Did you ever have cs2 installed on this particular computer before?
    If the problem is that you already installed cs2, but it won't activate, that's because adobe took the activation servers offline for some older adobe products such as cs2.
    You'll need to use the non activation version of cs2 from here and the supplied serial number:
    Activation server shut down for Creative Suite 2, Acrobat 7, and Macromedia products

  • Static NAT pass-through; can not get to work

    I am not having any luck getting a static NAT pass-through to work.
    BM3.8/NW6.5 all patched to the latest patches (no betas). IPFLT is NOT
    loaded.
    My internal network on one LAN all have 10.100.xxx.xxx private addresses.
    Dynamic NAT works great.
    I have secondary public IP addresses bound to my public NIC. Static NAT
    mapping between the secondary public IP addresses and the couple of
    individual private addresses work just fine. In other words, all has been
    working fine.
    I need to give one of those internal resources its public IP address
    (change it's private to its public).
    OK, I went into the NAT table and changed the proper public <-> private to
    public <-> public (identical addresses). I changed the internal computer
    to it's public address/mask with the same default gateway the server is
    using. The internal computer can now only ping itself; can't even ping
    it's default gateway. I did reinitialize, and also restarted. I can not
    get the pass-through connection to work.
    Any thoughts will be well received.
    Bob

    Robert,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • HT1420 how do i Deauthorize a computer that has had the hard drive lock up and can not get it working

    how do  i deauthorize a computer that has had the hard drive lock up and can not get it working

    You can only deauthorise individual computers directly on them. Otherwise if you've reached the 5 computer limit, then you should be able to log into your iTunes account and 'deauthorise all' (which you can only do once every 12 months) and you can then (re-)authorise up to 5 computers : authorising and deauthorising.

  • I can not get any sound on my laptop. the volume settings are on but no sound will play? help

    I can not hear anything but the picture plays fine.

    HI. =)
    All you have to do is update your sound/audio driver. (especialy if you just got a BIOS update, if you haven't, just proceed)
    first, make sure  nothin's attached to your laptop.
    go to hp.com -> support & drivers -  drivers & software -  (put in your product name/number - you can find that at the bottom of your laptop) -  at the drop down, select widows 64 bit (mostly)  then hit next - at step 2, 'SELECT A DOWNLOAD', choose driver - audio - click the first blue link and hit save - after saving, your laptop will prompt you to run it. hit run.
    then your laptop will reset, and it should produce sound.
    **your kudos will be appreciated.

  • ADSL 2+ I just can't get it working

    So in March we get a new upgraded 21CN exchange (stanford in the vale) I'm 1.2 km from the exchange so am expecting 17mb apparently - my next door neighbour calls Zen and gets an immediate speed increase to 17mb I call BT CS and get the usual runaround after two hours I give up with them. It finally turns out the exchange is out of capacity so I need to wait until end of Sept, after BT wholesale in sept confirm we have capacity I still only have 8 MB so call CS again they suspect a fault so after several calls and testing 6 hrs later I give up. next week I try again and need to call 5 different numbers all with no progress until I somehow get back to Sales who are very apologetic and suggest that I should renew my contract and this may get Openreach to connect me to a full speed service.
    Wow I now have 9.3 mb i don't use a HH preferring a Netgear DGND3700 however I always test wth the HH on the master socket, I'm still expecting 17mb as BT promised however it's still just 9mb. My test with the HH is even stranger it reports a 14mb connection but can barely load the BT wholesale speed test page at all with a wired connection.
    I have run out of patience with BT CS can anyone help here.
    Thanks
    ADSL Link Downstream Upstream
    Connection Speed 10949 kbps 704 kbps
    Line Attenuation 20.0 db 11.5 db
    Noise Margin 3.1 db 6.8 db
    Solved!
    Go to Solution.

    welcome to the BT community forum where customers help customers and only BT employees are the forum mods
    in order for the forum members to help please can you post the adsl stats from your router you may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or if HH4/5 then go to troubleshooting then logs and you are looking for 2 line together when hub last connected to internet and they will show your connection speed and noise margin or if netgear enter 192.168.0.1). Then run  btspeedtester  (MAC users may have problems). when first test completes then run diagnostic test and post the results ( do not reset the router).
    are you connected directly via a filter to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • I deleted my old Email account because I wanted to create a new one, and I did. However, when ever I send an Email from the Mail app on my laptop it says the Email was sent from my old Email and I just can not get rid of it.

    I deleted my old Email and only used my new Email to set up the Mail app on my laptop. And the old Email is completely dead, hotmail.com says the Email no longer excists when I try to sign back in to it however my Emails remain saying 'Sent from Jordan [*old Email*].
    I can't find a solution!!

    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact AppleCare(or Apple ID Support), upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • I keep getting an error about plug -in container. I have uninstalled and intalled adobe and I just can not get it to work

    I have uninstalled both adobe and mozilla. I have the crash reports contantly. I play facebook games and it mainly happens in farmville, which is where i spend most of my time.
    I am just at the end of my rope here. The computer shops here do not support firefox and I would hate to pay and it still not be fixed.
    I have an acer aspire pc and run windows 7.

    - Reset the iPod. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router.
    - Reset network settings: Settings>General>Reset>Reset Network settings
    - iOS: Troubleshooting Wi-Fi networks and connections

  • Simple JavaScript I just can't get to work

    Hi guys I'm new here and to JavaScript really but I have had a go at trying this and it simply wont work for me. Basically I am creating a time-card for my work and because most people dont use military time the total calculations for each day have to take this into account. So I tried to make a script that would +12 if the total number of hours was less than 0; however it doesn't seem to work and still shows the negative number even though I have scripted it not too. I have attached the script bellow and if anyone could assist me it would be greatly appreciated.
    // Start Time
    var v1 = getField("Text1").value;
    // Finish Time
    var v2 = getField("Text2").value;
    // Lunch
    var v3 = getField("Text3").value;
    // Total Hours
    event.value = v2 - v1 - v3;
    if(parseInt(event.value < 0 )) event.value = (parseInt(event.value) + 12).toString();
    many thanks

    Are the start and end time values being treated as numbers or strings by JavaScript?
    What is the formatting of the field?
    // Start Time
    var v1 = getField("Text1").value;
    // Finish Time
    var v2 = getField("Text2").value;
    // Lunch
    var v3 = getField("Text3").value;
    // Total Hours
    event.value = v2 - v1 - v3;
    if(parseInt(event.value < 0 )) event.value = (parseInt(event.value) + 12).toString();
    console.show();
    console.clear();
    console.println("v1: " + v1);
    console.println("type of v1: " + typeof v1);
    console.println("v2: " + v2);
    console.println("type of v2: " + typeof v2);
    console.println("v3: " + v3);
    console.println("type of v3: " + typeof v3);
    Using civilian 24 hour time format for the fields, I get the following result:
    v1: 9:00
    type of v1: string
    v2: 17:00
    type of v2: string
    v3: 0:30
    type of v3: string
    The calculation results in a NaN value.

  • Can not get Netboot working across subnets

    On the same subnet all my images work correctly, but once I try to netboot form a different subnet it doesn't work anymore.  I am correctly using the bless command, and I have tried both specifying the server (to get the default image) and specifying the booter file (to get the specific image).  If I just use the --server option the log shows BSDP inform and BSDP ACK[LIST] but nothing after that... there is no select.  Again, on the same subnet it will use select and work normally.  If I use the --booter option then sometimes I can get the netboot to start but I get an error (for example, AST says there was a network error and NetInstalls do not start).
    I do know that this used to work, and in the process of changing computers and upgrading to Lion server it stopped working.  Any ideas?

    Depending on your network configuration it maybe that the simplest option is to multi-home your NetBoot server so it is visible on each subnet. Multiple servers is of course another option.
    However have a look at the information on the following links and see if any of it helps.
    http://macadmincorner.com/3-ways-to-netboot-across-subnets/
    http://afp548.com/forums/topic/netboot-across-subnets-intel/

  • How do I get to talk with someone?  You sold me a product I can not get to work and I want my money back!

    I have tried to contact customer support and have waited forever.  I am very frustrated and just ready to call it quits.

    This is a user to user forum.  We are customers just like you. You will need to contact Adobe for a refund if that is your desire:
    Contact | Adobe
    If you wish to describe your problem, maybe somebody here can offer a solution.

  • Can not get relay working. Airport utility gets confused!

    I am trying to help my friend setup his two Airport Extremes, using one as a relay. I am not sure what the model numbers they are because I am back at my home right now and I do not have access to them. They are both white and they both have USB ports.
    I spent about four hours last night trying to set up one of the base stations as a relay with no success. I kept getting an error message (in the network system preferences control panel) on the one that I was trying to set up as a relay that said it could not connect to the internet because it was using a self-assigned IP address. I could not figure out where is was pulling the IP address from. It was in a range much different than what it should have been. I was expecting to see something in the range of 10.0.0.5 and it was using an IP address that began with 67.x.x.x. Any suggestions on how to resolve this problem?
    While I was trying to program the base stations I named them "Downstairs" and "Upstairs" so I could easily tell them apart. While trying to set up the relay it seemed like the Airport Admin Utility (version 4.2 under Panther) kept getting confused as to which one it was programing. I would change certain settings on one of the base stations and after quitting out of the utility and reopening it I would notice that the settings got applied to the wrong one. This happened numerous times and I can assure you that it was not a user error.
    Some basic questions about how the Airport relay works.
    When a relay is setup and working properly how does the network appear in the airport signal meter in the menu bar, do I see both airports or do I just see the main airport? If when the relay is setup properly you only see the main airport (instead of seeing the actual name of the relay airport in the menubar) how can you tell which airport you are actually connecting to?
    If you walk around the house with a laptop will the computer automatically connect to the strongest airport signal or will it lock into just one of them and stay there?

    Take a look at the diagram in this article:
    http://docs.info.apple.com/article.html?artnum=107454
    Note that Apple has specific terminology for base stations in a WDS setup:
    - a main base station. This is usually the one connected to the incoming broadband internet service
    - a remote base station. This wirelessly extends the range of either a main base station, or a relay base station.
    - a relay base station. This connects wirelessly to a main base station, and can itself have remote base stations associated with it.
    Your friend has two Airport Extremes. I suspect one is being used as the main base station. Therefore the second is being set up as a remote base station (NOT a relay) using Apple's terminology.
    What I suggest:
    1. unplug the second Base Station from power
    2. use the Airport Admin Utlity to view the configuration of the main base station. Under the Airport tab, make sure the box next to "create a closed network" is NOT checked. Under the Access Control tab, remove ALL entries. Under the WDS tab, remove ALL entries and uncheck all boxes. Update settings to the base station.
    3. do a hard reset of the second base station per:
    http://docs.info.apple.com/article.html?artnum=107451
    4. make sure both base stations and the Airport card equipped Mac being used to perform the configuration are all (for now) located in the same room.
    5. run the Airport Setup Assistant. Follow its guidance to configure the second base station as a new base station that "extends" the existing wireless network created by the main base station.
    That's it!
    In the most common setup, the remote base station will have the same wireless network name and will transmit on the same channel as the main base station. Under the Airport menu you will only ever see ONE wireless network. You can use a wireless network "sniffer" application - it will tell you that there are in fact two different access points and tell you which you are connected to. A WDS network is seamless - as you walk between base stations, the mobile computer will automatically associate with the base station from which it can get a reliable signal connection.

  • IVE PAY FOR MY PACKAGE BUT CAN NOT GET IT WORK

    IT KEEPS TELLING ME TO UPDATE

    Hi Valentine,
    Did you subscribe to one of the Acrobat online services? If so, have you tried signing in with your Adobe ID and password? That message can often mean that you just haven't signed in yet. (It can also mean that your subscription hasn't processed yet, so you may want to log in to www.adobe.com and look under My Subscriptions and Services. Make sure that the subscription you purchased is "Active."
    Please let us know how it goes.
    Best,
    Sara

Maybe you are looking for

  • Moving music from an iPod Classi to a MacBook

    I have an 80GB iPod classic with about 4,500 songs (17GB) on it. My music was in iTunes on a Dell PC which I no longer have access to. I am planning on buying a MacBook Pro. I am hoping (praying) that I can move my music straight from my iPod to my n

  • Missing purchased music

    hi, i purchased music directly unto my ipad last week, i checked over the weekend and its all gone. i ve been billed for it cos when i go to my itunes account the bill is displayed there. can anyone tell me what has happened? i never transfered it to

  • Yet another IAS + 802.1x dynamic vlan question

    hello all For the last 18 months or so there's been a steady stream of folks trying to get dynamic assignment of a vlan to a user/group using Microsofts IAS Radius. Having searched thru the Netpro archives, I've never found a definitive explaination

  • How set current month in Voyager using BEX Query 7.0

    Hi:   I have a voyager workspace connected a SAP BI Query 7.0. My query shows information since 2007 to 2009   How I can set current month in characteristics defined in slice section? I tried to use a exit variable in proposed values query section bu

  • Thousands of incoming emails?

    Over the past two weeks or so, the Mail Activity Indicator has shown that there were thousands of incoming emails...(which never appeared-Phew!!) The number varies from 842-61,789!!!! What on earth does this mean? Is my Mail System being used to 'rou