Xsl sum question

hi all,
I'm trying to find the sum of a specific set of nodes and my sum statement looks like this:
<xsl:value-of select="sum(//row[*[name=$sortDefault]/month=$currentMonth]/obligation)"/>
This will sum up all the obligation nodes of all the rows that have $sortDefault as the name of the node and their month node equal to $currentMonth, however, I need the rows to have their year node equal to $currentYear also, is there any way i can add that criteria into that statement, month and year nodes are siblings, thanks in advance.

this is what my xml looks like:
<row>
<row>
<r_object_id>0000FE3451024</r_object_id>
<kex_agreement>service agreement</kex_agreement>
- <kex_date date="20050407">
<fulldate>4/7/05 4:03 PM</fulldate>
<year>2005</year>
<month>04</month>
<day>07</day>
</kex_date>
<agreement_name>5</agreement_name>
<obligation>300</obligation>
</row>

Similar Messages

  • XSL attribute question

    *<xsl:attribute name="xdofo:rowspancell-repeat-nextpage" xdofo:ctx="block">true</xsl:attribute>*
    Hello, can you provide me some example on how to use this code? i tried putting this code in a field in a table however it doesn't do any changes in my report, the header still don't repeat.
    i'm aware of the word functionality to repeat a header, but due to the structure of my table, that method will changes the output of my report. the reason is i have a looping condition in that header, so if i tried to repeat it, the looping also repeats.
    to summarize my table outline:
    <HEADER1>---repeating already
    <HEADER2 with looping condition>---> the one that i want to repeat
    both headers belongs to a one table
    i tried separating the header 2 to another table but it destroys my report output
    thanks in advance! :)

    Hi
    You may get help if you post your question on its forum.
    XML DB
    -Priyanka

  • SSRS expression sum question

    I want to add a column after Total lets say..'Progress' where Progress = sum(Actual)/sum(Budget)
    The only filter on Progress is to consider only those values from months where both Actual and Budget are present.
    So, e.g.
    For first row: 0/0 = 0
    For second row: 0/0 = 0
    For third row: 28334/67060(instead of 200511) = 0
    if there would have been an Actual value for the month of August e.g. 100, then (28334+100)/(67060+66614)
    For fourth row: 0/0 = 0
    How can I achieve this using expressions in SSRS?
    Thanks in advanc

    Hi rockstar283,
    As per my understanding, you want to add a column names Progress, it is calculated from the values of Actual and Budget. In current month, Progress = sum(Actual)/sum(Budget), else, it is set to 0. If so, please refer to the following expression:
    =IIF(Month(Fields!pmonth.Value)=Month(Today()),Sum(Fields!Actual.Value),0)/IIF(Sum(Fields!budget.Value)=0,1,Sum(Fields!budget.Value))
    The following screenshot is for your reference:
    If my understanding is not correct, please feel free to let me know. I would appreciate it if you could give us detailed description of your requirements, it’s also better to provide the table structure and some sample data. It will help us move more quickly
    toward a solution.
    Thanks,
    Wendy Fu

  • ALD VAT Sum Question

    I am a realy newbie regarding to the ALD in Business One.
    I am trying to print out at the end of my producttable in my invoice a line like this:
    "incl. VAT with Code A2 at 16,00% (for instance) of (the amount of all the lines which are calculated with the Code A2) (and then the sum of the taxes)"
    Could you tell me how to describe the function ?
    Thanks in advance

    I had the same problem. At first it looks as though SAP has already worked upon tax summaries inside ALD, but there was no way to find out how they should work.
    One can only shout out loud that, at least with german laws, <b><i>ALD is no use for sales documents as long as it can't produce VAT sums</i></b>.
    <u><b>Here's a workaround:</b></u>
    1. Create three sum variables for each relevant vat group:
    - price before taxation (e.g. "PRICE")
    - price after taxation (e.g. "GROSS")
    - tax itself (e.g. "VAT")
    Example:
    Implementing two tax groups, create:
    @PRICE1,@PRICE2,@GROSS1,@GROSS2,@VAT1,@VAT2
    2. Use conditional accumulation for the sum variables:
    Example for a @GROSS1 variable:
    if( Belegzeile.Steuerdefinition_VatGroup.Code="A1" , Belegzeile.Preis_inkl__Steuer * Belegzeile.Menge , 0 )
    Sorry 'bout the german field names; I'm sure it'll be easy to translate.
    3. Create taxation summary in the footer of your table:
    - Add one line per tax group.
    - Use the corresponding sum variables to print out values.
    - Use one of the sum variables for definition of a print condition. Example:
    @GROSS1>0
    The corresponding VAT sum line will only be printed if there are amounts available in the current document.
    That's all!
    It's quite easy, but it requires static definition of known tax groups. Sum variables can only be numeric, so there's no way to extract the tax group names from the database for later use.
    However, to create a more generic template you can define the group names and codes by user variables. Usage of such "constants" could make adaption of form templates much easier (I use them for tax names and fstring$ format definitions).
    ====================================
    Extension:
    If you want to extract the vat percentage rates into sum variables you would have to expand the variable calculations as such (example for sum variable @PERC1):
    if(@PERC1=0 and Belegzeile.Steuerdefinition_VatGroup.Code="A1",Belegzeile.USt__Prozentsatz_pro_Zeile,0)
    @PERC_A1 will only be accumulated once and takes over a single desired value.
    <i>keywords: "advanced layout designer" tax taxation "tax summary" "vat summary" vat invoice legal</i>

  • SUM-question

    Hi
    I should be able to get this myself, but I dont...  :(
    From one page/gallery I pick out Products, With a Price and a number of how many of each. Those are stored into Collection.
    The on an another page I show this Collection in a gallery called "Tilbudslisten". And for each Product I sum the total cost for that Product With this: Text(Sum(ThisItem!Price*ThisItem!AntallEnheter!Text),"Kr #.##")  (this is the
    code in the cell "Price")
    Then, at the end of that page I want to show the total amounth. I've tried different code, like this:
    Sum(Tilbudslisten!AllItems!Price)  and
    Sum(Tilbudslisten!Price)   and Sum(Tilbudslisten!Price!Value)  etc....  But With no Luck....
    So, this is the last piece in my latest demo/prortype.... - So please... - anybody? 
    Best regards Terje F - Norway www.profo.no

    Hello Terje,
    Assuming that Tilbudslisten is your collection name it should be as a simple label outside your gallery with
    Sum(Tilbudslisten,Antal*Price)
    will do the trick.
    You can do the same in each item of the gallery too.
    That will allow you to add some funky statistics to show how much percentage that item is in the total sum
    Regards
    StonyArc
    http://www.stonyarc.com http://www.xboxlivenation.com

  • Sql sum question

    I need to produce a CF report only showing the top five
    suppliers, plus other information.
    I count each supplier, with group by, then sum the count,
    with group by, to get the total occurrances of each supplier. My
    query/subquery is something like this :
    select sum(supplierCount) as totalCount, supplier
    from
    select count(supplier) as suppliercount, supplier
    from table
    group by supplier
    ) as a
    group by supplier
    order by supplier
    This appears to work and gives me the total occurrances of
    each supplier. I can then select the top 5. Howver, when I start
    including the other columns, the count/sum does not seem to work
    anymore and becomes 1 for each supplier. I even tried usign QofQ
    and that did not work.
    How can I write the query to give me the total number of
    occurrances of each supplier, in addition to having the other
    columns on the report ?

    if you were using mysql as your db, your current query would
    have worked
    just fine with any other columns you added - mysql does not
    require the
    query to be grouped by ALL non-aggregate columns, one is
    enough.
    in your case, i think you will need to have 2 queries and
    then combine
    then with a QoQ.
    something like (untested):
    <!--- get top 5 suppliers with unique supplier id --->
    <cfquery name="top5suppliers" ...>
    SELECT TOP 5 COUNT(supplier_id) AS supplierCount, supplier_id
    FROM table
    GROUP BY supplier_id
    ORDER BY COUNT(supplier_id) DESC
    </cfquery>
    <!--- store top 5 supplier ids in a list --->
    <cfset supplier_id_list =
    valuelist(top5suppliers.supplier_id)>
    <!--- get all other data for top 5 suppliers --->
    <cfquery name="top5suppliersData" ...>
    SELECT supplier_id, ....
    FROM suppliers_table
    WHERE supplier_id IN (#supplier_id_list#)
    </cfquery>
    <!--- combine data using QoQ --->
    <cfquery name="suppliersFullData" dbtype="query">
    SELECT top5suppliers.supplierCount, top5suppliersData.*
    FROM top5suppliers, top5suppliersData
    WHERE top5suppliers.supplier_id =
    top5suppliersData.supplier_id
    ORDER BY supplierCount DESC
    </cfquery>
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Xsl:param question

    hi in my xsl
    I have something that is like
    <xsl:param name="x" select="@somevalue"/>
    that @somevalue is suppose to have a value assigned to it (so it is dynamic).......but I can't figure out how it might work
    can someone provide my some info as to how @ this works in the xsl world....
    basically I want to know how i can assign value to that @somevalue...
    jaxb...?!
    thanks

    Are you asking what the @ character means? It's a shortcut for the attribute axis, so basically "@somevalue" means "the somevalue attribute of the context node".

  • Summing questions from a newbie

    Hi there. I have 3 parent/child tables: Projects (can have many...) Purchase Orders (can have many...) Purchase Order Items.
    I want to see Project Name and total of all purchase orders. I total a purchase order by summing the items in the purchase order.
    Here's my attempt:
    SELECT distinct Proj.ID, Proj.TXTNAME,
    (SELECT sum(NUMSUBTOTAL) POAmount
    from FAC_PURCHASE_ORDER_ITEMS POI, FAC_PURCHASE_ORDERS PO, FAC_PROJECTS Proj
    where PO.PROJECTID = Proj.ID
    and POI.PURCHASEORDERID = PO.ID) Amount
    FROM FAC_PURCHASE_ORDERS PO, FAC_PROJECTS Proj
    WHERE PO.PROJECTID = Proj.ID
    Here is what I get:
    ID TXTNAME AMOUNT
    23 New Office for Darby 3036
    42 Move 1 staff in Portfolio 3036
    65 Remove poplars 3036
    121 Additional 5 cubes required in corporate systems area 3036
    129 test2 3036
    Why am I getting the same amount for each project?
    Am I doing the right thing by embedding the one sql select inside the other?
    I'd appreciate any help! thank you!
    ~Darby

    Hi, Darby,
    Whenever you have a problem involving a sub-query, it helps to run the sub-query by itself, to see what it does.
    In your case, you have a scalar sub-query that computes amount:
    SELECT sum(NUMSUBTOTAL) POAmount
    from    FAC_PURCHASE_ORDER_ITEMS POI
    ,       FAC_PURCHASE_ORDERS PO
    ,       FAC_PROJECTS Proj
    where   PO.PROJECTID = Proj.ID
    and     POI.PURCHASEORDERID = PO.IDWithout having your tables and your test data I can't actually run it, but it looks like it's getting the grand total for all Projects and all Purchase Orders. There's nothing limiting the sub-query to a particular Project or Purchase Order. (The WHERE-clause seems to consist entirely of join conditions.)
    If you want to continue using a scalar sub-query, you should corellate the main query to the sub-query, so the sub-query will only look at the Project (or Purchase Order: see note at the end of the message) being computed in the main query, like this:
    SELECT distinct
            MainProj.ID
    ,       MainProj.TXTNAME
    ,       (       -- Begin scalar sub-query to compute amount
            SELECT sum(NUMSUBTOTAL) POAmount
            from    FAC_PURCHASE_ORDER_ITEMS POI
            ,       FAC_PURCHASE_ORDERS PO
            ,       FAC_PROJECTS Proj
            where   PO.PROJECTID = Proj.ID
            and     POI.PURCHASEORDERID = PO.ID
            AND     proj.id = MainProj.id   -- Corellation to main query
            ) Amount
    FROM    FAC_PURCHASE_ORDERS PO
    ,       FAC_PROJECTS MainProj
    WHERE   PO.PROJECTID = MainProj.IDNotice I changed the table alias in the main query from proj to mainproj. That way, you can keep the table alias proj in the sub-query, and have a unique name for each one, in order to do the corellation.
    (Actually, there's no need to reference the fac_projects table in the sub-query at all, since the project id is in the fac_purchase_orders table, and there's no need to reference the fac_purchase_orders table in the main query at all.)
    But I think there's a much better way.
    I think it would be simpler and more efficient not to do a scalar sub-query at all.
    The problem with the original sub-query was that it was producing the grand total for all Projects, all lumped together. The fix above makes it return the total for one Project at at time. If we turn it into a GROUP BY query, as shown below, it will return the total for each Project on a separate line.
    SELECT proj.id
    ,       MAX (txtname)
    ,       sum(NUMSUBTOTAL) POAmount
    from    FAC_PURCHASE_ORDER_ITEMS POI
    ,       FAC_PURCHASE_ORDERS PO
    ,       FAC_PROJECTS Proj
    where   PO.PROJECTID = Proj.ID
    and     POI.PURCHASEORDERID = PO.ID
    GROUP BY  proj.id
    ORDER BY  proj.idThis is un-tested. If you would have posted some sample data, I could have tested it.
    NOTE:
    I'm not sure if you want one line of output per Project or one line per Purchase Order. Everything above assumes you want one line per Project, but it's easy to modify if you want one line per Purchase Order.

  • Another Sum Question

    Hey Guys,
    I've got a little bit different of a sum situation here. I'm
    working with the following XML:
    <rider id="1">
    <name>john doe</name>
    <round1>20</round1>
    <round2>12</round2>
    <round3>14</round3>
    <round4></round4>
    <round5></round5>
    <round6></round6>
    <round7></round7>
    <round8></round8>
    </rider>
    I've got 20-30 different riders listed in the XML. I want to
    of course calculate the total from each "round" tag. The following
    code isn't quite working, and it's because I'm not referencing
    "round1-8" correctly. Here it is:
    function sumIt(i) {
    var total = 0;
    var x = 0;
    var num_rounds = 8;
    var rider_total = 0;
    for (x = 0; x < i; x++) { // length of data set
    for (y = 0; y < num_rounds; y++) { // loop through each
    round node
    rider_total += (dsPoints.getData()[x]["round1"]);
    alert(rider_total);
    This line is the issue:
    rider_total += (dsPoints.getData()[x]["round1"]);
    I tried "rider_total += (dsPoints.getData()[x]["round"][y]),
    but that is incorrect. And after that, I'm unsure how to store all
    the total data - whether to use an array or another way that might
    work better.
    Any ideas?
    Thanks.

    To further complicate things :) .. If we get this working to
    calculate the total for each rider, it would be logical to then
    sort the data based on the total. I'm guessing there isn't a way to
    sort the data by total, but only by values within the XML. ie:
    var ds = new Spry.Data.XMLDataSet("data.xml",
    "/points/point", { sortOnLoad: "round1", sortOrderOnLoad:
    "descending"});
    So there the results are sorted based on round1 values. Being
    able to dynamically caculate the total loses it's importance if we
    can't sort the data based on that, from the onload call. Does that
    make sense?
    Thanks again everyone.

  • OSB 11G xsl/xquery question in Proxy

    OSB 11G
    In Proxy, I have to invoke a business service which has 3 operations
    I need to use response of first 2 operations,as request to third operation along with some input xml to OSB Proxy.
    customer, group, severity are hard coded.(which will be input to OSB)
    How do I add/insert response from op1 after <string>customer</string> ??
    and response from op2 after <string>group</string> . ??
    <InvokecreateRequest_InputVariable>
    <part name="parameters" >
    <createRequest>
    <sid>1959439747</sid> // is resp from operation1, which is request to operations3
    <creatorHandle/>
    *<attrVals>* // this is array of string
    <string>customer</string>
    <string>cnt:08DF89FC07516A41B228587DBE75B6A7</string> //resp from op1, that has to be request to op3
    <string>group</string>
    <string>B79AAF63D870F845980A</string> //input to OSB
    <string>severity</string>
    <string>2</string> //input to OSB
    *</attrVals>*
    <propertyValues>
    <string/>
    </propertyValues>
    <template/>
    <attributes>
    <string>persistent_id</string>
    </attributes>
    </createRequest>
    </part>
    </InvokecreateRequest_InputVariable>
    Also, should I use assign or insert in Proxy ??

    Not sure exactly what you need, but here is a basic layout of what you need to do.
    Make a service callout to the first operation and save the response in a variable, for ex $resOne
    Then make a service callout to the second operation ans save the response in a variable for ex $resTwo.
    Now use a replace or assign action to create the request for the third operation:
    If you are using a Route action on Route node to call the third operation, you should use a replace action and replace the contents of $body with the XML content as needed. If you are going to use another service callout, then you should use an assign to create a request variable.
    In either case, this is what your XQuery should look like:
    <InvokecreateRequest_InputVariable>
    <part name="parameters" >
    <createRequest>
    <sid>{$resOne/ns:ElementName/ns:SID/text()}</sid>     // Here you will populate value from $resOne using a correct XPath
    <creatorHandle/>
    <attrVals>
    <string>customer</string>
    <string>cnt:08DF89FC07516A41B228587DBE75B6A7</string>
    {$resOne}    // here you are inserting the complete response from Operation one
    <string>group</string>
    {{$resTwo}    // here you are inserting the complete response from Operation Two, You can choose to populate these values separately inside variables like for SID above.
    <string>B79AAF63D870F845980A</string>
    <string>severity</string>
    <string>2</string> //input to OSB
    </attrVals>
    <propertyValues>
    <string/>
    </propertyValues>
    <template/>
    <attributes>
    <string>persistent_id</string>
    </attributes>
    </createRequest>
    </part>
    </InvokecreateRequest_InputVariable>

  • XSL transform question from XML date datatype to SQL date datatype

    Just to give an idea, I am reading some employee information in a CSV format and I have created the fileadapter to read it and parse it into coherent information where each comma separated value corresponds to a column in an employee table. One of the columns is of the date object in the database.
    So my my variable is created with a list of employees and then fed into the invoke that calls a dbadapter that does the insert. I am using a transformation to get the values from one variable into the other simply because of namespace conflicts. However the xml date will not match the sql date object as to be expected...but how do I work around it? I have a few ideas but I am not sure they are worth mentioning.
    Any suggestions?

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • XSL:SORT not supported in current XSL-transformator

    In iCS 5.1 the use of the xsl element sort (<xsl:sort>) in an xsl stylesheet does not sort the set of processed nodes (<xsl:for-each ...>) as we would expect it, but simply copies the xsl element <XSL:SORT> to the output stream at every location, where it is defined in the stylesheet (at the start of the output of each processed node) . This behavior is not according the W3C XSLT 1.0 specification. Are there any solutions available?
    Thanks in advance,
    Jakob.

    This question is related to xsl rathar than java/xml.Then it would be better if you asked it in a place where experts in XSL answer questions. Check out the Mulberry mail-list.
    This sort DOES NOT work (used xsl variable in xsl:sort)
    <xsl:for-each select="PerformanceVO">     
    <xsl:sort data-type="number" select="$sortColumn"
    order="ascending"/>
    </xsl:for-each>     I am pretty sure that must be an XSLT FAQ. I haven't looked but I bet you will find it in Dave Pawson's FAQs.

  • Xsl sort

    This question is related to xsl rathar than java/xml. I would really appreciate if someone could help. The xml document I use is something like this below.
    <Performance>
         <SortInfo>
              <Column>CompletedMeasurement/VinCount</Column>
              <Order>TRUE</Order>
         </SortInfo>
         <PerformanceVO>
              <CompletedMeasurement>
                     <VinCount>35881</VinCount>
              </CompletedMeasurement>
         </PerformanceVO>
         <PerformanceVO>
         <CompletedMeasurement>
         <VinCount>45077</VinCount>
                          </CompletedMeasurement>
         </PerformanceVO>
    </Performance>I have a requirement to use xsl:sort on the xsl to sort this xml document. The sort does not work if use an xsl variable. This is my xsl variable declaration:
    <xsl:variable name="sortColumn" select="/Performance/SortInfo/Column"/>
    This sort works (note that I have NOT used any xsl variable
    <xsl:for-each select="PerformanceVO">     
    <xsl:sort data-type="number" select="CompletedMeasurement/VinCount" order="ascending"/>
    </xsl:for-each>
    This sort DOES NOT work (used xsl variable in xsl:sort)
    <xsl:for-each select="PerformanceVO">     
    <xsl:sort data-type="number" select="$sortColumn" order="ascending"/>
    </xsl:for-each>     

    This question is related to xsl rathar than java/xml.Then it would be better if you asked it in a place where experts in XSL answer questions. Check out the Mulberry mail-list.
    This sort DOES NOT work (used xsl variable in xsl:sort)
    <xsl:for-each select="PerformanceVO">     
    <xsl:sort data-type="number" select="$sortColumn"
    order="ascending"/>
    </xsl:for-each>     I am pretty sure that must be an XSLT FAQ. I haven't looked but I bet you will find it in Dave Pawson's FAQs.

  • My latest questions

    Hi Guys!!
    Saved up sum questions for my fave Berries! 
    1.  While loading web pages, does putting the BB in it's case affect the download time?   Also, does the backlight timing out have any affect?
    2.  How many drops on a hard floor can a BB survive?
    3.  Does keeping old emails and text messages affect performance of the BB?
    4.  I know that crackly audio is an issue...internet radio does this on mine.  Are there any updates on this problem?
    Much love and junk,
    Steph

    Hello there, Subhi.sa.
    Just wanted to second Niel's recommendation. Additionally this Knowledge Base article also provides some steps you can take yourself if you don't remember your security questions:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    What should I do if I don't remember the answers to my Apple ID security questions?
    Try answering them at least once to see if you can get them right, even if you are not sure you remember the answers to your security questions.
    If you are confident you can't remember them, try one of the following:
    If you have three security questions and a rescue email addresssign in to My Apple ID and select the Password and Security tab to send an email to your rescue email address to reset your security questions and answers. 
    If you have one security question and you know your Apple ID passwordsign in to My Apple ID and select the Password and Security tab to reset your security question.
    If you have one security question, but don't remember your Apple ID passwordcontact Apple Support for assistance. Learn more about creating a temporary support PIN to help Apple confirm your identity when you contact Apple Support.
    Note: If you have forgotten your password and answer your security questions incorrectly too many times in a row, you will be unable to try to answer your security questions for a period of time. During that time you will not be able to reset your password and will not have access to your account.
    Thanks for reaching out to us on the Apple Support Communities.
    Cheers,
    Pedro D.

  • Open a Local File located in a Web Dynpro Project

    Hi, I'm trying to open a file saved in a new folder called (XSLT) created by me in a web dynpro project.
    When I try to do this, the following exception is thrown:
    ...java.io.FileNotFoundException: F:\usr\sap\DEP\JC00\j2ee\cluster\server0\XSLT\sad.xsl (The system cannot find the path specified)....
    The code that tries to load the file is the next:
    Document xslDoc = dBuilder.parse("XSLT/sad.xsl");
    My Question is: what should be the file path that I should use in order to be able to open a file that is saved into a folder inside my Web Dynpro Project, of course, using a relative path...
    Any ideas???

    Felipe,
    Classes from custom folders are not included in build.
    You may place "xslt" under src/packages and acces them via ClassLoader, i.e.
    Document xslDoc = dBuilder.parse
      this.getClass().getClassLoader().getResource("xslt/sad.xsl")
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

Maybe you are looking for

  • Create Multiple Build Controllers in Team Foundation Server 2013

    Hi all, I have created an environment of Team Foundation Server 2013 & also installed SharePoint Foundation 2013. Everything is working fine. I have created a build controller on the same machine on which I have installed the TFS. This build controll

  • Adobe Document Service Configuratio issue

    Hi, I've been working on configuration of Adobe document service on a sneak preview version and have followed all the steps. At the end, when I try to access an interactive adobe form, I'm getting an error. The error details are given below. The end

  • Modulepool programming

    can i use parameters & select-options in module pool programming , if yes how i have to use plz any one guide me

  • XPath /A/B/C/@a works, but /A/A/A/@a doesn't ...

    I get XPath values for simple XML files without problems (element values or attribute values). Now I have an XML file where a quite simple XPath doesn't work: <?xml version="1.0" encoding="UTF-8" ?> <gesmes:Envelope xmlns:gesmes="http://www.gesmes.or

  • Kaspersky Internet Security not detected by NM on Vista

    Network Magic configuration: Network Magic version: 5.5.9195.0-Pure2 Platform version: 11.2.99195.1 Internet connection: Cable (Comcast) Modem: Arris TM502G Router:  Netgear WNR3500-V1 firmware:  V1.0.29_8.0.29NA Problem computers use both wired and