Message without a solution

every time i open my HP Deskjet 5940 i get a message:  .    " because the printer ejects ink onto the paper in a fine mist ink smudges will eventually appear on the printer and adjacent surfaces
to remove use a fine cloth moistened with water.  "   First my printer works fine and i have no smudges... how do i resolve this or at the least get rid of the message.  please help..
i am out of warranty so i am out of luck with HP despite the fact that i have never owned any other brand of printer but HP and own 2 of them now.   sigh.....

1. Make sure you are using the latest software
2. Sign out, reboot and sign in again
3. Make sure Date and Time is correctly set; Settings>General>Date and Time>Set Automatically>On
4. Make sure phone number or email address is correct
5. Hold the Sleep and Home button down (together) until you see the Apple Logo

Similar Messages

  • How to define message without parts in WSDL?

    Hi all,
    I don't know if it is possible, but I would like to create a message without defining part/type.
    Really what I want to accomplish is to avoid the part definition below in my .wsdl file.
    <message name="RCMR_IN000002NR01Input">
    <part name="param0" type="xsd:string"/>
    </message>
    <message name="RCMR_IN000002NR01Output">
    <part name="param0" type="xsd:string"/>
    </message>
    So I would like to something akind to
    <message name="RCMR_IN000002NR01Input">
    </message>
    <message name="RCMR_IN000002NR01Output">
    </message>
    I try to assign a string to RCMR_IN000002NR01Input (I am using rpc literal). At the moment the partnerlink receiving my message gets confused by the param0 part of the XML.
    I hope that description of my issue was not to cryptic to be understandable. Please feel free to ask clarifying questions.
    Any help is appreciated.
    Regards,
    Aagaard
    Edited by: Aagaard on Oct 8, 2008 8:42 AM
    Maybe I should try to elaborate on my use case.
    I pick up a SOAP message from a JMS queue (well, topic really). The message is a domain specific type. I get the content of the message as a string and assign it to a variable with a param0 of type string.
    I then use the contains function to determine which partnerlink to invoke for a given message.
    The invokation is succesful seen from BPEL.
    However, the receiving systems receives my message including the original SOAP envelope - AND including a new BPEL generated SOAP envelope :-(
    This is addition to the following code which was the concern of my original post:
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="param0">
    <param0 xmlns="" xmlns:def="http://www.w3.org/2001/XMLSchema" xsi:type="def:string" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    So anybody have any ideas as to how to get rid of unnecessary SOAP envelope and that irritating param0?

    Hi again,
    Srin, you were right. I did have a namespace issue. Getting that resolved however, introduced a new error.
    My BPEL process invokes the remote partner, delivers the payload, the remote partner sends back a meaningful response, but no BPEL instance is shown in the BPEL console.
    In the <oracle home>/opmn/logs I find the following errors:
    ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is: Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NullPointerException
    And
    Exception: java.lang.NullPointerException
    Handled As: com.collaxa.cube.CubeException
    +] -> [java.lang.NullPointerException: null]+
    ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "java.lang.NullPointerException
    This seems strange to me. It seems that even if the meaningfull answer from the partner link is lost enroute I should still get a response in BPEL (maybe just null). My next step will be to try and set up a TCP Monitor between the partnerlink server and the BPEL server.
    Any thoughts, hints, ideas and solutions are very welcome.
    Will report on progress
    Regard,
    Aagaard
    Edited by: Aagaard on Oct 10, 2008 10:18 AM
    Update:
    My current thinking is that I have a problem with my message types. The problem is definitely in the way BPEL handles the response from the partnerlink. The nullpointer exception may suggest that I am trying to assign the return payload to an incompatible type. I don't know if it could be an issue if the partnerlink response is some specific type while I excpect a string?
    Anyway here's what my wsdl looks like now:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="RCMR_AR000002NR01"
    targetNamespace="http://com.scandihealth.ccs.webservices.messaging.common/CCSMessageServiceRemote.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://com.scandihealth.ccs.webservices.messaging.common/CCSMessageServiceRemote.wsdl"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" >
    <documentation>
    WSDL for Service: CCSMessageServiceRemote, generated by Oracle WSDL toolkit (version: 1.1)
    </documentation>
    <types>
    <schema targetNamespace="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://com.scandihealth.ccs.webservices.messaging.common/CCSMessageServiceRemote.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <element name="msgInputOutput" type="xsd:string"/>
    </schema>
    </types>
    <message name="RCMR_IN000002NR01InputOutput">
    <part name="param0" element="msgInputOutput"/>
    </message>
    <portType name="CCSMessageServiceRemotePortType">
    <operation name="RCMR_IN000002NR01">
    <input message="tns:RCMR_IN000002NR01InputOutput"/>
    <output message="tns:RCMR_IN000002NR01InputOutput"/>
    </operation>
    </portType>
    <binding name="CCSMessageServiceRemoteBinding" type="tns:CCSMessageServiceRemotePortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="RCMR_IN000002NR01">
    <soap:operation soapAction="urn:com-scandihealth-ccs-webservices-messaging-common-CCSMessageServiceRemote/RCMR_IN000002NR01"/>
    <input>
    <soap:body use="literal" encodingStyle="http://schemas.xmlsoap.org/soap/literal/" namespace="urn:com-scandihealth-ccs-webservices-messaging-common-CCSMessageServiceRemote" />
    </input>
    <output>
    <soap:body use="literal" encodingStyle="http://schemas.xmlsoap.org/soap/literal/" namespace="urn:com-scandihealth-ccs-webservices-messaging-common-CCSMessageServiceRemote"/>
    </output>
    </operation>
    </binding>
    <service name="CCSMessageServiceRemote">
    <port name="CCSMessageServiceRemotePort" binding="tns:CCSMessageServiceRemoteBinding">
    <soap:address location="http://.../HL7Receive_servlet_WS/WS"/>
    </port>
    </service>
    </definitions>
    My assignment / invokation looks like this:
    <assign name="CreateInputParamGenerateMessage">
    <copy>
    <from variable="getContentAsString"/>
    <to variable="RCMR_IN000002NR01Input" part="param0"/>
    </copy>
    </assign>
    <invoke name="InsertOperation"
    partnerLink="RCMR_AR000002NR01"
    portType="ns6:CCSMessageServiceRemotePortType"
    operation="RCMR_IN000002NR01"
    inputVariable="RCMR_IN000002NR01Input"
    outputVariable="RCMR_IN000002NR01Output"/>

  • Having horrible service with 4GLTE I have had 3G for several weeks (I am not the only person I know having this problem), I have reset my network settings and it did not resolve the issue.  I am also unable to send SMS and text messages without them eithe

    Having horrible service with 4GLTE I have had 3G for several weeks (I am not the only person I know having this problem), I have reset my network settings and it did not resolve the issue.  I am also unable to send SMS and text messages without them either failing or not sending at all.  Is there an outage in the Cleveland, Ohio area (zip codes 44129, 44134, 44137) or anything else I can do to resolve this issue?

    Not that I'm a Verizon employee, but I have experience in the field. An LTE tower will only extend up to, on a perfect day, with no elevation, 6-7 miles. On a typical day, you will be lucky at four (4) miles. The three ZIP codes you've given are all within about a 12 mile radius. That would mean that 2-3 towers are currently down at the same time, and Verizon would know about it within the hour. Being it's Cleveland, I'm sure they would receive numerous calls regarding an outage of that size.
    My point is that if you're having issues in all three ZIP codes, chances are it's a phone issue. If you're handset is simply not receiving LTE, but still receiving 3G, that would signify a SIM card issue. You need to get your SIM card replaced.

  • How can I delete a message without opening an adjacent one?

    Before Yosemite you could delete a message from Mail.app without opening an adjacent message by holding option and clicking the garbage can.
    However, in Yosemite, there doesn't seem to be a way to delete a message without opening (and setting the message's status to "read") an adjacent message.
    I often don't have time to read all the messages in my Inbox so I'll quickly read some important ones and I'll leave the others as "unread" to get back to later in the day. Yosemite Mail doesn't seem to support this workflow anymore…
    Anyone know a workaround; short of manually setting a messages status back to "unread"?

    Ok, I'm answering my own question.  I made up a fake user name to get into my Palm Desktop and deleted profiles.  Then I went in with real user name.  All of my calendar entries were gone, but fortunately within the last month I had HotSynced and was able to HotSync again to get it back from my handheld.  I think I need a blackberry.  This stuff happens way too often.
    Post relates to: Palm m505

  • Can I print a Mail message without multiple recipient names?

    Is there a way to print a Mail message without having also to print the dozens of recipients, where that's the case? I can't see an obvious way, but I'm sure I used to be able to do this. I'd be grateful if anyone knows how.

    HI,
    Go here and download this utility. Print Selection 1.1
    "You can select text and graphics in any cocoa application (safari, mail.app, etc.), go to the services menu and go to "Print Selection" and the selected stuff will be printed."
    Carolyn

  • How can I forward a message without downloading it ?

    I'm trying to forward a message on messages counter change event by adding a listener on my INBOX folder:
    folder.addMessageCountListener(new MessageCountAdapter()   {
              public void messagesAdded(MessageCountEvent ev) {
                  Message[] msgs = ev.getMessages();
    ...  //forward each new incoming messageMessageCountListener works fine, but i'd like to forward my new messages without downloading them and just changing some header information and recipients.
    Can JavaMail do it?
    Edited by: elisad on Nov 7, 2008 7:52 AM

    No, there's no way to do that with the base IMAP protocol.
    There's some new RFCs that would enable that, but JavaMail doesn't
    support them, and I don't believe they're widely implemented by servers yet.

  • Error message without blocking Input fields

    Hi,
    I want to display an error message in the selection screen. The error is for input date validation. But the once error displays in the status bar, it blocks the input fields in the selection screen. I want to display the error message without blocking any of the input parameter in the selection screen. Where should i write the code?
    Thanks in advance.
    Ezhil

    Hi Ezhilhrh
    I think you could have done a trial with different message types before posting this question.
    Please try with success message(Type - S) and DISPLAY LIKE 'E'.
    And also control the program flow using a flag or by checking the initiality of your internal table.
    Regards
    Hareesh Menon

  • "Error Message" without interrupting the transaction

    We use a VB application to insert/update records in a Oracle database.
    Any user is allowed to see all fields, but not every user is allowed to update all fields. We check the right to update in a database trigger and raise an error if a user wants to update a field for which he has no rights.
    User X has the right to update field A, but he has not the right to update field B.
    Now we want to change the application
    If X tries to update fields A and B, we want to accept the new value for A, leave B unchanged and inform the user with a message like an error message without interrupting the transaction.
    Has anybody an idea how to implement this?

    In the project it's presented:
    1) how the servlet can send JSON data depending on the request's parameter
    2) how to obtain this data on the client side and show in on the page using jQuery without refreshing the whole site
    What You need to do is just to send the error (as JSON data) insetad of the values that are passed now and display this error on the page.

  • Cannot return to message list while in a message without clicking on "compose new message icon" and then cancelling it.

    After updating to 8.1 from 8 i cannot return to my message list from inside a message without clicking on the "compose new message" icon and then canceling out of that.
    Also, where it used to say return, it now says "Edit" and the word "Message" on the top of the screens is scruched together.
    Here is a link to a screenshot of my phone from the main messages listing.
    And here is a link to a screen shot of my phone from within a message.

    Hi Sir,
    Code snippet for reference:
    Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)Handles OutlookApplication.ItemSend
    Try
       Dim SentMailItemObject As Outlook.MailItem
    SentMailItemObject = CType(Item,
    Outlook.MailItem)
    ‘Can
    we add here User property in Mail Object Reference?
     Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Information)
     End Try
    End
    Sub

  • Received message without correlationID

    Hi,
    I am facing a strange problem.
    Whenever I execute any JPD in my weblogic workshop using the Workshop test browser, I am getting following error.
    <Error> <WLW> <000000> <Received message without
    correlationID. MessageID=ID:P<294710.1177353184648.0>>
    1. I created a JPD which has a Client Request Node and uses some WLI JMS controls to post messages to a queue.
    When I run this JPD from test browser, I am getting the above error.
    2. Then I created another simple JPD with just one single perform node. Even that gives the same error.
    3. Then I thought it may be a problem with my domain and created a fresh wli domain and tested the JPD. Still the same error.
    I do not understand what could be the problem.
    Can someone help me with this.
    Thanks

    This is a problem with the configuration of your JMS control. For me it worked when I stripped the @jc:jms annotations from the send/receive methods of my JMS control. Following is the code:
    package processes;
    import com.bea.control.*;
    import java.io.Serializable;
    * @jc:jms receive-type="queue" receive-jndi-name="TestQ" send-type="queue" send-jndi-name="TestQ"
    * connection-factory-jndi-name="weblogic.jws.jms.QueueConnectionFactory"
    public interface MyJms extends JMSControl,com.bea.control.ControlExtension
    * this method will send a javax.jms.TextMessage to send-jndi-name
    public void sendTextMessage(String payload);
    static final long serialVersionUID = 1L;
    interface Callback extends JMSControl.Callback
    void pickMessage(String message);
    Message was edited by sodhi at Jan 29, 2005 2:56 PM

  • Multiple files, same structure into one message without BPM

    Hi,
    Is it possible to read multiple files (each with single row) as one message without BPM by some configuration in channel?
    For example:
    input files placed simultaneously in input folder:
    file1: a,b,c
    file2: f,g,h
    file3: k,l,m
    after adapter picks files, xml message:
    <Message_type>
        <RecordSet>
            <file>
                 <A>a</A>
                 <B>b</B>
                 <C>c</C>
            </file>
            <file>
                 <A>f</A>
                 <B>g</B>
                 <C>h</C>
            </file>
            <file>
                 <A>k</A>
                 <B>l</B>
                 <C>m</C>
            </file>
         </RecordSet>
    </Message_type>

    Bond,
    Yes Bond. You can read the pattern what you have given.
    First Read the whole line in the file as one record. Now take the substring or write udf in mapping. This entirely depends upon your requirement.
    Regards,
    ---Satish

  • Collect Message without correlation

    Hi,
    I have a scenario. I have to collect 10 files which has like 100 bytes of information in each file and they should be collected into a single file every five minutes. I dont know whats inside the file. The data may vary...How  do I collect these messages without correlation in BPM? I can relate only file names....there is no relation between them in the payload...
    Also, without correlation, if the file adapter polls every 5 mins and grabs 10 files, how do I control them to process in the same BPM instance (should I use interface namespace in the correlation for single BPM instance) - how to use collect pattern? can I use file name and process them in BPM to be collected????
    Thanks for the suggestions.
    Thilothama

    Moorthy,
    Thanks for the reply. So lets say my incoming
    file 1 has  "This is file 1 content "
    file 2 has  "This is file 2 contennt"
    file 3 has  "This is file 3 content"
    On content conversion I make this to
    <Message>
    <File content>
       <ID>1
       <Data>"This is file 1 content "
    <File content>
    </Message>
    <Message>
    <File content>
       <ID>1
       <Data>"This is file 2 content "
    <File content>
    </Message>
    <Message>
    <File content>
       <ID>1
       <Data>"This is file 3 content "
    <File content>
    </Message>
    Hard code ID and use it in BPM collect pattern??
    Thanks
    Thilothama

  • How to view source of email message without opening the message?

    In addition to Verizon Email, I use Windows Live Mail.  With Windows Live Mail I can view the source of a message without opening the message.  This way I can find out if the message is legitimate or spam before potentially getting hit with malware from a bogus message by opening it.  I can then set up a blocking rule so a bogus message from either the sender or the domain never appears in my Inbox.  I have not found a way to do this in Verizon EMail. 
    Is there a way to view the source of a message without opening the message in Verizon EMail?  Right clicking just opens the message which I do not want to do.

    computerbug,
    You can get a preview of your email.  Log into the Verizon account and go to email > in the top you will see
    Conversations
    Contacts
    Calendars
    Settings
    Click on settings < General settings > Display and you will see 2 options for email view.
    (Preview is not available, if the resolution is less than 1024 by 768 pixels)
    Thanks,
    Tonya D

  • IPod touch - text messaging - without wifi?

    I've seen this question in the archives, but nothing since 2012. 
    Is it possible for the latest generation iPod Touch to send text messages without a wifi connection?
    Perhaps there's an app for this?
    Thanks -

    No, not at all.  Any texting app or even emailing a text to a recipient carrier's gateway will require an internet data connection.  An iPod Touch only has one single way to interact with the internet at all - that is wifi.
    Without wifi and with no other form of communication built into the device, how on earth could it send any message?  Magic?
    There are internet-based texting apps for iPod Touches and wifi-only iPads, but those apps use an internet connection to actually send or receive anything.

  • I use an Apple bluetooth keyboard with my iPad. In messages I can't find a way to "send" a message without tapping on Send on the iPad's screen. I've tried every key and key combo that I can think of. Am I missing something?

    I use an Apple bluetooth keyboard with my iPad. In messages I can't find a way to "send" a message without tapping on Send on the iPad's screen. I've tried every key and key combo that I can think of. Am I missing something?

    I already have multiple devices and by far I like my iPad the most over laptops and the iPad. That including checking out my friends MacBook Air.
    The difference for me is the touch interface on the screen itself for things that do not require a lot of typing. For me, the iPad is more "magical" than anything else I've used.
    Again, I do appreciate your answers but you don't know my situation. Not everything is as it is perceived without knowing me and what I have to go through.

Maybe you are looking for

  • New HD, can't install OS x

    Installed a new 640 GB hard drive in my mid 2010 core 2 duo, 2.4ghz , macbook pro 13", Macbook Pro 7,1 Boots fine with install disk, 10.6.7 (not original that came with computer) After selecting the language to install, it says "can't install Mac OS

  • E-mails get truncated when forwarded

    When I forward an e-mail from within the e-mail app, the e-mail does not get forwarded completely. For some reason the original text gets truncated. I first noticed this on IOS 6 on both the iPhone 5 and iPad 3rd gen. Please advice me what to do, bec

  • Edge Animate CC Stops responding. Help!

    Edge Animate stops responding and doesn't let me do anything. Every time I try to do anything I get the OS spinning wheel and the app stops responding, forcing me to "force quit" it. Starting to get pretty annoyed :/ Tried to uninstall and clean inst

  • Aurora Keeps Updating For No Reason

    Either every other day or else everytime I manually check for an update on Aurora it thinks there is an update. And then when I restart Aurora it turns out it updated to the exact same version of Aurora. Why does it do this? And/Or how do I fix this

  • HT1178 where do i find the utilities and application folders on my computer

    Where is the utilities and application folders on my Mac? I am trying to set up my Time Capsule