Problem getting xslt transform to work

I have the following ABAP Xslt  transformation
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sap="http://www.sap.com/sapxsl" version="1.0"
>
<xsl:strip-space elements="*"/>
     <xsl:template match="/">
          <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
               <asx:values>
                    <ALLIR_REIKNINGAR>
                         <xsl:apply-templates select="//Invoice"/>   
                    </ALLIR_REIKNINGAR>
               </asx:values>
          </asx:abap>
     </xsl:template>
    <xsl:template match="Invoice">
    <REIKNINGUR>
        <REIKN_NUMER>
            <xsl:value-of select="cbc:ID"/>           
        </REIKN_NUMER>
        <REIKN_AFRIT>
            <xsl:value-of select="cbc:CopyIndicator"/>
        </REIKN_AFRIT>
        <REIKN_UTGAFUDAGS>
            <xsl:value-of select="cbc:IssueDate"/>
        </REIKN_UTGAFUDAGS>
        <REIKN_MYNT>
            <xsl:value-of select="cbc:DocumentCurrencyCode"/>
        </REIKN_MYNT>
        <REIKN_TIMABIL_FRA>
            <xsl:value-of select="cac:InvoicePeriod/cbc:StartDate"/>
        </REIKN_TIMABIL_FRA>
        <REIKN_TIMABIL_TIL>
            <xsl:value-of select="cac:InvoicePeriod/cbc:EndDate"/>
        </REIKN_TIMABIL_TIL>
    </REIKNINGUR>
    </xsl:template>
</xsl:transform>
And the following XML input file
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="vodafone_xslt_namespace.xslt"?>
<Invoice
xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
xmlns:qdt="urn:oasis:names:specification:ubl:schema:xsd:QualifiedDatatypes-2"
xmlns:udt="urn:un:unece:uncefact:data:specification:UnqualifiedDataTypesSchemaModule:2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ccts="urn:un:unece:uncefact:documentation:2"
xmlns:stat="urn:oasis:names:specification:ubl:schema:xsd:DocumentStatusCode-1.0"
xmlns:clm5639="urn:un:unece:uncefact:codelist:specification:5639:1988"
xmlns:clm54217="urn:un:unece:uncefact:codelist:specification:54217:2001"
xmlns:clm66411="urn:un:unece:uncefact:codelist:specification:66411:2001"
xmlns:clmIANAMIMEMediaType="urn:un:unece:uncefact:codelist:specification:IANAMIMEMediaType:2003"
>
     <cbc:UBLVersionID>2.0</cbc:UBLVersionID>
     <cbc:CustomizationID>NES</cbc:CustomizationID>
     <cbc:ProfileID schemeID="Profile"
     schemeAgencyID="NES">urn:www.nesubl.eu:profiles:profile4:ver1.1</cbc:ProfileID>
     <cbc:ID>PB1554421</cbc:ID>
     <cbc:CopyIndicator>false</cbc:CopyIndicator>
     <cbc:IssueDate>2011-12-31</cbc:IssueDate>
     <cbc:InvoiceTypeCode listID="UN/ECE 1001 Restricted" listAgencyID="NES">380</cbc:InvoiceTypeCode>
     <cbc:Note languageID="IS">Company name</cbc:Note>
     <cbc:DocumentCurrencyCode listID="ISO 4217 Alpha">ISK</cbc:DocumentCurrencyCode>
     <cbc:AccountingCost>2001523</cbc:AccountingCost>
     <cac:InvoicePeriod>
          <cbc:StartDate>2011-12-01</cbc:StartDate>
          <cbc:EndDate>2011-12-31</cbc:EndDate>
     </cac:InvoicePeriod>
</Invoice>
My problem is that this transformation does not work unless I completly strip out the namespace parts i.e. cbc:
How can I get the parser to read the tags with namespace part. And if the parser can not handle namespace in XML how can I go about reding the data into sap ?

I think you are trying convert the xml to an internal table because of // in apply-templates, then you need to change last XSLT program and include <item> tag inside the <xsl:template match="inv:Invoice">  template, see updated XSLT bellow.
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:inv="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2"
xmlns:qdt="urn:oasis:names:specification:ubl:schema:xsd:QualifiedDatatypes-2"
xmlns:udt="urn:un:unece:uncefact:data:specification:UnqualifiedDataTypesSchemaModule:2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ccts="urn:un:unece:uncefact:documentation:2"
xmlns:stat="urn:oasis:names:specification:ubl:schema:xsd:DocumentStatusCode-1.0"
xmlns:clm5639="urn:un:unece:uncefact:codelist:specification:5639:1988"
xmlns:clm54217="urn:un:unece:uncefact:codelist:specification:54217:2001"
xmlns:clm66411="urn:un:unece:uncefact:codelist:specification:66411:2001"
xmlns:clmIANAMIMEMediaType="urn:un:unece:uncefact:codelist:specification:IANAMIMEMediaType:2003"
xmlns:sapxsl="http://www.sap.com/sapxsl"
version="1.0">
  <xsl:strip-space elements="*"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="/">
    <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
      <asx:values>
        <ALLIR_REIKNINGAR>
          <xsl:apply-templates select="//inv:Invoice"/>
        </ALLIR_REIKNINGAR>
      </asx:values>
    </asx:abap>
  </xsl:template>
  <xsl:template match="inv:Invoice">
    <item>
    <REIKNINGUR>
      <REIKN_NUMER>
        <xsl:value-of select="cbc:ID"/>
      </REIKN_NUMER>
      <REIKN_AFRIT>
        <xsl:value-of select="cbc:CopyIndicator"/>
      </REIKN_AFRIT>
      <REIKN_UTGAFUDAGS>
        <xsl:value-of select="cbc:IssueDate"/>
      </REIKN_UTGAFUDAGS>
      <REIKN_MYNT>
        <xsl:value-of select="cbc:DocumentCurrencyCode"/>
      </REIKN_MYNT>
      <REIKN_TIMABIL_FRA>
        <xsl:value-of select="cac:InvoicePeriod/cbc:StartDate"/>
      </REIKN_TIMABIL_FRA>
      <REIKN_TIMABIL_TIL>
        <xsl:value-of select="cac:InvoicePeriod/cbc:EndDate"/>
      </REIKN_TIMABIL_TIL>
    </REIKNINGUR>
   </item>
  </xsl:template>
