BPEL has problems parsing XSD with attributes

Hi,
When I create a BPEL process with below output XSD, everything works fine.
+<xsd:element name="WorkflowOutputData">+
+<xsd:annotation>+
+<xsd:documentation>+
This element defines an XML output element
which is used by all the BPEL workflow services,
to send output to the calling program
+</xsd:documentation>+
+</xsd:annotation>+
+<xsd:complexType>+
+<xsd:sequence>+
+<xsd:element name="Status" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="Errors" minOccurs="0" maxOccurs="1" >+
+<xsd:complexType>+
+<xsd:sequence minOccurs="0" maxOccurs="unbounded">+
+<xsd:element name="Error" type="LogMessage"/>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+<xsd:element name="Warnings" minOccurs="0" maxOccurs="1">+
+<xsd:complexType>+
+<xsd:sequence minOccurs="0" maxOccurs="unbounded">+
+<xsd:element name="Warning" type="LogMessage"/>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+<xsd:complexType name="LogMessage">+
+<xsd:sequence>+
+<xsd:element name="Code" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="Description" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="FlexField1" type="xsd:string" />+
+<xsd:element name="FlexField2" type="xsd:string" />+
+<xsd:element name="FlexField3" type="xsd:string" />+
+</xsd:sequence>+
+</xsd:complexType>+
As soon as I add below approvers element as shown below to the BPEL process output XSD, I'm not able to test the BPEL process in BPEL console.
"Initiating a test instance" screen in BPEL console doesn't show any html or xml form to enter data.
+<xsd:element name="WorkflowOutputData">+
+<xsd:annotation>+
+<xsd:documentation>+
This element defines an XML output element
which is used by all the BPEL workflow services,
to send output to the calling program
+</xsd:documentation>+
+</xsd:annotation>+
+<xsd:complexType>+
+<xsd:sequence>+
+<xsd:element name="Status" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="Errors" minOccurs="0" maxOccurs="1" >+
+<xsd:complexType>+
+<xsd:sequence minOccurs="0" maxOccurs="unbounded">+
+<xsd:element name="Error" type="LogMessage"/>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+<xsd:element name="Warnings" minOccurs="0" maxOccurs="1">+
+<xsd:complexType>+
+<xsd:sequence minOccurs="0" maxOccurs="unbounded">+
+<xsd:element name="Warning" type="LogMessage"/>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+<xsd:element name="Approvers" minOccurs="0" maxOccurs="1">+
+<xsd:complexType>+
+<xsd:sequence maxOccurs="unbounded">+
+<xsd:element name="Approver" type="Actor" />+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+</xsd:sequence>+
+</xsd:complexType>+
+</xsd:element>+
+<xsd:complexType name="LogMessage">+
+<xsd:sequence>+
+<xsd:element name="Code" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="Description" type="xsd:string" minOccurs="1" maxOccurs="1" />+
+<xsd:element name="FlexField1" type="xsd:string" />+
+<xsd:element name="FlexField2" type="xsd:string" />+
+<xsd:element name="FlexField3" type="xsd:string" />+
+</xsd:sequence>+
+</xsd:complexType>+
+<xsd:complexType name="Actor">+
+<xsd:attribute name="Name"/>+
+<xsd:attribute name="Email"/>+
+<xsd:attribute name="Designation"/>+
+<xsd:attribute name="ApprovalSequence"/>+
+<xsd:attribute name="FlexField1"/>+
+<xsd:attribute name="FlexField2"/>+
+<xsd:attribute name="FlexField3"/>+
+<xsd:attribute name="FlexField4"/>+
+<xsd:attribute name="FlexField5"/>+
+</xsd:complexType>+
1) approvers element is added to output xsd and not to input xsd.
2) I see a javascript error "Object expected" iin "Initiating a test instance" BPEL screen.
3) The new approver element contains only attributes.
Could someone help me understand the issue with the XSD. Your help is highly appreciated.
Thanks & Regards
Leena

