Missing end of address on envelope

I have an HP Photosmart C7280 all-in-one which I connect to wirelessly using Vista.  I recently went to print an envelope from Word and selected the correct envelope size of DL 11 by 22 cm.  Despite trying 3 different envelopes the printer refuses to print all of the address, missing off parts of the ends of the longer lines.  It will print all of the address if I move the text box nearer to the left hand side - but I want the address nearer to the centre.
The envelope prints perfectly on my HP Laserjet 4000 PCL5? 
Any ideas please 

I had the same problem and went crazy trying to figure out why the delivery address won't fully print. I am on Vista, using MS Word 2007, I have a HP Photosmart Premium (all in one) printer.
The problem seems to be an incompatibility between what MS word expects the printer to do and what actually happens
Here is the solution:
1. Configure MS Word 2007 envelope options to "Automatic".
2. Before putting the envelope in the printer, pull out any other paper that may be in the tray.
3. Place the envelope in the tray using face down against the right edge of the tray.
4. Move the paper guide in the tray until it is snug against the envelope (This is the most important step)
5. Print.
I also found this website very helpful in troubleshooting the problem: http://www.gmayor.com/changing_envelope_layout.htm
Message Edited by dbcassidy on 09-20-2009 12:07 PM

Similar Messages

  • WS - "java.rmi.MarshalException: (1)Missing end tag for Body or Envelope"

    HI All,
    I'm new of this forum but I really hope you could help me solving the problem I have to connect Web Services and midlets.
    Somehow my configuration works with some services I've found online but when I invoke very simple services deployed on my server(s) I always have "java.rmi.MarshalException: (1)Missing end tag for Body or Envelope" exception"
    Let me add some more information to the problem:
    System Configuration:
    - JBoss (but I also tried axis) - standard installation (http/1.1)
    - WTK 2.5 (but I also tried 2.2) - standard installation
    - I tried "trusted" and "untrusted" security configuration of the servlet
    - Netbeans IDE 5.0 (to create both Midlets and WS)
    - WS uses document/literal as expected by JSR 172
    The midlet is created with no problems but at the time of invocation the server throws the above exception (which is part of rmi. remoteException)
    By monitoring the network both at client and server side I noticed that the information received is chuncked after 768 bytes. However, If the (soap) reponse is less than such value, I still have the error.
    Using Http/1.1. at the mobile side, the service does not return me anything (0kb) while if I set the mobile device to http/1.0, I get the above error.
    I really have to make the midlet running so any type of help will be really appreciated!!
    Thanks in advance

    Hi all,
    as many developers I have encountered the famous "java.rmi.MarshallException:(1)Missing end tag for Body or Envelope" during the development of my WS app for J2ME (JSR 172).
    It is correct that is the empty tag <soapenv:Header /> causing this error.
    To fix this error, it is necessary to stop the server to generate this empty header in the response stream.
    I have fixed this error for Axis2: unfortunaly it is necessary to modify a class in Axiom library. This library is used in Axis2 to produce the SOAP response, you can download the source code at http://ws.apache.org/commons/axiom/source-repository.html.
    Here the class to modify:
    axiom\modules\axiom-impl\src\main\java\org\apache\axiom\soap\impl\llom\soap11\SOAP11Factory.java
    by commenting the line 273 in the method called getDefaultEnvelope() to prevent the empty header insertion in SOAP response:
    public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException {
            OMNamespace ns =
                    new OMNamespaceImpl(
                            SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI,
                            SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX);
            SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this);
            //createSOAPHeader(env); the line to be commented
            createSOAPBody(env);
            return env;
        }Finally you have to recompile Axiom using Maven to obtain the fixed package axiom-impl.jar and to replace this package on the lib repository of your Axis2 server.
    A little tricky to fix this bug but now my app runs perfectly ;)
    Enjoy!
    Romain Pellerin
    http://www.gasp-mobilegaming.org

  • MarshalException: Missing end tag for body or Envelop

    Hi, I am new at this, pls advise.
    I have been trying to code a 'hello world' that returns a string, as below.
    //==================
    package simple;
    public class HelloWorld{
    public String sayHello() {
    return "hello";
    //===================
    and my buil.xml looks like this
    //===================
    <project name="simple" default ="all">
    <property file="../properties.txt"/>
    <property name="temp_dir" value="tmp_build" />
    <target name="all" depends="clean,ear,deploy" />
    <target name="clean" >
    <delete dir="${classDir}/tutorial/simple" />
    <delete file="${appDir}/simple.ear" />
    <delete dir="${temp_dir}" />
    <delete file="client.jar" />
    </target>
    <target name="build" depends="ear" />
    <target name="ear" >
    <delete dir="${temp_dir}" />
    <mkdir dir="${temp_dir}" />
    <mkdir dir="${temp_dir}/WEB-INF" />
    <mkdir dir="${temp_dir}/WEB-INF/classes" />
    <javac srcdir="." includes="HelloWorld.java"
    destdir="${temp_dir}" />
    <servicegen
    destEar="simple.ear"
    warName="simple.war"
    contextURI="simple">
    <service
    javaClassComponents="simple.HelloWorld"
    targetNamespace="http://examples/simple"
    serviceName="Echo"
    serviceURI="/HelloWorld"
         generateTypes="True"
    expandMethods="True"
    style="document">
    <client
    packageName="tutorial.simple.client"
    clientJarName="client.jar"
    />
    </service>
    <classpath>
    <pathelement path="${temp_dir}"/>
    <pathelement path="${java.class.path}"/>
    </classpath>
    </servicegen>
    </target>
    <target name="deploy">
    <copy file="simple.ear" todir="${appDir}"/>
    </target>
    </project>
    //======================
    I manage to deploy and run the service on weblogic through the browser. Next, when I try to run it on Java Wirelesss Tookit. I get a "MarshalException: Missing end tag for Body or Evelop" error.
    I basically used the stub generator from WTK and use them as below
    //====================
    try {
    String str = service.sayHello();
    System.out.println( str );
    } catch (Exception e) {
    e.printStackTrace();
    //=====================
    I have no problem running other examples, just this one which i coded on my own. Can anyone pls enlightent me :)

    Hi all,
    as many developers I have encountered the famous "java.rmi.MarshallException:(1)Missing end tag for Body or Envelope" during the development of my WS app for J2ME (JSR 172).
    It is correct that is the empty tag <soapenv:Header /> causing this error.
    To fix this error, it is necessary to stop the server to generate this empty header in the response stream.
    I have fixed this error for Axis2: unfortunaly it is necessary to modify a class in Axiom library. This library is used in Axis2 to produce the SOAP response, you can download the source code at http://ws.apache.org/commons/axiom/source-repository.html.
    Here the class to modify:
    axiom\modules\axiom-impl\src\main\java\org\apache\axiom\soap\impl\llom\soap11\SOAP11Factory.java
    by commenting the line 273 in the method called getDefaultEnvelope() to prevent the empty header insertion in SOAP response:
    public SOAPEnvelope getDefaultEnvelope() throws SOAPProcessingException {
            OMNamespace ns =
                    new OMNamespaceImpl(
                            SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI,
                            SOAP11Constants.SOAP_DEFAULT_NAMESPACE_PREFIX);
            SOAPEnvelopeImpl env = new SOAPEnvelopeImpl(ns, this);
            //createSOAPHeader(env); the line to be commented
            createSOAPBody(env);
            return env;
        }Finally you have to recompile Axiom using Maven to obtain the fixed package axiom-impl.jar and to replace this package on the lib repository of your Axis2 server.
    A little tricky to fix this bug but now my app runs perfectly ;)
    Enjoy!
    Romain Pellerin
    http://www.gasp-mobilegaming.org

  • Missing end sub, but where ?

    Hi,
    I'm creating a script that will, when a technician send a mail to a client, the affiliated commercial will be put in copy.
    My code looks like this : 
    ThisOutlookSession
    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    'By Oliv' 29/06/2007 pour Outlook 2003
    'Modifié par D. Schneider le 30/03/2015
    If Not Item.Class = olMail Then GoTo fin
    Dim prompt As String
    '########################correspondance CC selon destinataire##############################
    Dim recip As Outlook.Recipient
    Dim sDomain As String
    Dim arTemp As Variant
    Set recip = Item.Recipients(1)
    arTemp = Split(recip.Address, "@", , vbTextCompare)
    sDomain = arTemp(1)
    cci = Get_Cial(sDomain)
    '########################Option CC##############################
    prompt = "Ajouter le cc " & cci & " à " & Item.Subject & "?"
    If MsgBox(prompt, vbYesNo + vbQuestion, "Sample") = vbYes Then
    Set myRecipient = Item.Recipients.Add(cci)
    myRecipient.Type = olCC
    myRecipient.Resolve
    If myRecipient.Resolved = False Then
    MsgBox "L'adresse Email n'est pas correcte !", vbCritical, "Erreur"
    Cancel = True
    End If
    End If
    '#######################FIN#####################################
    fin:
    End Function
    Module1
    Public MyArray()
    Sub Test_Get_Cial()
    Call Alimente_Liste
    MsgBox Get_Cial("exemple1.fr")
    End Sub
    Sub Alimente_Liste()
    Dim intFic As Integer
    Dim strLigne As String
    intFic = FreeFile
    Open "C:\Users\*****\Domaine-Cial.txt" For Input As intFic
    i = 0
    While Not EOF(intFic)
    Line Input #intFic, strLigne
    ReDim Preserve MyArray(i)
    MyArray(i) = strLigne
    i = i + 1
    Wend
    Close intFic
    End Sub
    Function Get_Cial(Email) As String
    Get_Cial = ""
    For i = 0 To UBound(MyArray)
    If Split(MyArray(i), ";", , vbTextCompare)(0) = Email Then
    Get_Cial = Split(MyArray(i), ";", , vbTextCompare)(1)
    Exit For
    End If
    Next i
    End Function
    But when I try to test it, I get and error saying there's a missing 'end sub' but I can't find where 

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    '''  End Function  <<<
    End Sub
    Voila!

  • WT 2.5 / WT 2.5.2 - Web Services problem - Missing end tag??

    Hi,
    I'm trying to create a J2ME web services client using the wireless toolkit. I used the Stub Generator to create my STUB from my WSDL file.
    With the Wireless Toolkit 2.5 I was getting a "Missing end tag for body or envelope" error when I invoked a web method. I read that this was a problem with that version of the Wireless Toolkit (a parsing problem).
    I then upgraded to Wireless Toolkit 2.5.2. When running my app on the emulator, the "Missing end tag for body or envelope" error went away, and I was successfully invoking web methods, and the results were being parsed fine. However, when I put this .jar on to my handset (a Nokia E70) I still see the "Missing end tag for body or envelope" error!
    Does anyone know why this is?

    The IDE i'm using is NetBeans. I have WTK2.5 and WTK2.5.2 installed. When I flick the "emulator platform" from WTK2.5 to WTK2.5.2 the error "Missing end tag for body or envelope" does go away, and the SOAP response is successfully parsed. However, when I flick it back to WTK2.5, I get the error back. The SOAP message is being sent properly, and a good response is returned. The problem is with parsing the response. WTK2.5 can't seem to parse it, but WTK2.5.2 can.
    So I can get the application working fine (when the emulator platform is set to WTK2.5.2), but the problem is, I still get the error when I install the app on any phone, and I don't understand why???
    If anyone can shed any light on this, i'd be very grateful.
    p.s I've tested the app on the following handsets:
    Sony Ericsson P1i, K800i
    Nokia E70, E61

  • What is the best way to make a list of addresses for envelopes or labels?  Address book, numbers or pages?

    What is the best way to make a list of addresses for envelopes and labels?  Address book, Pages or Numbers?

    I liek your idea of having multiple images in a grid. I think
    that would be the best bet as you mentioned. Having one big picture
    would be hard to distinguish the sub-areas with mouse coordinates.
    I think checking the coordinates for the mouse would be very
    tedious because I would have to check for the left boundary, the
    right, top, and bottom for each sub-area!
    What do you mean by using button components and reskinning.
    Is this simply using buttons and changing the way they look? I'm
    just trying to save time and memory, because if I had a 10 by 10
    grid, thats a hundred buttons. Wouldn't that slow down the machine
    alot? And for that matter wouldn't having a grid of 10 by 10 images
    also by the same deal?
    Thanks for the input, I'm just trying to find the most
    efficient way to do it.

  • HT1338 How do I address multiple envelopes using Address Book in iMac-Lion?

    How do I us iMac to address multiple envelopes with different names and addresses?

    Just select the addresses you want to print, and go to the Print command in the Address Book File menu, and select the following:
    Of course you have to make sure your printer supports printing multiple envelopes of the kind you wish to print.  So try one, and then try a few, before doing a lot.

  • HT201412 what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    I, too, love everything about my phone. The other day I tried to crash my Z10 by running multiple apps and having videos running in the background. Do you think my Z10 showed any signs of slowing down? Nothing doing! It ran as smooth as silk. I'm very impressed.
    Cheers.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • HT204364 Is it possible to address an envelope after creating a greeting card like we were able to in the iOS app?

    Is it possible to address an envelope after creating a greeting card like we were able to in the iOS app?

    no
    LN

  • I would like to print addresses on envelopes from my ipad contact list

    I would like to print addresses plus my return address on envelopes using ipad contact list.  I do not have a wireless printer so would have to export file to be able to use in some way on my pc.  Is  this possible?  Thanks  Pam

    Hello FeyQueen,
    You may be able to remove existing game data by via the following:
    On your iOS device, go to Settings > iCloud, then tap Storage & Backup.
    On your Mac, go to Apple () menu > System Preferences, click iCloud, then click Manage.
    On your Windows computer:
    Windows 8.1: Go to the Start screen and click the down arrow in the lower-left corner. Click the iCloud app, then click Manage.
    Windows 8: Go to the Start screen and click the iCloud tile, then click Manage.
    Windows 7: Choose Start menu > All Programs > iCloud > iCloud, then click Manage.
    Once in the 'Manage' dialog, look for the name or icon of the affected game. If present, you should be able to delete any data the game has saved to your iCloud account.
    Managing your iCloud storage
    http://support.apple.com/kb/HT4847
    Cheers,
    Allen

  • F:verbatim - missing end tag

    im trying to use f:verbatim tag in my code, and when im writing something like-
    <f:verbatim>
    <table><tr><td>
    </f:verbatim>
    <h:outputText value="x"/>
    <f:verbatim>
    </td></tr></table>
    </f:verbatim>
    im getting the message - "missing end tag table"
    what im doing wrong?
    thanks in advanced.

    I get the same thing in my IDE. It works anyways. I think the compiler/parser in the IDE gets very confused when I use f:verbatim and h:outputText.
    Try running the code anyways and see if it works. If you can, test it in several different browsers (IE, FF, Safari, etc...).
    I am using the IBM WSAD 5.1.2 IDE. Which is based off of Eclipse.
    CowKing

  • HT4918 contacts are missing from my address book on my mac but are on my ipad, both have icloud

    contacts are missing from my address book on my mac.  they remain on my ipad.  I have synced my ipad.   i have removed contacts from address book on my mac and then re added them.  still missing.  how do i fix this

    Start by answering the questions.
    Picking up old contacts where - are you referring to the email address autofill feature when addressing an email?
    Did you transfer the backup for your old iPhone to your new iPhone?
    Are you accessing an email account on your iPhone that provides over the air syncing for contacts such as a Yahoo account, Gmail account, or a MobileMe/iCloud account?
    I am seeing contacts that I know are at least a year old, and current contacts in my Macs address book are not being sync'd up.
    Does this mean syncing contacts with the Address Book on your Mac is not selected under the Info tab for your iPhone sync preferences with iTunes? If so, has this ever been selected with your new iPhone? Deslecting this after it was selected does not remove contacts from your iPhone.

  • Missing information with Address Book

    I've got a Centro, run Mac OS X 10.4.11, and managed to get iSync to play nice with my new Centro (palm os 5.4.9) and transfer over the years of information I have stocked up in iCal and Address Book.app. Everything seemed fine on the surface, but when I went to look at the contacts on the Centro, it only transfered some of the data. Particularly, I'm missing address from every contact that has only 1 address (which happens to be the vast majority). iSync managed to pull over the first address if there is a second one, but it has it mislabeled. For example:
    On the computer
    Contact : Me
    some phone numbers
    Home Address
    Work Address
    On the Centro
    Contact : Me
    some phone numbers
    Home Address (which is labeled as Work)
    Really quite frustrating. What am I doing wrong? I've done several searches using various keywords and 90% of the time I end up getting directed to buy more software (Missing Sync), on top of the several hundred dollars I've already shelled out on an operating system and palm hardware. Please, tell me there's a better way.
    Less important, but equally annoying, are such small things as
    -How do I file contact categories en masse from my computer?
    -How do sync contact photos from Address Book.app to the Centro?
    -How do I get locations to transfer from iCal to the Palm Calendar on the Centro?
    -How do I get the Palm Calendar's categories to match with iCal's?
    -How do I get the Palm Calendar to accept iCal's categorizations of appointments?
    I tried posting this over in the Palm help forums, but got no responses, any help would be greatly appreciated. Thanks!
    Daniel

    Welcome to Apple Discussions.
    You have bumped up against the substantial, long term limitations of the iSync Palm Conduit, and iSync itself, with respect to the issues you point out.
    There is no explicit support for contact and calendaring extensions introduced with later versions of the Palm personal information management applications. Categories, for example, are not supported. The conduit still does not, and—I dare say, never will—support the synchronization of any address labeled other than <home>.
    Each of the issues you raise is addressed by Mark/Space with the Missing Sync for Palm OS, and that is the only workaround available to you.

  • Exchange 2013 mail contact in Active Directory missing SMTP email address but has a primary email address

    Outlook 2010 Distribution Group contact member "Al" is not showing an email address. In Active Directory "Al" is showing an email address but it's not a SMTP email address that is created when you add a new Mail contact using EAC. 
    When the DG owner sends out an email using DG email account, the mail bounces back as undeliverable.
    Exchange Admin Center is not showing the member.  The only way to fix the member is by deleting the contact. Re-add contact in EAC then add to Distribution Group.  We have over 30 DGs that are missing the SMTP email addresses.
    Can a Powershell command fix this issue or is there a sync issue between AD and Exchange?

    Hi,
    From your description, the contact you specified should be contact not mail contact. Contact and mail contact are two different things. If you create a contact in ADUC, you need to mail-enable it and then set the primary SMTP address for it.
    For more information, here is an article for your reference.
    Recipients
    http://technet.microsoft.com/en-us/library/bb201680(v=exchg.150).aspx
    Hope my clarification can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Address Book envelope printing weirdness

    I'm having a strange problem when trying to print envelopes or mailing labels from Address Book. Basically, when I select a contact use cmd-P to print the address, the preview in the LH side of the Print dialog looks fine. But if I print, or use the "Preview" button, exclamation points are added before and after the State field.
    So, "New York NY 12345" becomes "NewYork!NY!12345" in Preview or in the printed output.
    If I print to PDF and copy the offending text to a Hex Editor, it appears that the sequence "E2 80 8E" is added just before the spaces (0x20) that separate the fields.
    The same addresses synced on another Mac look fine and print fine.
    Needless to say, it's driving me nuts! Any ideas?

    Hi Waldo,
    Just a suggestion...
    Have you tried using Disk Utility to Verify and Repair Permissions?
    It sure won't hurt anything even if it doesn't fix your problem.
    Regards,
    John
    G5Dual 2Ghz  23" ACD  iSight   Mac OS X (10.4.8)    20" Intel iMac 

Maybe you are looking for

  • Run HTTP File Server on Mac OSX Lion Server?

    Hello! I have a Mac Mini running Mac OS X Lion Server. I would like to be able to host a Web Server that runs within the built in Apache server that allows the transfer of files from Client to Mac Mini HD and vice versa using authentication from Open

  • How to get the class name  static method which exists in the parent class

    Hi, How to know the name of the class or reference to instance of the class with in the main/static method in the below example class AbstA public static void main(String[] args) System.out.println(getXXClass().getName()); public class A extends Abst

  • Not Able To Print PDF Documents

    Hi All, When I try to print the report output(PDF file) am getting following error: Printing output file. Request ID : 95532395       Number of copies : 1       Printer : CANDFKODFJ00545 ld.so.1: acroread: fatal: libgobject-2.0.so.0: open failed: No

  • Differences between jdk and jre

    can anybody explain the differences between jdk and jvm. and relation between jdk, jre and jvm. thanks

  • ABAP Webdynpro table scroll bar does not work

    Hello, I have created a dynamic WD table using cl_wd_dynamic_tool=>create_table_from_node. I have set the no. of visible rows to 5. Now when ever the table has more rows, it displays a vertical scroll bar. But if I scroll it down, after 5 rows, it do