</xsl:transform>
According to the XSLT program you need dclare an itab like this:
DATA: BEGIN OF ls_reikningur,
      reikn_numer(10) TYPE c,
      END OF ls_reikningur.
DATA: BEGIN OF ls_invoice,
      reikningur LIKE ls_reikningur,
      END OF ls_invoice.
DATA: lt_invoice LIKE TABLE OF ls_invoice.
And finally you need a call transformation in your abap code like this:
DATA: root_error TYPE REF TO cx_root.
DATA: lv_mess TYPE string.
TRY.
    CALL TRANSFORMATION  zinvoice
       SOURCE XML lv_xml
       RESULT allir_reikningar = lt_invoice.
  CATCH cx_root INTO root_error.
    lv_mess = root_error->if_message~get_text( ).
    WRITE lv_mess.
ENDTRY.

Similar Messages

  • Having a real problem getting my vi to work - great difficulty running sequence as desired

    Hi
    I am have a real problem getting my vi to work as required.
    I would like the my vi (EXAMPLE.vi in the vi library attached) to run continuously.  It should update the graphs on the front pannel and also save data to file when requested using the  save data to file button. (I have written a sub vi. to deal with this data handling and file saving which run in two while loops with the vi as can be seen on inspection of the block diagram)
    Now, what I would like is for the updating to pause whenever I change any of the settings on the front panel (which are controls in the first half of the sequence of the vi) so the hardware is reset.  As it is at the moment I have to stop the vi to change the front panel settings and then restart it in order for the first part of the sequence to run and re-set the values on the hardware.
    I guess I need to use some kind of event driven programming an event stucture or something like that. This is quite advanced and I don't know how to implement it. 
    Can anybody offer any Ideas. 
    Many many thanks
    Ashley
    Attachments:
    test library.llb ‏470 KB

    Hi,
    If you are new to event structures then you may find the following tutorial useful:
    Event-Driven Programming in LabVIEW
    http://zone.ni.com/devzone/conceptd.nsf/webmain/E5F8474BDA20C97786256B5A0066968B?opendocument
    A powerful New Tool for UI Programming--User Interface Event Programming
    http://zone.ni.com/devzone/conceptd.nsf/webmain/2a8ab43b28bbde1086256b830059875c
    Advanced Event Handling with LabVIEW 7 Express
    http://zone.ni.com/devzone/conceptd.nsf/webmain/aa79ff38336eb38886256d2b004aca49#1
    I hope this helps
    All the best
    Kurt

  • Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    Hello, i am having problems getting face time to work, I keep getting an error message saying the server could not process the registration, I am using the username and password I always have and it has always worked in the past, any ideas?

    We aren't Apple, just users like you volunteering to help other users with problems. Threatening to go to Samsung doesn't mean anything to us. What troubleshooting have you tried so far?

  • Problem with XSLT Transformation on BPM

    Hi there,
    I have a 1:N File --> Idocs Scenario with BPM, Inside the BPM i have an XSLT Transformation that has a problem i cant figure out, basically this XSLT Groups the file structure like this:
    <File>                                                *                  <Shipments>
       <Route>                                         *                     <Route>
          <Id>1</Id>                                   *                         <Id>1</Id>
          <delivery>1</delivery>               *                         <delivery>1</delivery>
       </Route>                                        *                         <delivery>2</delivery>
      <Route>                                          *                     </Route>
          <Id>1</Id>                                   *                     <Route>
          <delivery>2</delivery>               *                         <Id>2</Id>
       </Route>                                        *                         <delivery>3</delivery>
      <Route>                                          *                         <delivery>4</delivery>
          <Id>2</Id>                                   *                      </Route>
          <delivery>3</delivery>               *                   </Shipments>
       </Route>                                        *
       <Route>                                         *
          <Id>2</Id>                                   *
          <delivery>4</delivery>               *
       </Route>                                        *
    </File>                                               *
    It's supposed to generate 1 Route Segment for each disctint Route Id on the Source file, it has always worked fine as we ran several tests before going into production system, but now, sometimes it misses a few routes for example the output will be 25 different Routes for a source file that 28, or 2 routes from a file that as 3.
    I have tested the XSLT on the repository and it works fine all the time, same thing when using xml spy, i always download the payload i get from the file adapter, i got a source file from PRD that has 28 routes and i ran the whole scenario on QAS and it generated 12 routes only, im about to open an OSS message but first i wanted to know if anyone has seen something like this, thanks in advance for all the help you guys can provide.
    Best Regards,
    Roberto.
    p.s. i can send the XSL if needed or anything just ask for it.

    Hi,
    Basically because i  have to do 2 transformations, first i run the XSLT to group all the deliveries and such, and then i do a graphic mapping to split it into single Shipment Idocs, i dont know how to group by id on graphical mapping..., anyway i don't think the fact that im using BPM would finally alter the xslt result,
    Regards,
    Roberto.

  • XSLT transformation not working in 1.5 (but was in 1.4)

    Gentlemen,
    I have a problem with some code that worked fine under 1.4 (at least up to 1.4.2_06), but now no longer works under 1.5.0 (I know this isn't the most recent, but I have yet to update).
    I use the following XSL template in order to take a string containing a valid XML definition, strip out all whitespace (this is ok, I know I dont need it), and then indent it in a nice readable format.
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0" xmlns:xalan="http://xml.apache.org/xslt">
      <xsl:output method="xml" omit-xml-declaration="yes" indent="yes" xalan:indent-amount="2"/>
        <xsl:strip-space elements="*"/>
          <xsl:template match="@*|node()">
            <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
          </xsl:template>
    </xsl:stylesheet>The code I use to perform the transformation is as follows :
    // read the XML string into a DOM document structure
    StringReader reader = new StringReader(xmlString);
    InputSource source = new InputSource(reader);
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document doc = builder.parse(source);
    // Input file to be transformed is the DOM document we have just created
    Source input = new DOMSource(doc);
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Transformer transformer = tFactory.newTransformer(new StreamSource(new StringReader(TEMPLATE_AS_DEFINED_ABOVE)));
    // create output writer and transform
    StringWriter writer = new StringWriter();
    transformer.transform(input, new StreamResult(writer));
    System.out.println(writer.toString());As already stated, this produced the goods, in 1.4.2_06, but in 1.5.0 it results in the following error :
    java.lang.NullPointerException
         at gnu.xml.aelfred2.SAXDriver.getLineNumber(SAXDriver.java:1165)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.parseTopLevel(Parser.java:1077)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.parsePattern(Parser.java:1067)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Template.parseContents(Template.java:213)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet.parseOwnChildren(Stylesheet.java:590)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet.parseContents(Stylesheet.java:562)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.createAST(Parser.java:380)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.XSLTC.compile(XSLTC.java:325)
         at com.sun.org.apache.xalan.internal.xsltc.compiler.XSLTC.compile(XSLTC.java:410)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:791)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:619)
         at com.ingenico.tests.ReportTest.prettifyXMLString(ReportTest.java:231)
         at com.ingenico.tests.ReportTest.<init>(ReportTest.java:100)
         at com.ingenico.tests.ReportTest.main(ReportTest.java:136)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)
    ERROR:  'null'
    FATAL ERROR:  'Could not compile stylesheet'
    Exception in thread "main" javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:824)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:619)
         at com.ingenico.tests.ReportTest.prettifyXMLString(ReportTest.java:231)
         at com.ingenico.tests.ReportTest.<init>(ReportTest.java:100)
         at com.ingenico.tests.ReportTest.main(ReportTest.java:136)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)I have a headache now and would appreciate some help - not with the headache, but the above error! :)
    Cheers in advance,
    Lee.

    have you tried to remove the xalan specific entries
    in the XSL and use that code:
    transformer.setOutputProperty("{http://xml.apache.org/
    xslt}indent-amount", "2");?Thanks for the reply.
    Unfortunately, Ive already tried this, and it's not the problem.
    If I remove the whole <xsl:template match /> section from the template, then the compilation error does not occur. I guess this narrows it down somewhat, but I don't know why that section is now failing under 1.5. (Ive since also tried with 1.5.0_03 - same error).

  • Facing problem in XSLT transformation

    Hi all,
    I m new bie to XSLT n transformation. I have written a simple java program that uses the javax.xml.transform and javax.xml.parsers package to transform source file using a XSL file provided.
    When I excuted the program providing XSLT file that worked fine and transformed the XML but when I modified the XSLT and using Xpath functions, I m getting following exception :
    ERROR: 'Cannot find class 'xpath-functions'.'
    FATAL ERROR: 'Could not compile stylesheet'
    javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:824)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:613)
    at transformXML.main(transformXML.java:33)
    This is my XSLT file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:fn="http://www.w3.org/2005/xpath-functions"
    xmlns:xdt="http://www.w3.org/2005/xpath-datatypes">
         <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
         <xsl:template match="/">
              <Listfaultinterfaceslot>
                   <xsl:variable name="current_date" select="fn:string(fn:current-date())"/>
                   <!-- Get the components of the current date -->
                   <xsl:variable name="day">
                        <xsl:value-of select="fn:substring($current_date,9,2)"/>
                   </xsl:variable>
                   <xsl:variable name="month">
                        <xsl:value-of select="fn:substring($current_date,6,2)"/>
                   </xsl:variable>
                   <xsl:variable name="year">
                        <xsl:value-of select="fn:substring($current_date,1,4)"/>
                   </xsl:variable>
                   <xsl:variable name="formatted_date">
                        <xsl:value-of select="$month"/>
                        <xsl:text>/</xsl:text>
                        <xsl:value-of select="$day"/>
                        <xsl:text>/</xsl:text>
                        <xsl:value-of select="$year"/>
                   </xsl:variable>
                   <!-- Finally output the slots-->
                   <AppointmentSlot>
                        <xsl:attribute name="AppointmentSlotNo">1</xsl:attribute>
                        <xsl:attribute name="ExternalAppointmentSlotStart">
                        <xsl:value-of select="$formatted_date"/>
                             <xsl:text> 08:00:00</xsl:text>
                        </xsl:attribute>
                        <xsl:attribute name="ExternalAppointmentSlotEnd">
                        <xsl:value-of select="$formatted_date"/>
                        <xsl:text> 13:00:00</xsl:text>
                        </xsl:attribute>
                   </AppointmentSlot>
                   <AppointmentSlot>
                        <xsl:attribute name="AppointmentSlotNo">2</xsl:attribute>
                        <xsl:attribute name="ExternalAppointmentSlotStart">
                        <xsl:value-of select="$formatted_date"/>
                        <xsl:text> 13:00:00</xsl:text>
                        </xsl:attribute>
                        <xsl:attribute name="ExternalAppointmentSlotEnd">
                        <xsl:value-of select="$formatted_date"/>
                        <xsl:text> 18:00:00</xsl:text>
                        </xsl:attribute>
                   </AppointmentSlot>
              </Listfaultinterfaceslot>
         </xsl:template>
    </xsl:stylesheet>
    Please look into this n let me know the reason.
    Thanks alot
    Omesh

    thanks for response buddy.
    I am using the Java 5 SDK and package " javax.xml.transform" to get transformer. As per my undestanding, Java 5 Sdk has xalan transformer.
    This is my code:
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.*;
    import java.io.File;
    import org.w3c.dom.Document;
    public class transformXML
         public static void main(String[] args)
              System.out.println("Hello World!");
              String inputFile = args[0];
              String styleFile = args[1];
              String outFile = args[2];
              File sourceFileName = new File(inputFile);
              File stylesheet = new File(styleFile);
              File transformFileName = new File(outFile);
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setNamespaceAware(true);
    try {
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document document = builder.parse(sourceFileName);
    StreamSource stylesource = new StreamSource(stylesheet);
    TransformerFactory xfFactory = TransformerFactory.newInstance();
         Transformer transformer = xfFactory.newTransformer(stylesource);
    //transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
    DOMSource source = new DOMSource(document);
         StreamResult result = new StreamResult(transformFileName);
    transformer.transform(source,result);
    catch(Exception e) {
    e.printStackTrace();
    //throw new Exception("Error transforming XML - " + e.getMessage());
                   System.out.println("Error transforming XML - " + e.getMessage());
    I m looking for whether Java provided xalan transformer supports XSLT 2.0 or not. If u found any solution please let me know.
    many thanks,
    Omesh

  • Problem getting PS "template" to work properly after slicing

    Hi guys,
    Just a heads up first, this is going to be a little long for two reasons: 1) I have a bad habit of being verbose  2) I'm going to explain exactly what my problem is and what steps I took to get there so everyone knows exactly what has been done so far.
    So, I decided to give my hand a try at designing a full page template purely in Photoshop (CS4 for PS and Dreamweaver). It worked out great, looks awesome... but I didn't know what to do next. I'm currently enrolled for Web Design & Interactive Media in college, but alas I just started 5.5 weeks ago. However, I do have a photoshop learning center and posted my problem to my professors. After some long discussion of my professor telling me to slice it and just save to web & devices, and me finally being able to get it click that doing this makes a bunch of tables out of the images, I had my first full graphic web template. Problem #1: I have not worked with tables since Dreamweaver was Macromedia Dreamweaver 8... eons ago it seems. So, after finally getting everything into an HTML document, where I felt more at home, I started to play around with the tables, trying to remember anything at all about them. My professor helpfully suggested nesting the tables... it was greek to me. However, we live in the internet age, so I googled it up.
    Now I have my images all in wonderfully organized tables, except for five of the images. This is the jpeg of the template. So, I was loving the template, and that is the photoshop .jpg I saved to show my girlfriend what it would end up looking like. After realizing that I had NO idea how to get the text over those specific area's while the "content boxes" were still in tables, I decided to throw in my puny skill in CSS. I made new slices, and sliced up the upper two sections for the content-title1 & content-title2 and then made 2 more new slices for content-left and content-right, then a fifth slice for the bottom of the rounded boxes content-footer. Now, I have used others' templates in the past such as this site but he was using familiar territory for me.. <div> tags. Ok, so anyway I have 4 new tables to throw in... one each for the content headers "News" and the "Welcome to Illuminati" parts, and then two other boxes for the actual content of each section. After trying to figure out how to nest tables, I gave it a shot and while in design mode, it actually works... except the navbar is slid out far to the right. And when I uploaded the site, not only is the navbar way out in deep right field, but my content-right table slid under content-left. You can see the end result here.
    What I need help on:
    If any kind soul could please take a look at my code and tell me exactly where I'm fubarring things up, I would greatly appreciate it!
    If said kind soul could show me how to fix said problems, I would appreciate it even more!!
    Lastly, on that Livengood Investments website, if you notice the bottom section where the "article of the week" and thumblist is, with that guys' template, as I add content to those sections, it grows down so that you never have gaps or spaces etc. That is why I cut the middle content boxes into two, so that I could add content without worry of having the gaps etc. I did notice though, that if one side is longer in text than the other (on my secondlife.lift4ullc.com/test2.html site) then the other side has a gap. I'm going to assume this is because with the Livengood-Investments site, that middle section is actually 1 background? I could do the same with the boxes on my site, make them 1 section instead of two, if only I knew how to have two separate tables over their individual box... thanks!
    Every guide or tutorial or video I have found on the net about nesting tables gives you a simple 2 column 5 row walk-through. Very nice, and handy in some cases I'm sure, but I can't see how that helps me at this particular moment. =( Thank you in advance everyone, for your patience while I rambled, and your help in this matter.
    Matt

    Wow, quick replies! I knew there was a reason I love the Adobe forums over my normal haunt at Web Designers Group (WDG)! ^.^ Although, in fairness to them, they've been helpful before as well. Now, on to the replies....
    @SnakeEyez02: PM coming your way, thank you so very much! With the www.livengood-investments site, what I did was google up "free web templates" and found that layout (different background, and some customization to it to make it fit the company etc) but it was almost purely CSS done. I would say I've been working with CSS in some form or fashion for roughly 2 years, but only within the last 1-2 months have I really sat down to try to learn CSS. Table layouts (for me) are a thing of the past, when everyone and your uncle had a geocities or some other website. Thank you for letting me know this is possible to do without all of the tables... that is a huge relief and load off of my shoulders. http://secondlife.lift4ullc.com was my "first run" test at the website you've seen, and I've already gone in detail over that code to see why I have the gaps in my logo/header/navbar area, because for some reason I changed the size of those div's that were larger than the images But, I tried out that CSS site before I learned about slicing in PS, so that is why the color scheme is so different. I left it as it is because I would rather have my nifty content boxes ;-) Ok, so I have the starter, and I'll step back and just save the images and not the images + html. From there I'll start designing the site with CSS and div tags instead of the dreaded tables. Like I said though, PM coming. Thank you in advance for the help, I hope I don't make it too difficult for you
    @Boss Yes, I just started college, but I'm 28 now and have been meddling in some form or fashion in web sites for nearly 15 years. I just decided in the past month or so to actually turn it from a "hobby" to something more serious with the hopes of actually making a career out of it. I agree with you that CSS design is better than tables. I hate tables, haven't used tables in many years, and CSS is just so much easier to tweak and read the code than a page full of table coding (as I've learned these last few days). I know I'll be learning some coding in my later courses (today was the end of my first term freshman year) such as PHP, JavaScript, and I *think* some C+/++. CSS, I'm not really sure on. I have no doubt though that I'll be able to bug my professors that teach the courses for CSS... they should be up to date with standards and coding. This professor is actually a Photoshop specialist, and while I'm sure he knows some HTML and CSS, probably not as much as a coder or web developer (as opposed to him being a graphics designer). Thank you very much for the tutorial link, I really do appreciate it. I love tutorials, but sometimes the search for a good tutorial can be almost as fustrating as trying to figure these stupid tables out LOL. However, as I mentioned above, now that I know I can, I am switching over to CSS with yours and SnakeEyez's suggestions. Thank you Boss!
    Matt

  • Problem getting wi-fi to work. please help me.

    Hi,
    In my home, I have AT&T/Bellsouth DSL internet service with a download speed of 1.5 megabits and a Belkin wireless router. I have never had any problems whatsoever in getting any device to work with the network. I currently use two laptop computers, and stream Sirius internet radio over it. Well now with my new iPhone, it doesn't work on my network at all. I can connect my iphone to my network, it shows that I'm connected with a strong signal with all 3 bars on the icon on the screen, though I get zero internet usage with the phone. I went to the Apple Store yesterday and it connected to their network just fine and I had blazing speed, so I know that there doesn't seem to be anything wrong with my iPhone. Would someone please help me? I would greatly appreciate it.
    Thanks,
    Harbeth
    iMac G5 & BlackBook Mac OS X (10.4.10)

    Okay, I now have a solution. I found this information in another thread. I implemented it, and now my iPhone works on my network.
    "After reading many posts with many helpful suggestions:
    I was able to make my iphone work on my home wirless connection by choosing from the main screen
    "settings" then "Wi-fi" then under "Choose a Network" I selected my home network (Belkin) (little blue arrow at the end) then under "IP Address" I chose the "static" button clicked on the "DNS" numbers and entered the the DNS addresses of my router as shown on the summary page when I logged on to my router from my home computer. As for how to log on to your router and find your DNS addresses refer to your router documentation. I tried many of the other solutions and this is so far the only way I could get a connection to actually work. It would always show the strong network signal on my phone but would not be able to connect to the internet and find the server. Like some others who have posted, until this solution I was able to borrow a connection from my neighbor with no problems but his router was a linksys. Hopefully Apple will be patching up all these issues soon.
    I have no idea if this solution is permanent or even a good idea but it worked for me. Your mileage may vary. I do love the phone."
    Thanks to everyone for responding.
    Happy iPhoning,
    Harbeth
    iMac G5 & BlacBook

  • Problem Getting An Applet To Work

    Hi,
    I hope there is someone out there that can help me with this problem.
    I'm trying to get an applet to work inside of IE6 and I'm getting the following error message via Java Console,
    Error loading class: demo
    java.lang.ClassFormatError
    java.lang.ClassNotFoundException: demo
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    The java code is as follows,
    import java.applet.*;
    import java.awt.*;
    public class demo extends Applet {
    public void init() {
    public void paint(Graphics g) {
    g.drawString("Hello World", 50, 50);
    And the html (demo.htm) is
    <html>
    <head>
    </head>
    <body bgcolor="#00DCFF">
    <applet name="demo" code="demo.class" width="300" height="200">
    </applet>
    </body>
    </html>
    Both demo.htm and demo.class are both in the same directory. I used the Sun Java SDK version 1.4.1 to produce the class.
    I can get it to work if I enable
    Java (Sun)
    Use Java 2 v1.4.1 for applet
    within the Advanced options of IE6, but I don't want to have to force the user to have to either load the the SDK or the plug-in (by using OBJECT/EMBED) due to their size.
    thanks in advance,
    Wayne

    >
    Error loading class: demo
    java.lang.ClassFormatError
    java.lang.ClassNotFoundException: demoIf you load it into Netscape it'll work fine - I cant see any errors with ur code. Have u tried it in the appletviewer?

  • Problem getting (ALT key) to work in Flash

    Hi All,
    I hope there is somebody who can help me with the following issue:
    I can not get ALT key to work in Flash, if I want to use it in combination with other keys nor I can use it alone.
    For example, I have created an application which requires the usage of (ALT+F) in order to access certain thing, This does not seem to fire the key event.
    however if i use the same thing with (CTRL+F) or (SHIFT+F), it works fine.
    It is only ALT  which causes the key event not to fire.
    Is there a bug in Flash for using ALT key? Can anyone help me please?

    see here:
    http://forums.adobe.com/message/2127570

  • Problems getting e-mac to work with AEBS.

    I have been having some major problems getting connected to our network. We have most of our e-macs connected to the network via AEBS. The AEBS unit is connected by an ethernet connection. I have been trying to get connection to one of our computers for some time now, without any luck. Last night I finally had some connection, but was still unable to connect to the Internet. I was able to see some of the other base stations in the airport admin utility. I don't know what I did any different though to get the base station to recognize other base stations. I am really at a loss as to what to do to get connection.
    I have noticed that under system preferences, when I try to use DHCP, I am given a self-assigned ip address. I can put the ip address in manually. I also put the router in manually.
    I guess one of my questions would be how should I set up the base station and how should I set up the e-mac DHCP services? I currently have DHCP set up on the e-mac using Airport. I have the base station set up with the ethernet connection plugged into the LAN connector. This is the way that our other computers seem to be set up.
    I have heard talk about setting up WDS on the base station, but none of the other computers are set up this way and still receive connection to the Internet. If I were to set up WDS, what would I need to do? I still would like to connect by using ethernet connection to the base station.

    I have the aebs connected via an ethernet connection.
    OK, that is different that what I understood from your previous posts.
    I have the ethernet connection plugged into the LAN port on the back of the aebs.
    That is OK if there is another router on your network providing IP addresses AND this AEBS is configured so that the option to distribute IP addresses is DISABLED.
    Otherwise, it should be plugged into the WAN port.
    ...so should I have the e-mac set up using Airport to get connection to the aebs?
    The eMac should be set to use AirPort and DHCP to get an IP address.

  • Having problems getting Comcast internet to work with my power Mac running 10.5.8  Help needed

    Just got Comcast Cable and everything works: phone, WiFi, and TV, BUT ethernet won;t work with my power mac tower running 10.5.8 . Hooked modem to laptop running Microsoft and no problem, but it won't work with my Mac.  Any solutions out there?

    Hi, see if this changes anything...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • Glassfish Web Service XSLT Transformation Not Working

    Hi,
    I've got a problem transforming an incoming soap request from a Microsoft Web Services Toolkit client. Basically, I've got a JAX-WS web service deployed to Glassfish v2 b33 which works fine when called by a Java client, but when called from the MS web services toolkit, some extra namespace elements are added to the SOAP request which the JAX-WS service doesn't seem to like. The incoming soap request looks like: <SOAP-ENV:Envelope
         xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
         xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema"
         xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/">
         <SOAP-ENV:Header/>
         <SOAP-ENV:Body>
               <SOAPSDK4:getConfig xmlns:SOAPSDK4="http://ws.firestorm.alternativenetworks.com/">
              <SOAPSDK4:arg0>Inbound</SOAPSDK4:arg0>
         </SOAPSDK4:getConfig>
         </SOAP-ENV:Body>
    </SOAP-ENV:Envelope> The problem lies with <SOAPSDK4:arg0>Inbound</SOAPSDK4:arg0>, in that the inclusion of SOAPSDK4 for any arguments (i.e. arg0, arg1) results in the values for the arguments reaching the web service as null. I've tested sending the SOAP request with a tcpmon utility, and the same soap request (as above) without the SOAPSDK4 in the arg0 element (i.e. <arg0>Inbound</arg0>) works fine.
    So I tried using the Transformation feature of glassfish, transforming the incoming SOAP request using the following XSLT file which I have tested and am sure works (I'm no XSLT guru so this will definitely need some tidying up): <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet  version="1.0"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
         xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
         xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema"
         xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/">
         <xsl:output method="xml" indent="yes"/>
         <xsl:template match="*">
              <xsl:copy><xsl:copy-of select="@*"/><xsl:apply-templates/></xsl:copy>
         </xsl:template>
         <xsl:template match="/SOAP-ENV:Envelope/SOAP-ENV:Body/*">
              <xsl:copy>
                   <xsl:copy-of select="@*"/>
                   <xsl:for-each select="*">
                        <xsl:text disable-output-escaping="yes"><arg></xsl:text>
                        <xsl:value-of select="position() - 1"/>
                        <xsl:text disable-output-escaping="yes">></xsl:text>
                        <xsl:value-of select="."/>
                        <xsl:text disable-output-escaping="yes"></arg></xsl:text>
                        <xsl:value-of select="position() - 1"/>
                        <xsl:text disable-output-escaping="yes">></xsl:text>
                   </xsl:for-each>
              </xsl:copy>
         </xsl:template>
    </xsl:stylesheet>I load the .xsl file using the Transformation utility which seems to work fine, but when a request comes in from the MS client I get the following error: [#|2007-05-11T09:23:46.530+0100|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=15;_ThreadName=Thread-15;com.sun.enterprise.admin.event.wsmgmt.TransformationRuleEvent -- server [1 Change(s), Id:1, ts:1178871826530];|ADM1041:Sent the event to instance:[com.sun.enterprise.admin.event.wsmgmt.TransformationRuleEvent -- server [1 Change(s), Id:1, ts:1178871826530]]|#]
    [#|2007-05-11T09:27:31.675+0100|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=12;_ThreadName=httpWorkerThread-4848-0;com.sun.enterprise.admin.event.wsmgmt.TransformationRuleEvent -- server [1 Change(s), Id:2, ts:1178872051675];|ADM1041:Sent the event to instance:[com.sun.enterprise.admin.event.wsmgmt.TransformationRuleEvent -- server [1 Change(s), Id:2, ts:1178872051675]]|#]
    [#|2007-05-11T09:28:00.269+0100|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=13;_ThreadName=httpSSLWorkerThread-8080-0;_RequestID=89eadb09-2894-4ace-95f6-75043c1e6988;|
    ERROR:  ''|#]
    [#|2007-05-11T09:28:00.285+0100|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=13;_ThreadName=httpSSLWorkerThread-8080-0;_RequestID=89eadb09-2894-4ace-95f6-75043c1e6988;|
    com.sun.enterprise.admin.wsmgmt.transform.TransformException: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at com.sun.enterprise.admin.wsmgmt.transform.FilterChain.process(FilterChain.java:238)
         at com.sun.enterprise.admin.wsmgmt.transform.TransformFilter.process(TransformFilter.java:144)
         at com.sun.enterprise.admin.wsmgmt.filter.spi.FilterRouter.applyFilters(FilterRouter.java:69)
         at com.sun.enterprise.admin.wsmgmt.agent.GlobalMessageListenerImpl.processRequest(GlobalMessageListenerImpl.java:181)
         at com.sun.enterprise.webservice.monitoring.WebServiceEngineImpl.processRequest(WebServiceEngineImpl.java:265)
         at com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl.processRequest(JAXWSEndpointImpl.java:53)
         at com.sun.enterprise.webservice.MonitoringPipe.process(MonitoringPipe.java:127)
         at com.sun.xml.ws.api.pipe.helper.PipeAdapter.processRequest(PipeAdapter.java:79)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:559)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:518)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:503)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:400)
         at com.sun.xml.ws.api.pipe.helper.AbstractTubeImpl.process(AbstractTubeImpl.java:70)
         at com.sun.xml.ws.mex.server.MetadataServerPipe.process(MetadataServerPipe.java:97)
         at com.sun.enterprise.webservice.CommonServerSecurityPipe.processRequest(CommonServerSecurityPipe.java:191)
         at com.sun.enterprise.webservice.CommonServerSecurityPipe.process(CommonServerSecurityPipe.java:113)
         at com.sun.xml.ws.api.pipe.helper.PipeAdapter.processRequest(PipeAdapter.java:79)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:559)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:518)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:503)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:400)
         at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:208)
         at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:374)
         at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:175)
         at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:134)
         at com.sun.enterprise.webservice.Ejb3MessageDispatcher.handlePost(Ejb3MessageDispatcher.java:100)
         at com.sun.enterprise.webservice.Ejb3MessageDispatcher.invoke(Ejb3MessageDispatcher.java:74)
         at com.sun.enterprise.webservice.EjbWebServiceServlet.dispatchToEjbEndpoint(EjbWebServiceServlet.java:187)
         at com.sun.enterprise.webservice.EjbWebServiceServlet.service(EjbWebServiceServlet.java:116)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sun.enterprise.web.AdHocContextValve.invoke(AdHocContextValve.java:101)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:558)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:74)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:207)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:558)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1067)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:611)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:558)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1067)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:249)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:618)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:549)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:790)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:326)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:248)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:199)
         at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:328)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:93)
    Caused by: javax.xml.transform.TransformerException: java.lang.NullPointerException
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:651)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:281)
         at com.sun.enterprise.admin.wsmgmt.transform.FilterChain.process(FilterChain.java:224)
         ... 54 more
    Caused by: java.lang.NullPointerException
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1235)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TrAXFilter.parse(TrAXFilter.java:105)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:588)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:642)
         ... 56 more Could this be a bug in Glassfish or am I overlooking something or doing things completely wrong?
    Cheers.

    How are you passing the input to XSLT?
    If your input request is following:
    <cus:InputParameters xmlns:cus="http://www.tcs.com/Customer">
    <cus:customerID>2</cus:customerID>
    </cus:InputParameters>Then you should pass $body/cus:InputParameters as the Input document for bind input in Proxy Service.

  • Sudden problem getting CD-LabelPrint to work with Canon ip5200R

    The last time I successfully printed a disc label on my Canon ip5200R was in November last year - until then, I'd had no problems printing from a couple of different iMacs & my MacBook Air. I have recently tried to print a new label, but am receiving the message: "The Paper Settings are not correct. Please check the paper size, magnification ratio, and the paper orientation. To set the paper settings, please click on "Settings". To cancel printing, please click "Cancel"." All of my settings are correct! I used to get a message that advised me to check the "Quality & Media" settings, where I could make further adjustments (eg, tick "greyscale printing"), but I can no longer access this option.
    A Google search revealed that others have had similar problems - solutions suggested included updating the software. I was using CD LabelPrint v.1.3. I have installed v.1.7, but the problem persists. (When I installed v.1.8, the message indicated that there was no printer installed that would work with the program!) (I uninstalled the previous versions correctly by deleting the folder from Applications as well as from Preferences in the Library.) I have attempted to print from 4 different Macs - three of them are running Mac OS 10.5.8 and one is running 10.4.11- no luck with any of them! The only change that is consistent between them since November last year is that they have all received software updates for their operating systems. I am wondering whether something in these updates is now interfering with CD LabelPrint?
    I am frustrated with the amount of time this has taken so far, and so am hoping that someone will please be able to help me rectify the problem.
    - Merrilly

    Hi there,
    I have v1.60 of CD LabelPrint on my 10.5.8 VM and it is working fine. It also has all the Apple updates installed so I don't think this would be the cause.
    I also have v1.80 on 10.6 and it is working fine as well.
    The version 1.60 on 10.5.8 generates a pop-up as soon as the Print icon is pressed. This takes you to the Page Setup menu for CD LabelPrint to ensure you have the 'Format for' set to the iP5200R and the 'Paper Size' set to 'CD Tray C'. With these selected and the OK button pressed, the next warning window appears regarding the Quality & Media settings.
    If you manually open Page Setup in your CD LabelPrint, does it have the iP5200R set as the printer and the CD Tray C set for the paper size?
    Regarding the v1.8 and the error, this version was released to add support for Snow Leopard. Since you have to use the CUPS v10.26 driver on Snow Leopard (the v4.8.3 driver for Leopard cannot be used on SL) then maybe the same driver would have to be installed on Leopard in order for CD LabelPrint to function?
    Pahu

  • Problems getting static NAT to work between two internal lans

    Hi, I'm trying the old problem of routing between two internal LANs. This on cli 8.6(1)2. I have three interfaces/LANs; outside is to the internet, inside is the rack in the datacentre and office is a dedicated ethernet link to our office. What I want to do is allow all (for now) traffic betrween office and inside. There's a million hits on this on the 'net but I can't get it to work. Packet trace shows packets accepted from office to inside but blocked from inside to office. Both static nats are set up identically. Here's the output of show nat after packet traces in both directions. It clearly shows that inside to office isn't hitting the nat policy. I enclose what I think are the relevant bits of my config. Full config less passwords + crypto attached.
    Manual NAT Policies (Section 1)
    1 (office) to (inside) source static inside-office inside-office   destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 3
    2 (inside) to (office) source static inside-ld5 inside-ld5   destination static inside-office inside-office no-proxy-arp route-lookup
        translate_hits = 0, untranslate_hits = 0
    interface GigabitEthernet0/0
    nameif inside-ld5
    security-level 100
    ip address 10.20.15.2 255.255.255.0
    interface GigabitEthernet0/6
    nameif office
    security-level 100
    ip address 10.20.11.9 255.255.255.0
    object network inside-ld5
    subnet 10.20.15.0 255.255.255.0
    object network inside-office
    subnet 10.20.11.0 255.255.255.0
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    nat (office,inside) source static inside-office inside-office destination static inside-ld5 inside-ld5 no-proxy-arp route-lookup
    nat (inside,office) source static inside-ld5 inside-ld5 destination static inside-office inside-office no-proxy-arp route-lookup

    Hi Kevin,
    because your interfaces inside and office are in same security level and you have enabled same-security-traffic permit inter-interface, traffic should simply flow between this interfaces. So i think you don't need NAT between this two subnets if there is not other reason to do so.
    Then you just configure ACL which will permit traffic you want between this LANs. In this case both netwroks are directly conneted so routing should work(instead of NAT).
    Best Regards,
    Jan

Maybe you are looking for

  • Newly Installed HP desk jet 2510 all in one printer will not print web pages

    Hello; I have just now installed my new 2510 desk jet printer and installed all software. It prints saved docs fins, but when I try and print web docs from the "print view " screen, it does not print. I have tried this a few times now. Any suggestion

  • Linking Two Routers

    I have a Frontier modem/router and a Linksys E1200 router. I would like to connect them together so that I can switch between the Frontier service and a different service connected directly to the E1200. I have tried connecting them as documented in

  • Scale in line chart??

    Hi Experts, I have a req, in which i have to show two measures as line, and one measure as bar. I used line-bar combo but the problem is one of the measure in line is in the range of 400,000 to 1,000,000 and the other measure is in the order of posit

  • Add user to group in Exteranl Authentication mode

    I have configured my Login Server to authenticate against a database instance. Now I want to prepopulate certain Portal users and add them to appropriate groups. From SQL+ as PORTAL30 I ran the follwing: declare v_userid number; v_group number; begin

  • Tools & spares need to change as non stock items..

    Dear All, My client wants to make spares and tools as non stock items..previously they were stock items and they are around 2000 materials so instead of creating new materials with new material type i have decided to change material types of existing