Main issue was I was using an element
<xsd:element name="DataElements" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>
Most of the worflow services return status, errors and warnings
and doesn't return any DataElements.
In current implementation, only one of the workflow services returns approver list.
To take care of future scenarios
where a data element might be required to return some data,
an extra 'DataElement' field is added to the XSD.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="DataElement" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="Name"/>
<xsd:attribute name="Value"/>
<xsd:attribute name="FlexField1"/>
<xsd:attribute name="FlexField2"/>
<xsd:attribute name="FlexField3"/>
<xsd:attribute name="FlexField4"/>
<xsd:attribute name="FlexField5"/>
</xsd:complexType>
</xsd:element>
     </xsd:sequence>
          </xsd:complexType>     
          </xsd:element>
which I had to change to
<xsd:element name="DataElements" minOccurs="0" maxOccurs="1">
<xsd:complexType>
<xsd:sequence minOccurs="0" maxOccurs="unbounded">
<xsd:element name="DataElement" type="DataElementType" />
</xsd:sequence>
</xsd:complexType>     
     </xsd:element>
<xsd:complexType name="DataElementType">
<xsd:attribute name="Name" type="xsd:string"/>
<xsd:attribute name="Value" type="xsd:string"/>
<xsd:attribute name="FlexField1" type="xsd:string"/>
<xsd:attribute name="FlexField2" type="xsd:string"/>
<xsd:attribute name="FlexField3" type="xsd:string"/>
<xsd:attribute name="FlexField4" type="xsd:string"/>
<xsd:attribute name="FlexField5" type="xsd:string"/>
</xsd:complexType>

