7520 All in one web services not working

I got notified of a new update for the 7520. When I tried to install it, the screen said it was successful but then said "updating....do not turn power off" and it freezes and the update never gets successfully installed and I have no web services. I tried reiinstalling the whole software package, restarted the printer multiple times and the router too and can't seem to find an answer.  Anyone know what to do next?

bjg1,
Welcome to the HP Forum.
Assuming you can get to the point where you can get the software installed, you might be able to get Web Services back using the following workaround.
Suggested Workaround:
On the printer, Disable the web services -- that is, remove web services from the printer.
This may then allow you to then "Enable Web Services".
There is a consequence to this action:  Your previously selected ePrint custom address will no longer be valid and cannot be reused.  When you go back and log into your HP Connected account you may need to not only "add device" to re-add the printer to the device list of ePrint printers, you will have to select a new custom email address for that printer.
Where / how is this done?
Side Bar: The Disable Web services is usually done on the printer, although if the service is actually working, one can switch off EWS from EWS.  
Disable EWS on the printer, wait a few seconds, and then Enable the service again.
Switching off EWS does not "break" your HP Connected account, although it does put a crimp in your printer's ePrint setup.  You can still log into the HP Connected account where the printer and the ePrint account is managed.    After EWS is disabled / enabled, you must log into your HP Connected account.
If you do not find your printer listed under the Devices tab, you can usually "add device" and add your printer right back into the list at this point.
If you do find your printer, but it won't cooperate, it won't update, you cannot "do" anything with it, go ahead and remove it. 
If you have to "remove the printer", then Log out of  HP Connected. 
If you have to "remove the printer", then Walk around your house / office / back yard -- come back.
Log into HP Connected and use "Add device" to add your printer.
Update the ePrint email address to something new - add a number, think of something new and clever; it does not matter as long as the name is different.
Click the Kudos Thumbs-Up!
It is a nice way to say “Thank You" for the help.
Although I strive to reflect HP's best practices, I do not work for HP. 
Kind Regards,
Dragon-Fur