Similar Messages

  • Problem parsing XML with schema when extracted from a jar file

    I am having a problem parsing XML with a schema, both of which are extracted from a jar file. I am using using ZipFile to get InputStream objects for the appropriate ZipEntry objects in the jar file. My XML is encrypted so I decrypt it to a temporary file. I am then attempting to parse the temporary file with the schema using DocumentBuilder.parse.
    I get the following exception:
    org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element '<root element name>'
    This was all working OK before I jarred everything (i.e. when I was using standalone files, rather than InputStreams retrieved from a jar).
    I have output the retrieved XML to a file and compared it with my original source and they are identical.
    I am baffled because the nature of the exception suggests that the schema has been read and parsed correctly but the XML file is not parsing against the schema.
    Any suggestions?
    The code is as follows:
      public void open(File input) throws IOException, CSLXMLException {
        InputStream schema = ZipFileHandler.getResourceAsStream("<jar file name>", "<schema resource name>");
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = null;
        try {
          factory.setNamespaceAware(true);
          factory.setValidating(true);
          factory.setAttribute(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
          factory.setAttribute(JAXP_SCHEMA_SOURCE, schema);
          builder = factory.newDocumentBuilder();
          builder.setErrorHandler(new CSLXMLParseHandler());
        } catch (Exception builderException) {
          throw new CSLXMLException("Error setting up SAX: " + builderException.toString());
        Document document = null;
        try {
          document = builder.parse(input);
        } catch (SAXException parseException) {
          throw new CSLXMLException(parseException.toString());
        }

    I was originally using getSystemResource, which worked fine until I jarred the application. The problem appears to be that resources returned from a jar file cannot be used in the same way as resources returned directly from the file system. You have to use the ZipFile class (or its JarFile subclass) to locate the ZipEntry in the jar file and then use ZipFile.getInputStream(ZipEntry) to convert this to an InputStream. I have seen example code where an InputStream is used for the JAXP_SCHEMA_SOURCE attribute but, for some reason, this did not work with the InputStream returned by ZipFile.getInputStream. Like you, I have also seen examples that use a URL but they appear to be URL's that point to a file not URL's that point to an entry in a jar file.
    Maybe there is another way around this but writing to a file works and I set use File.deleteOnExit() to ensure things are tidied afterwards.

  • Really is not icloud that opens.  It`s a message that says that icloud has problems to open with one specific account.  This happens since I did the last actualization of the operator system open

    Really is not icloud that opens.  It`s a message that says that icloud has problems to open with one specific account.  This happens since I did the last actualization of the operator system open

    You don't need to start a new thread - you just use the 'Reply' button at bottom right of the answering post. Anyway as you're here...
    You should start by going to System Preferences (or is it called Settings in ML?)>iCloud and clicking the Sign Out button. Then sign back in again. Your iCloud data will disappear from your Mac when you do this (but not from the server) - it will reappear when you sign back in. Alternatively if the message identifies an account which is signed in at System Preferences>Mail, Contacts and Calendars you should log out and in there.

  • DVD Player has problem catching up with DVD burned from DVD SP

    I have a DVD with about 20 small videos and when I watch them either from the menu that plays the chosen video or from the Play All list I created with a story, it was often starting the videos already into the video by a second or sometimes a few frames. It did NOT do this in simulator or on the computer DVD player, but it did it on a few of the external DVD players I had hooked up to TVs. I played it on 4 DVD players and it had this problem on a handful of the videos on just two of the DVD players. They were always the same videos too.
    So, I inserted a 15 second slug of video that I exported from FCP to give the DVD players time to process before the video actually started playing. The problem with this is that it moved the video track fine, but it moved the audio just slightly off from the video. The maddening thing is that it moves the video in such a way that it is off by part of a frame. How the heck does that happen????? And it won't let me move it to the nearest actual frame.
    So, I need help. How do I fix it to where the audio still lines up to the video or how can I avoid the first problem so that I don't need to insert a slug?
    I have to submit this DVD Monday morning to discmakers - help please!!!!

    I suggest that you create 15-second silent audio slug that you can use to move the audio the same amount you have moved the video.
    John Link

  • [ETL]Could you please help with a problem accessing UML stereotype attributes ?

    Hi all,
    Could you please help with a problem accessing UML stereotype attributes and their values ?
    Here is the description :
    -I created a UML model with Papyrus tool and I applied MARTE profile to this UML model.
    -Then, I applied <<PaStep>> stereotype to an AcceptEventAction ( which is one of the element that I created in this model ), and set the extOpDemand property of the stereotype to 2.7 with Papyrus.
    -Now In the ETL file, I can find the stereotype property of extOpDemand as follows :
    s.attribute.selectOne(a|a.name="extOpDemand") , where s is a variable of type Stereotype.
    -However I can't access the value 2.7 of the extOpDemand attribute of the <<PaStep>> Stereotype. How do I do that ?
    Please help
    Thank you

    Hi Dimitris,
    Thank you , a minimal example is provided now.
    Version of the Epsilon that I am using is : ( Epsilon Core 1.2.0.201408251031 org.eclipse.epsilon.core.feature.feature.group Eclipse.org)
    Instructions for reproducing the problem :
    1-Run the uml2etl.etl transformation with the supplied launch configuration.
    2-Open lqn.model.
    There are two folders inside MinimalExample folder, the one which is called MinimalExample has 4 files, model.uml , lqn.model, uml2lqn.etl and MinimalExampleTransformation.launch.
    The other folder which is LQN has four files. (.project),LQN.emf,LQN.ecore and untitled.model which is an example model conforming to the LQN metamodel to see how the model looks like.
    Thank you
    Mana

  • Issue with working on a webservice that has  xml elements with attributes

    This is  a branchout of Thread: Some more complex sample of invokin WS needed_
    We are working on a project that involves a outbound SALT Web service call that includes complex elements with attributes..We are looking for options of how to use FML API's to pass these attribute values from the application code.
    We opened a ticket with oracle where we were suggested to frame the entire xml and pass the xml using the FML32 of the complex element. But when we framed the xml for Service and put the entire XML which includes the attributes using the FML ID of Service.
    Please find a sample Schema and XML similar to the one we are working on...its associated code
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xs:element name="Service" type="Service_Type" nillable="true">
              <xs:annotation>
                   <xs:documentation>Comment describing your root element</xs:documentation>
              </xs:annotation>
         </xs:element>
         <xs:complexType name="Service_Type">
              <xs:sequence>
                   <xs:element name="DateTime" type="xs:dateTime" nillable="true">
                   </xs:element>
                   <xs:element name="UUID" nillable="true">
                   </xs:element>
                   <xs:element name="Status" type="xs:string" nillable="true" minOccurs="0" maxOccurs="unbounded">
                   </xs:element>
              </xs:sequence>
              <xs:attribute name="Version" type="xs:string" use="required">
              </xs:attribute>
              <xs:attribute name="Name" type="xs:string" use="required">
              </xs:attribute>
         </xs:complexType>
    </xs:schema>
    The sample XML is :
    ___<?xml version="1.0" encoding="UTF-8"?>___
    ___<!--Sample XML file generated by XMLSpy v2010 rel. 2 (http://www.altova.com)-->___
    ___<Service Name="TestService" Version="1.1" xsi:noNamespaceSchemaLocation="Untitled6.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">___
    ___     <DateTime>2001-12-17T09:30:47Z</DateTime>___
    ___     <UUID>text</UUID>___
    ___</Service>___
    wsdlcvt generated the mif file with Service as a FML32 type and all its child elements as "mbstring". We tried to leave as it is and we also tried to replace all the child elements and just had a mif entry for "Service" as a mbstring neither produced a different output...Tried to dump using Ferror32 which did not dump any..._
    The sample C/C++ code as per suggestions were to do the following...
    _1) Have a string with the entire XML for Service_
    xmldata="<Service Name=\"TestService"\ Version="1.1\"_ xsi:noNamespaceSchemaLocation=\"Untitled6.xsd\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">_
    _     <DateTime>2001-12-17T09:30:47Z</DateTime>_
    _     <UUID>text</UUID>_
    _</Service>";_
    _2) Use Fmbpack32 to create a mbstring data_
    _memcpy(reqmbptr, (char*)xmldata.data(),xmldata.length());_
    _len=xmldata.length();_
    _Fmbpack32(mbcodeName,reqmbptr,len, packdata,(FLDLEN32 *)&packedlen,0);_
    userlog("Size of packedlen is %d",packedlen);
    3) Add the packed data to the output buffer
    Fadd32(fmlbuffer,Service, packdata,packedlen );
    But we do not see the Service tag populated in the GWWS outbound request.Everything else makes it....any help on how to move ahead would be appreciated...

    It seems you switch to the 10gR3 GA and now the whole XML data is mapped to FLD_MBSTRING.
    I will forward my sample to you by mail, but this sample is not offical sample, it is just QA test case. You can refere it and check what's the difference.
    Please let me know your mail address.
    Regards,
    Xu he

  • Mid 2011 mbp i7 with a SSD has problems, including grey screen/blue screen/beeping/freezing when I stream live video (i.e. watch espn or time warner cable) Help? Ideas?

    Recently my Macbook Pro (June 2011, i7, 8gb RAM, 512gb SSD, AMD Radeon 6750, Mountain Lion - since July - currently 10.8.2) has been presenting me with an array of problems, usually initiated when I am streaming live video. I was streaming Time Warner Cable on 12/9 and it gave me what looked like the blue screen of death.  It started up after about five attempts that time. The other day, after about a week of not using the computer, it wouldn't boot past the grey screen. I (option) started it and it gave me two boot choices, the regular HD and a "10.8 restore" option.  The HD gave me the grey screen and the restore option gave me the dark blue screen. I reset PRAM and that didn't work.  After a force (x) start it worked.  Today, I was using "Watch ESPN" and the screen froze and the computer did some kind of repeating RAM beep or something.  I rebooted and it started up fine.  I'm not watching any videos anymore, but this is a problem since the primary purpose for my mbp is video editing. I'm still under AppleCare but I find more solid answers in the forums or at least better questions for the AppleCare people.
    Anybody have similar experiences, or a solid idea of what the heck has happened to my machine?

    I'm not really sure what method that person was talking about. I just read he had a successful install so I posted it.
    But I'll hazard a guess
    1. copy your entire drive to a backup drive
    2. boot into that drive and test it out - make sure its a flawless backup, it works, and the hard drive has no problems
    3. eject that drive, disconnect it and reboot into the leopard install dvd
    4. erase your main hard drive using disc utilities on the leopard install dvd -- you've made a backup, made sure that backup was good, and disconnected it so it's currently safely disconnected from the leopard install you're about to do. Also, on the hard drive you're erasing and installing leopard on to, many people recommend "Zeroing" it as well as erasing it. That option is part of the erase function in disc utilities on the leopard install disc.
    5. do a clean install of leopard
    6. follow step 4 from that original post exactly as that person described to do.
    7. read the rest of what they said
    That's pretty much it. With the backup/erase/clean install/import/ you pretty much get everything you need exactly the way you want it with very few things missing -- and you've done this over a clean install. Plus that poster did mention that you can select what you want to import from your backup hard drive.
    It sounds like its a "clean install" method that gives you control via "import from machine" option in the installer. Control over what parts of your "old mac" you want to import into your "new leopard mac".
    Hopefully that helps. It sounds more involved, but its actually pretty quick and provides you with a perfectly save backup in case anything goes wrong with the leopard install.

  • When I turn my computer on I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. I think this has something to do with Apple "push". I had a problem with this in iTunes when I tried to sync my iPod Touc

    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware. I click on yes but nothing happens. The change has something to do with Apple "push". I recently had a problem with"push" on iTunes when I tried to sync my iPod Touch. I have latest software for iTunes and iPod. Can anyone tell me what to do to get this change to install?

    ptford wrote:
    When I turn my computer on (Windows 7) I receive a message that Apple wants to make a change to the hardware
    Since hardware cannot be changed with software, perhaps you would be so kind as to post the exact wording of the message?

  • TS3789 I have similar problem, my apple tv which has always worked properly with my Samsung tv will no longer play any audio after the latest 5.1 upgrade. Very frustrating as it was working perfectly before. I am starting to not trust apple upgrades until

    I have similar problem, my apple tv which has always worked properly with my Samsung tv will no longer play any audio after the latest 5.1 upgrade. Very frustrating as it was working perfectly before. I am starting to not trust apple upgrades until proven for example ios6 on iPhone with that stupid map app instead of google maps.
    I just want to buy and hear my iTunes music and videos on my apple tv, could before cant now. Thank you apple. Time to pack up the apple tv and start torrenting without the ios-bs.
    Disheartened apple fan.

    Welcome to the  discussion forums.
    Try going to synching in the sources menu on your tv and selecting 'change itunes library', when it gives you the passcode check itunes to see if the tv is showing up as a new device, if so try entering the pass code. It may be that your tv is seeing itunes as a different library because of a recent upgrade.

  • Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?

    Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?  It works on the iPhone.

    It takes two to tango, maybe it's your recipient that has weak Internet/Cellular connections.

  • How to fix a problem with my book pro that has a gray screen with a folder with a question mark on it

    does any one know how to fix a problem with my book pro that has a gray screen with a folder with a question mark on it?

    Hello Mokhtary123 and welcome to Apple Support Communities,
    It will help us diagnose your problem to know the exact model, size, year built, RAM installed and OS you're running.
    But basically your system can't find the boot disk. Usually this is a symptom of a dead/dying/corrupted hard drive;
    A flashing question mark or globe appears when you start your Mac - Apple Support
    OS X Recovery
    http://support.apple.com/en-us/HT4718

  • Please help , I have iPhone 4S and have updated to iso6, don't know if that has anything to do with the problem but I can't set the year on date and time to the correct year, it automatically goes to 2578 ? Plz help

    Subject:
    Please help , I have iPhone 4S and have updated to iso6, don't know if that has anything to do with the problem but I can't set the year on date and time to the correct year, it automatically goes to 2578 ? Plz help

    Settings>General>International.
    Set the calendar to "Gregorian". You have it set to Buddhist.

  • Has anyone not working with .dv files had synchronization problems?

    Has anyone not working with .dv files had sound synchronization problems? I'm not exactly sure what the alternatives to DV are, but I think one of them is HD.
    The reason for asking this question is to help isolate the nature and cause of a very serious flaw in iMovie '11. In the original release of iMovie '11 (version 9.0) there was a small--but serious--synchronization problem. In the 9.01 there is a large synchronization problem. We know of one person who has not experienced the problem, and he is not working with DV files (media). So we want to find out if anyone who is using something other than .dv files is experiencing a lack of synchronization between sound and picture. Knowing the answer to this will help with figuring out where the cause lies. For the initial iMovie '11 release (9.0), you probably would not notice a problem unless you had very long event-clips, e.g., two hours long. Events get this long if you are transferring from analog 8 mm tapes. Even then, it would have to be in scenes in which the connection between event and sound is obvious, e.g., close ups of people talking. It isn't until the 9.01 release that most people would notice anything. All we need to do is establish one case of a synchronization problem in which the person is using something other than DV.
    Message was edited by: Paul Bullen

    Hopefully, the 9.0.2 release will make my question moot. Zyfert must have posted the announcement of the release just as I was formulating my question. Still, if you have information on the subject, it would be interesting to hear.

  • Tp ended with error code 0247 - addtobuffer has problems with data- and/or

    Hello Experts,
    If you give some idea, it will be greatly appreciated.
    This transported issue started coming after power outage, sap system went hard shutdown.
    Then we brought up the system. Before that , we do not have this transport issue.
    our TMS landscape is
    DEV QA-PRD
    SED-SEQSEP
    DEV is having the TMS domain controller.
    FYI:
    *At OS level, when we do scp command using root user, it is fine for any TR.
    In STMS, while adding TR in SEQ(QA system), we  are getting error like this.
    Error:
    Transport control program tp ended with error code 0247
         Message no. XT200
    Diagnosis
         An error occurred when executing a tp command.
           Command:        ADDTOBUFFER SEDK906339 SEQ client010 pf=/us
           Return code:    0247
           Error text:     addtobuffer has problems with data- and/or
           Request:        SEDK906339
    System Response
         The function terminates.
    Procedure
         Correct the error and execute the command again if necessary.
    This is tp version 372.04.71 (release 700, unicode enabled)
    Addtobuffer failed for SEDK906339.
      Neither datafile nor cofile exist (cofile may also be corrupted).
    standard output from tp and from tools called by tp:
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0247

    when we do scp using sm69,
    SEDADM@DEVSYS:/usr/sap/trans/cofiles/K906339.SED SEQADM@QASYS:/usr/sap/trans/cofiles/.
    it throws the error like below,
    Host key verification failed.
                                                                                    External program terminated with exit code 1
    Thanks
    Praba

  • My imac has problem with HP Photosmart 210a.

    Hello
    I have an I MAc with lion. And i Buyed an HP Photosmart 210a but the software on the CD id not completly with lion only with snow leopard.
    Since this time i put the CD in the MAc my mac has Problems When i Startet Itunes he is running slowly and made e e e e e e e e.
    The Software updater on mac show me every time the same Printer Software Update is For Update Ready, But every time he say it is finisched update but when i make a new search for updates he show me the same update is avaible for install.
    When i Close down the mac and start new is the same problem.
    You know the problem?
    regreads
    Markus

    I've got the same problem on my MacBook Pro with Snow Leopard and Gutenprint 5.2.5 when printing on the 7150 - it prints about 10% (and skewed at that) and spits out the page. This occurs when printing from any app.
    I am only able to print in draft mode which is not suitable for anything I need to do.
    I realize this printer is no longer officially supported, but any help would be appreciated!
    Thanks,
    Mike.

Maybe you are looking for

  • ICloud with os lion 10.5.8 and IPhone 3Gs

    What a pain in the A**.  Is there anyone out there that can assist me? I would soooooo appreciate the feedback.  Not sure if its fully functional with this combination. (ICloud, Lion 10.5.8, IPhone 3Gs)  I dont want MobileMe.  I have an Mac email. I

  • After scanning my document and converting to Microsoft Word the size of characters are different

    After scanning my document and converting to Microsoft Word the size of characters are different and things like puntuation are distorted. How do I get the uniformity like the original?

  • Problem in setCursor as WAIT_CURSOR

    I have one swing application in which cursor is changed through setCursor() at every action_performed. My problem is if When some process is going on the Cursor changes successfully to Wait Cursor but if during the process if i move cursor to the Tit

  • Adobe CS6 not listed in installed programs?

    As the title states when I go into Control Panel and "Uninstall a Program", my Web/Design Premium CS6 isn't listed. I wanted to uninstall it before installing CC. Is there any other way to safely uninstall CS6 besides the control panel? It's not caus

  • Another user using ipod software error

    When I try to update my ipod nano I get the message that another user on my computer is using the ipod software and it is unable to communicate with this ipod. All other users are logged off. Any suggestions?