Similar Messages

  • "no serializer is registered..." error with a web service not working

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

    I'm using JDeveloper 10.1.3
    EJB 3.0
    I'm having issues with the web service not working after I create a client for it. The web service works fine up until I generate the proxy on the other side.
    ERROR An error occurred for port: {http://buslogic/}MyWebService1SoapHttpPort: no serializer is registered for (class buslogic.runtime.....
    I saved the file before I added the proxy and the wsdl looks the same between the working one and the non working one. I can not pin point the when the change to the web service is occuring. It seemed to work once all the way up until I had a ADF page trying to retrieve data, another time it failed when the proxy was created.
    I can get the version that I saved to work immediately after the version that does not fails.
    Any help would be greatly appreciated,
    Dan

  • Error message on my HP Photosmart C7280 All-in-One 'Wireless Radio not Working'

    error message on my HP Photosmart C7280 All-in-One  'Wireless Radio not Working' My broadband is BT Infinity with a very strong signal throughout the house and my operating system is Windows XP. My printer will not connect wirelessly to my network, what can I do with respect to the error message 'Wireless Radio not Working'

    Hello @GeoffH777 ,
    Perfect! You are very welcome, I am very happy to hear the reset helped!
    If you  have a quick moment, please scroll back to my last message here and click the "Accepted Solution" button, so others can find our thread if they happen to run into the same issue.
    Greatly appreciated, have a wonderful day!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Web Services Not Working because wwv_flow_collections view is empty

    Hello,
    I followed this example to try and get a web service running in my Application:
    http://apex.oracle.com/i/doc/advnc_rest_web_eg_2.htm
    When I run the page and enter the zip code 43221 they recommend with a radius of 5, I get no results. When debugging and throwing the query into SQL Dev, I have no records in my wwv_flow_collections view. Looking at the tables that comprise the view, wwv_flow_collections$ and wwv_flow_collection_members$, these two tables would join on c.id = m.collection_id alone, but there are additional in-line selects involving the DUAL table that make the query return 0 records and therefore the view is empty. I've never messed with these views/tables, are these auto-populated by APEX? Can they be updated? Right now I cannot get any web services to work because of this. Here is the from clause for the wwv_flow_collections view:
    FROM
    wwv_flow_collections$ c,
    wwv_flow_collection_members$ m
    WHERE
    c.session_id =
    SELECT
    v('SESSION')
    FROM
    dual
    AND c.security_group_id =
    SELECT
    wwv_flow.get_sgid
    FROM
    dual
    AND c.id = m.collection_id
    AND c.flow_id =
    SELECT
    nv('FLOW_ID')
    FROM
    dual
    Can anyone help? Thanks in advance!
    John

    John,
    I have been working this week to set up the exact same thing and got the same empty result set that you have. In this case I believe it has nothing to do with APEX. I downloaded soapUI 4.0.1 which tests web services and used the WSDL described in the APEX Webservices tutorial for http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?wsdl to create the same sample requests. It also returns no results.
    So, I decided to use a different public WSDL and try to get it working. Here are my steps taken below:
    BACKGROUND:
    - I am using APEX 4.0 on an 11gR2 database, with ACLS set up for the APEX schema this app is using.
    - First off, the site I used I just found through google. It is a currency conversion rate webservice. It is explained here: http://www.webservicex.net/CurrencyConvertor.asmx
    - The WSDL is found here: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL
    SETTING UP THE WEBSERVICE:
    1. In a new APEX application I went to "*Shared Components*" -> "*Web Service References*" -> "*Create*" to create a new web service reference
    2. Selected manual
    3. Called the webservice CURRENCY_TEST
    4. Set the URL to http://www.webservicex.net/CurrencyConvertor.asmx
    5. Set the Action to http://www.webserviceX.NET/ConversionRate (Action can be found in the WSDL - showing a few lines below)
    <pre class="jive-pre">
    <wsdl:binding name="CurrencyConvertorSoap" type="tns:CurrencyConvertorSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="ConversionRate">
    <soap:operation soapAction="*http://www.webserviceX.NET/ConversionRate*" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    </pre>
    6. WSDL explains that the version is *1.1* in this case. (However, this same WSDL has the same operation for 1.2 so it probably would work)
    7. No Authentication
    8. soapUI 4.0.1 gave me the soap request which in this case is the following:
    <pre class="jive-pre">
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.webserviceX.NET/">
    <soapenv:Header/>
    <soapenv:Body>
    <web:ConversionRate>
    <web:FromCurrency>#FROM_CURRENCY#</web:FromCurrency>
    <web:ToCurrency>#TO_CURRENCY#</web:ToCurrency>
    </web:ConversionRate>
    </soapenv:Body>
    </soapenv:Envelope>
    </pre>
    9. Stored response in collection CURRENCY_COLLECTION
    10. Saved my web service reference
    11. Test the web service reference (you have to be on the web service references page and instead of the icon view of the report, use the list view. Click on the test icon to test the web service)
    12. On the test page, change #FROM_CURRENCY# to USD (for US dollars) and #TO_CURRENCY# to EUR (Euros)
    13. Click the test button and you should see a valid soap response with a currency rate within the ConversionRateResult tags
    USING THE WEBSERVICE AND GETTING RESULTS:
    1. Went back to the application and hit "*Create Page*" -> "*Form*" -> "*Form and Report on Web Service*"
    2. Selected my CURRENCY_TEST web service reference
    3. Next on the next page
    4. For input parameters, left the defaults to create 2 inputs, From_Currency and To_Currency
    5. Soap Style for this is Document (found in the WSDL as an attribute just after the soapAction attribute in the WSDL snippet above)
    6. Message Format is Literal (Also found above in the wsdl:output for this operation under the use attribute)
    7. XPATH is a bit complicated. In this case put */ConversionRateResponse* (I used the soapUI 4.0.1 to send the request and get back the soap response to see what the response tags would include and which path I'm going to)
    8. Message Namespace is http://www.webserviceX.NET/ (which is also found in the response soap message - I'd really recommend a tool to test this outside of APEX)
    9. For Parameter Names there is only one and it is ConversionRateResult (also found in the response soap message)
    10. Finish and run the report.
    OTHER GOTCHAS:
    So I finally got this to work, but in my case I was querying a remedy webservice and the xml tags I get back are all xmlns:ns0 and all response tags prefaced with ns0:
    In this case I had to after using the wizard go back and edit my query to change xmlns to xmlns:ns0 since the builder only assumes xmlns.
    <pre class="jive-pre">
    select extractValue(value(t),'/*/ns0:Assigned_Group','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assigned_Group"
    , extractValue(value(t),'/*/ns0:Assignee','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Assignee"
    , extractValue(value(t),'/*/ns0:Resolution','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Resolution"
    , extractValue(value(t),'/*/ns0:Status','xmlns:ns0="urn:HPD_IncidentInterface_WS"') "Status"
    from wwv_flow_collections c,
    table(xmlsequence(extract(c.xmltype001,'//ns0:HelpDesk_Query_ServiceResponse','xmlns:ns0="urn:HPD_IncidentInterface_WS"'))) t
    where c.collection_name = 'INCIDENT_TEST'
    </pre>
    Good Luck!
    Jonathon

  • LaserJet Pro MFP M125nw - Scan to app All-in-One Remote does not work

    Hi gurus,
    Basically I have pruchased that super-printer and I am now trying to achieve scan to my mobile devices.
    I have one iPad 2 on iOS 7, on 2 Android devices (smaller tablet and phone) both running Kitkat 4.4.2
    I am trying to submit a scan from all these devices and retrieve the output within my mobile devices, actually this is fairly described here and concerns accurately my printer model :  http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02486319&tmp_task=useCategory&cc=us&destPage=pr...
    Unfortunately, What happens :
    - From my iPad, the AiO app states that my printer is not compatible with the application !!
    - From my 2 Android devices, the All-in-One Remote app will work fine, except the scan feature as nothing happens (well, when tapping either 'Preview' or 'Scan' button in the Scan section, I see a 'Cancel' button during 0,1 second and I am back to that scan section)
    Any one could help please ???
    This question was solved.
    View Solution.

    Hello,
    Can no one help ?
    Is the product description misleading ? Is the AiO app not really reasy to support this printer ?

  • HT1338 since updating to Mountain Lion my HP 8180 all in one printer will not work and shows it as idle and pipe broken it connects via WIFI

    since updating to Mountain Lion my HP 8180 all in one printer refuses to work it show as "pipe broken" and printer as idle can anyone help please

    do you mean the printer? ive already tried that without success any further help apprecaited

  • One of the Web Service not working

    Hi All,
    I have created a AIF for Posting Goods Receipt for a Purchase Order.
    The form is using 2 web services: 1) for Getting the Purchase Order details, and 2) for posting the Goods Receipt for that PO.
    The form was working absolutely fine for the Customer, i.e. customer was able to fetch the PO details as well as Post the Goods Receipt for that PO.
    Then, based on the UAT comments from the customer, we did some minor changes in the function module correponding to the web service which fetches the PO details. We also did some script changes in the form.
    After the deploying the changes, the Web service corresponding to Post Goods Receipt has stopped working for the Customer, though the other web service(PO Get Details) is still working fine for them. When the Customer clicks the Button on which the Post Goods Receipt web service is called, they get no response at all.
    What is more surprising is that both the web services are still working fine for us(developers).
    Please help.

    Hi Chintan,
    One of the fields on the form was mapped to the SAP field which was of length 16 characters.
    If the user enters more than 16 charcters on the form....iTHe Web Service does nothing
    I restricted the length to 16 on the form and it started working again

  • HP 7520 all in one printer does not print photos well-Does with my Windows machines

    I have several computers.  Everything works great with printer in Windows environment.  I have an iPad and a MACbook PRO with Maverick 10.9.4.   The photos are terrible when I print with either of these devices.   It almost looks like a negative image.   I have checked for updated drivers, etc for the MAC.   The ink is HP and the levels are good.  It works fine with my PC computers, but not my Apple devices.   I have checked system preverences in the APPLE.   It appears to be only the photographs.  Text prints fine.  Any suggestions?
    This question was solved.
    View Solution.

    Hello cpsimon, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you're running into photo print issues. I would like to help!
    I would suggest deleting the printer from your print system, using this document: Uninstalling the Printer Software.
    Once you have deleted it, I would suggest verifying and repairing the disk permissions: About Disk Utility's Repair Disk Permissions feature.
    I would also suggest running your Apple updates:  OS X: Updating OS X and Mac App Store apps.
    After the updates, I would recommend reinstalling the HP Photosmart 7520 e-All-in-One Printer Drivers.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums! 
    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 right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Web service not working when called remotely

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

    Hi there!
    I built a simple web service to generate a sequence number to be cosumed by PDF forms.
    It works perfecly when I run PDFs on my machine, using localhost, etc.
    Whem deployed on the client's servers it does not work. The only difference is the client is running LiveCycle on Linux over their inhouse corporate network.
    When the web service is added to forms in LC Designer, the ws structure is built correctly and if called from a web browser the XML response is ok too.
    I've checked LiveCycle log file - there's nothing there, the ws is not even being called.
    Where should I look for error messages or other resources to aid me in identifying the problem?
    Thank you very much for any hints!
    Marcos

  • HP Photosmart C3180 All-in-One printer -- SCANNER not working.

    I have had this HP Photosmart C3180 All-in-One printer for a couple years and all is well. HOWEVER, the one function not working properly is SCANNING. I can print fine and copy fine. But when I go to scan something my power button flashes for about 10 seconds and then stops. Nothing happens, and nothing scans. HP said it was not the printer itself, but something to do with my operating system through Apple. I have the current 10.5.6 version of Leopard.
    If I can get any help from others I'd appreciate it!

    HP provided this link to software which resolved my scanning issue.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-55009-3 &lc=en&dlc=en&cc=us&lang=en&os=219&product=1146331

  • Web service not working

    Hi all,
             I created a webservice for a function module.
    Note : already there was a group of function modules in the webservice. I have included recently developed function module in the same webservice.
    In soamanager, this function module is existed. but when i test that function module in soamanager, it is throwing an error  saying -
    CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS9F3FEB5B8A0EC491810.Value 01-04-2009 is not a valid date in accord with the XML format for ABAP
    please guide me to solve this issue.
    thanks and regards,
    Murali Krishna T

    Are you passing a date to the web service? Check out the type of the corresponding field, usually in the SOAP messages you have to stick to [ISO 8601|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#isoformats] for date and time formats. This means that your date should be of form yyyy-mm-dd (see also the schema definition for the [date|http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#date] type).
    Cheers, harald

  • Help...Brightness control button in Lenovo All In One C360-4061 not working

    Hi,
    I just bought All in one C360-4061, and the monitor very birght,it hurts my eyes...i tried to push the birghtness control button but not working.i tried the keyboard shortcut (fn+home and fn+end) but not working either.
    anyone can help how to solve it ???
    thanx 
    best regards
    Solved!
    Go to Solution.

    hi esurjopurwanto,
    Welcome to Lenovo Community Forums!
    Open device Manager and look under Display adapters.
       Uninstall the Intel HD graphics place a check under delete driver software for this device.
    Then Download and install this driver for your Windows 8.1
     Intel VGA Driver  
    Please let me know your findings
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • 8500 All in One - touch screen not working

    One minute the touch screen with all it's functions was working fine and then, bam (!), the touch screen stopped working and I can't even use the one/off switch to power the unit off - it does not respond.  Funny thing is that the printer is still working from my computer so I can still send a print job via the wireless.   With the touch screen not working I can't use any function from the unit itself (copy a hard copy, fax a hard copy) and if the unit runs out of paper I have to unplug it to reboot since I can't hit the 'enter' on the touch screen once I've reloaded. 
    Bottom line --- nothing from the unit itself works.  Has a printer fairy locked me out or does this sound like a hardware error?  Thanks for any help ...
    Linda T

    Excellent.  Let me know how round 2 treats you.  The sad demise could have been due to a couple of things...as a side question, is the climate where you live especially dry right now?  I may request that our testers recheck how well we handle a static shock on the product if it is dry where you live. 
    Regards, CF
    I work for HP and hope to make your day Sproutastic!

  • C7250 All in one Wireless radio not working

    I have a C7250 All in one printer that suddenly the wireless stopped working.  I ran the wireless test and it says the radio is on but the radio fails. The wireless LED is on, any suggestion on what could be the problem?

    Shut off the printer.  Hold the # and 6 keys while and a for a few seconds after turning it back on.
    If that does not work, it is toast.  You could plug it into your router with an Ethernet cable and it would have the same functionality and still work with wirelessly connected computers.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • F4200 All-in-One scanner suddenly not working

    I have been very happy with my HP Deskjet F4200 All-in-One printer/scanner.
    Suddenly today the scanner refuses to wrok.
    I get a report:
    ERROR
    The scan cannot be performed because another program has control of the HP imaging device.  Try the following steps.  After each step, try scanning again.
    - Restart the program.
    - Close all programs that may be using the device.
    - Reboot the computer.
    I do NOT have any other program open.  I closed the printer/scanner program, shut down the computer - but problaem remains.       What do I do now?
    Do I uninstall and reinstall??  Or something else??
    Please someone advise
    Ruth
    This question was solved.
    View Solution.

    Hi @Rufels 
    I would be happy to help you scan from your F4200 again. The following document addresses the very issue you have described; 'Another program has control of the scanner' Message Displays on the Computer When Scanning.
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

Maybe you are looking for

  • UCCX: Silent monitoring is not working and recorded file is also not playing

    Hi, Running UCM 8.5 cluster with UCCX 8.5. In CSD, silent monitoring is not working. Windows XP OS is running on supervisor desktop. when i select the agent then the silent monitoring icon will highlighted once i click on the icon, after 5-7 seconds

  • BAPI_BILLINGDOC_CREATEMULTIPLE questions

    Hi, 1) Scenario: We have a report that reads a fixed length file, provied by a third party application, populates the BILLINGDATAIN, CONDITIONDATAIN, AND TEXTDATAIN, and calls the BAPI_BILLINGDOC_CREATEMULTIPLE. Our test data can have multiple line i

  • How to display an status Icon in Table UI web dynpro ABAP?

    Hi Experts , How to display an status Icon ( Traffic light ) in Table UI web dynpro ABAP? can somebody tell with a coding example. also I need to update status on condition so whats the best way? Thanks in advance. Regards,

  • Cause and Effect Apps that are Blue Tooth Switch Compatible

    I teach kids with mulitple disabilities and I am looking for apps that are as simple as pressing a blue tooth switch and a picture pops up or a song plays. Does anyone know of any or have recomendations? It would be so appreciated!

  • Why ejb20.DDInit's result put to screen, not to a stage directory

    Hi, I am new in weblogic. I run "java weblogic.ant.taskdefs.ejb20.DDInit stage" to automatically create ejb-jar.xml, weblogic-ejb-jar.xml, but it only create one xml file and print it to screen, not to the stage/META-INF directory, I have create stag