Xpath-checksum

I need your help guys.  Bolg
URL is https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2114... [original link is broken] [original link is broken] [original link is broken] [original link is broken](xPath). In this
weblog, Message mapping part i done with the user defined function <b>chksum</b>. wheather
its simple function r advanced function.. Please may i have that java coading... i am unable to write the java coading for that..
please
send the java coadings to this E-mail id..  [email protected]
Thanks a lot..
with regards
rakesh

I solved this problem. The data provided in the upload process in itunes producer, should be similar to the OPF metadata.Simple. Ok.

Similar Messages

  • Appending Xpath Value to a variable in For Each loop

    So I am iterating thru an XML File collection inside a ForEach container. I have an XML Task within this loop of type Xpath.
    The Xpath expression on each file evaluates to a value which I want to append as I keep iterating.
    How do I go about doing this?? I tried something like User::CheckSum =+ User::CheckSum but it gives and error and I am not sure on which property should it be applied to.
    Please understand that it is not one file with multiple nodes but multiple XML files in my scenario.
    Any help is much appreciated
    SM

    I do not think the variable's value gets preserved between hops, anyways, it does not look like a valid approach.
    Use the XMLFile Source in the ForEach Loop and capture the needed value into a package variable that you can keep appending to say in a Script Task.
    Arthur My Blog

  • MSI P35 Neo-F cmos checksum "bad"

    Hi
    I bought the board mentioned in the title, and after putting my E5200 into it I realized that the MB didn't support it using the bios version it had in it. So, I used the AMI bios recovery thingy (http://www.msicomputer.com/support/BIOS_AMI_Recovery.asp) using floppy and after that I was able to boot it up properly.
    But after changing the bios settings a bit, I faced the exact same problem as the fellow here (https://forum-en.msi.com/index.php?;topic=125698.0). I understood that I'm forced to flash the bios again using the MSI Forum HQ USB Flashing Tool mentioned in that topic.
    The problem here is that I can't use that flashing tool as I'm not able to get into Windows and use the tool. The tool won't work on my second comp as it doesn't have MSI MB in it.
    So what do I do to flash the bios? Any help would be appreciated.

    Quote
    I understood that I'm forced to flash the bios again using the MSI Forum HQ USB Flashing Tool mentioned in that topic.
    You have to reflash the BIOS the regular way (and you are not limited to the MSI Forum HQ USB Flashing Tool (it is only an option).  The AMI BIOS Recovery Procedure is not a regular way to update your BIOS.  That CMOS Checksum Message you get after start-up is a known side effect.
    Quote
    The problem here is that I can't use that flashing tool as I'm not able to get into Windows and use the tool. The tool won't work on my second comp as it doesn't have MSI MB in it.
    Here you go:
    1. Download the following tool.  Then install it on your second system:
    http://files.extremeoverclocking.com/file.php?f=197
    2. Download the DOS-File.rar Archives that you find attached at the bottom of this post and unpack the files into a folder of your choice.
    3. Start the HP USB Format Tool and select "Create DOS Startup Disk".  Point the tool to the DOS-Files you just unpacked:
    Your USB Flash Drive should now be bootable.
    4.  Download the latest BIOS Version for your board:  http://download1.msi.com/files/downloads/bos_exe/7360v1A.zip  ... and copy the following files to the root directory of your USB Flash Drive: Afud408.exe (Flasher) and A7360IMS.1A0 (BIOS-File).
    5.  Hook up the just prepared USB Flash Drive to your P35 Neo-F and force it to boot from it.  Once you reach the DOS Command Prompt, type the following command to start the BIOS Flash:
    Afud408 A7360IMS.1A0 /P /B /N /C
    Once the procedure is over and you did not get any error messages, turn off your system, clear CMOS with main A/C power cable removed from PSU.  After that, things should be back to normal if everything went fine.
    Note:  In order to force your P35 Neo-F to boot from the USB Flash Drive, disconnect all other drives so that the USB Flash Drive is the only bootable device connected to your system. When you get the CMOS Checksum Message after start-up, simply load defaults without entering BIOS Setup.  The system should then move on to booting DOS from your Flash Drive.

  • XPath expression failed to execute.

    Hi Everybody ,
    I am working  AIA PIP 3.1 for JDE E1.I am facing some errors so that i can't proceed.
    See the log errors as below:
    javax.xml.ws.soap.SOAPFaultException: XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is ora:processXSLT('xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl',bpws:getVariableData('InitialLoadBillOfMaterialsListReqMsg','InitialLoadBillOfMaterialsList'),bpws:getVariableData('Parameters')). The XPath expression failed to execute; the reason was: oracle.fabric.common.xml.xpath.XPathFunctionException: javax.xml.transform.TransformerException: oramds:/deployed-composites/default/InitialLoadBillOfMaterialsListJDEE1toAgileImpl_rev1.0/xsl/Xform_BillOfMaterialsListABM_to_BillOfMaterialsListAXML.xsl<Line 18, Column 271>: XML-22044: (Error) Extension function error: Error invoking 'lookupXRef':'oracle.tip.xref.exception.RepositoryException: lookup could not find values in column name "AGILE_01" for table name "oramds:/apps/AIAMetaData/xref/ITEM_ITEMID.xref" using reference column name "JDEE1_01" and reference value "731882::M30" Please ensure lookup criteria has a match.'. Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    Please reply me ASAP,
    Waiting for your response.....
    Regards
    Jyoti Nayak

    Hi,
    Ya i checked the data for same table,but i didn't get any XREF related information in xref_data table.
    Did you mean that, data should already present under AIAFPINST_XREF.Probably xref is meant for storing dynamic value.
    Please check the above error and reply me soon.
    With Regards
    Jyoti Nayak

  • Problem retrieving a list of values with XPATH

    Hi,
    I am trying to get a list of all 'Fields' (under the SubscriptionList -> EconomicIndicator -> Code) which have 'Provider' =DJ.
    I am using the below xpath expression. But It is not working. I tried other variations but none of them return mulitple items.
    Can some one please tell me if Iam missing something.
                   XPathExpression xPathExpression= xpath.compile("/SubscriptionList/EconomicIndicator[*]/Code[Provider=DJ]/Fields");
                   NodeList result = (NodeList)xPathExpression.evaluate(doc, XPathConstants.NODESET);
              for (int i = 0; i < result.getLength(); i++) {
                   Element element = (Element)result.item(i);
              System.out.println(element.getNodeValue());
    <?xml version="1.0" encoding="UTF-8"?>
    <SubscriptionList>
    <DefaultEconomicIndicatorName>US ADP Employment Change</DefaultEconomicIndicatorName>
    <!--GE IFO - Business Climate-->
    <EconomicIndicator>
    <Name>GE IFO - Business Climate</Name>
    <Active>0</Active>
    <OutputFormat></OutputFormat>
    <OutputUnits>1</OutputUnits>
    <StartDate>2007-06-22T03:50:00</StartDate>
    <EndDate>2007-06-22T04:10:00</EndDate>
    <Code>
    <Provider>BB</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRIFPBUS</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB1</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRIFPBUS</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB2</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRIFPBUS</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB3</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRIFPBUS</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>RFA</Provider>
    <Service>IDN_SELECTFEED</Service>
    <InstrumentCode>DEBUSS=ECI</InstrumentCode>
    <FID>356</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>DJ</Provider>
    <Service></Service>
    <InstrumentCode>GM_IFO</InstrumentCode>
    <FID></FID>
    <Units>1</Units>
    <Fields>GM_IFO_BUSSENTIMENT_Cur</Fields>
    </Code>
    <Code>
    <Provider>DJS</Provider>
    <Service></Service>
    <InstrumentCode>GM_IFO</InstrumentCode>
    <FID></FID>
    <Units>1</Units>
    <Fields>GM_IFO_BUSSENTIMENT_Cur</Fields>
    </Code>
    </EconomicIndicator>
    <!--GE Producer Prices (MoM)-->
    <EconomicIndicator>
    <Name>GE Producer Prices (MoM)</Name>
    <Active>0</Active>
    <OutputFormat></OutputFormat>
    <OutputUnits>1</OutputUnits>
    <StartDate>2007-06-20T01:50:00</StartDate>
    <EndDate>2007-06-20T02:10:00</EndDate>
    <Code>
    <Provider>BB</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRPFIMOM</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB1</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRPFIMOM</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB2</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRPFIMOM</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB3</Provider>
    <Service>Index</Service>
    <InstrumentCode>GRPFIMOM</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>RFA</Provider>
    <Service>IDN_SELECTFEED</Service>
    <InstrumentCode>DEPPI=ECI</InstrumentCode>
    <FID>356</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    </EconomicIndicator>
    <!--UK CBI Industrial Trend-->
    <EconomicIndicator>
    <Name>UK CBI Trends - Orders</Name>
    <Active>0</Active>
    <OutputFormat></OutputFormat>
    <OutputUnits>1</OutputUnits>
    <StartDate>2007-06-21T05:50:00</StartDate>
    <EndDate>2007-06-21T06:10:00</EndDate>
    <Code>
    <Provider>RFA</Provider>
    <Service>IDN_SELECTFEED</Service>
    <InstrumentCode>GBCBIO=ECI</InstrumentCode>
    <FID>356</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    </EconomicIndicator>
    <!--UK CBI Industrial Trend-->
    <EconomicIndicator>
    <Name>UK CBI Distributive - Trades</Name>
    <Active>0</Active>
    <OutputFormat></OutputFormat>
    <OutputUnits>1</OutputUnits>
    <StartDate>2007-06-21T05:50:00</StartDate>
    <EndDate>2007-06-21T06:10:00</EndDate>
    <Code>
    <Provider>RFA</Provider>
    <Service>IDN_SELECTFEED</Service>
    <InstrumentCode>GBCBIS=ECI</InstrumentCode>
    <FID>356</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    </EconomicIndicator>
    <!--US Unit Labor Costs-->
    <EconomicIndicator>
    <Name>US Unit Labor Costs</Name>
    <Active>0</Active>
    <OutputFormat></OutputFormat>
    <OutputUnits>1</OutputUnits>
    <StartDate>2007-09-06T08:20:00</StartDate>
    <EndDate>2007-09-06T08:40:00</EndDate>
    <Code>
    <Provider>BB</Provider>
    <Service>Index</Service>
    <InstrumentCode>COSTNFR%</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB1</Provider>
    <Service>Index</Service>
    <InstrumentCode>COSTNFR%</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB2</Provider>
    <Service>Index</Service>
    <InstrumentCode>COSTNFR%</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>BB3</Provider>
    <Service>Index</Service>
    <InstrumentCode>COSTNFR%</InstrumentCode>
    <FID>PX_LAST</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>RFA</Provider>
    <Service>IDN_SELECTFEED</Service>
    <InstrumentCode>USLCTS=ECI</InstrumentCode>
    <FID>356</FID>
    <Units>1</Units>
    <Fields></Fields>
    </Code>
    <Code>
    <Provider>DJ</Provider>
    <Service></Service>
    <InstrumentCode>US_PROD2_REV</InstrumentCode>
    <FID></FID>
    <Units>1</Units>
    <Fields>US_PROD2_REV_UNITLABORCOST_CurQChgPct</Fields>
    </Code>
    <Code>
    <Provider>DJS</Provider>
    <Service></Service>
    <InstrumentCode>US_PROD2_REV</InstrumentCode>
    <FID></FID>
    <Units>1</Units>
    <Fields>US_PROD2_REV_UNITLABORCOST_CurQChgPct</Fields>
    </Code>
    </EconomicIndicator>
    </SubscriptionList>

    Hi DrClap,
    I have a similar problem again. This time I am trying to extract a list of values from a xsd. Below is the code that I am using.
              try{
                   djxsd = new FileInputStream("djei-3.1.xsd");
                   XPathFactory factory = XPathFactory.newInstance();
                   XPath xpath = factory.newXPath();
                   SimpleNamespaceContext nsContext = new SimpleNamespaceContext();
                   xpath.setNamespaceContext(nsContext);
                   nsContext.addNamespace("xs", "http://www.w3.org/2001/XMLSchema");
                   nsContext.addNamespace("xsi","http://www.w3.org/2001/XMLSchema-instance");
                   +//String exp = "//xs:element/@name/text()";+               
    String exp = "/xs:schema/xs:group/xs:sequence/xs:element";
                   XPathExpression xPathExpression= xpath.compile(exp);
                   NodeList result = (NodeList)xPathExpression.evaluate(doc, XPathConstants.NODESET);
                   FileOutputStream outputfile = new FileOutputStream("log.txt");
              for (int i = 0; i < result.getLength(); i++) {
                   Element element = (Element)result.item(i);
                   String output = element.getTextContent().trim();
                   if(output.length() > 0)
                        outputfile.write(output.getBytes());
                        //System.out.println(output);
    Highlighted in Itlalics is the actual expression that I want to use. For some reason this is not working .. it returns nothing.
    The other expression works. Please let me know if there is anything wrong with the expression.
    THE XSD FILE
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" elementFormDefault="qualified">
         <xs:element name="DJEconomicIndicator">
              <xs:complexType>
                   <xs:sequence minOccurs="0" maxOccurs="unbounded">
                        <xs:group ref="allgroup"/>
                   </xs:sequence>
                   <xs:attributeGroup ref="TopGrp-Attributes"/>
              </xs:complexType>
         </xs:element>
         <xs:group name="allgroup">
              <xs:sequence>
                   <!-- ==================== CPI ========================== -->
                   <xs:element name="US_CPI_CurMonChgPct" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation> US Consumer Price Index </xs:documentation>
                             <xs:appinfo> CPI </xs:appinfo>
                        </xs:annotation>
                        <xs:complexType>
                             <xs:annotation>
                                  <xs:appinfo> MoM Pct Change (Current Period) </xs:appinfo>
                             </xs:annotation>
                             <xs:simpleContent>
                                  <xs:extension base="xs:double">
                                       <xs:attributeGroup ref="common-month"/>
                                       <xs:attributeGroup ref="common-attributes"/>
                                  </xs:extension>
                             </xs:simpleContent>
                        </xs:complexType>
                   </xs:element>
                   <xs:element name="US_CPI_ExpMonChgPct" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation> US Consumer Price Index </xs:documentation>
                             <xs:appinfo> CPI </xs:appinfo>
                        </xs:annotation>
                        <xs:complexType>
                             <xs:annotation>
                                  <xs:appinfo> Forecast MoM Pct Change (Current Period) </xs:appinfo>
                             </xs:annotation>
                             <xs:simpleContent>
                                  <xs:extension base="xs:double">
                                       <xs:attributeGroup ref="common-month"/>
                                       <xs:attributeGroup ref="common-attributes"/>
                                  </xs:extension>
                             </xs:simpleContent>
                        </xs:complexType>
                   </xs:element>
                   <!-- ==================CPI Unrounded==================== -->
                   <xs:element name="US_CPI_Unrounded_CurMonChgPct" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation> US Consumer Price Index </xs:documentation>
                             <xs:appinfo> CPI UnRounded</xs:appinfo>
                        </xs:annotation>
                        <xs:complexType>
                             <xs:annotation>
                                  <xs:appinfo> MoM Pct Change (Current Period) </xs:appinfo>
                             </xs:annotation>
                             <xs:simpleContent>
                                  <xs:extension base="xs:double">
                                       <xs:attributeGroup ref="common-month"/>
                                       <xs:attributeGroup ref="common-attributes"/>
                                  </xs:extension>
                             </xs:simpleContent>
                        </xs:complexType>
                   </xs:element>
                   <!-- ==================CPI Core Index==================== -->
                   <xs:element name="US_CPI_Core_CurMonChgPct" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation> US Consumer Price Index </xs:documentation>
                             <xs:appinfo> CPI Core </xs:appinfo>
                        </xs:annotation>
                        <xs:complexType>
                             <xs:annotation>
                                  <xs:appinfo> MoM Pct Change (Current Period) </xs:appinfo>
                             </xs:annotation>
                             <xs:simpleContent>
                                  <xs:extension base="xs:double">
                                       <xs:attributeGroup ref="common-month"/>
                                       <xs:attributeGroup ref="common-attributes"/>
                                  </xs:extension>
                             </xs:simpleContent>
                        </xs:complexType>
                   </xs:element>
                   <xs:element name="US_CPI_Core_ExpMonChgPct" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation> US Consumer Price Index </xs:documentation>
                             <xs:appinfo> CPI Core </xs:appinfo>
                        </xs:annotation>
                        <xs:complexType>
                             <xs:annotation>
                                  <xs:appinfo> Forecast MoM Pct Change (Current Period) </xs:appinfo>
                             </xs:annotation>
                             <xs:simpleContent>
                                  <xs:extension base="xs:double">
                                       <xs:attributeGroup ref="common-month"/>
                                       <xs:attributeGroup ref="common-attributes"/>
                                  </xs:extension>
                             </xs:simpleContent>
                        </xs:complexType>
                   </xs:element>

  • Syntax and format of a IF statement in formula XPath in a InfoPath field

    Good day
    I needed assistance with IF statement syntax in a InfoPath field formula.
    If Field_1 = null
    concat(substring-before(txtComponentNo1, "."), ".", substring-before(field17, "."), ".", substring-after(field17, "."))
    Else
    concat(substring-before(txtComponentNo1, "."), ".", substring-before(field17, "."), ".", substring-after(field17, ".")+1)
    or in Advance XPath
    If Field_1 = null
    concat(substring-before(../../../my:grpComponent_1/my:grpComponent1/my:txtComponentNo1, "."), ".", substring-before(../../my:field17, "."), ".", substring-after(../../my:field17, "."))
    Else
    concat(substring-before(../../../my:grpComponent_1/my:grpComponent1/my:txtComponentNo1, "."), ".", substring-before(../../my:field17, "."), ".", substring-after(../../my:field17, ".") + 1)
    Thanks

    Hi,
    Here is the good explanation of what you are looking for.
    http://blogs.msdn.com/b/infopath/archive/2006/11/27/conditional-default-values.aspx
    and please check this as well for basic understanding
    http://www.bizsupportonline.net/infopath2010/if-else-statements-conditions-rules-infopath-2010.htm
    Krishana Kumar http://www.mosstechnet-kk.com

  • Help with if statement in XPATH

    Hi,
    I´m using XPath to return a value for a conditional Branch in OSB, I understand that it is supposed to work with standard XPath so I post this question in this forum:
    What I want to do should be simple but have not worked for me, I want to do an IF statement and to return one value in the then part or another value in else.
    if the statement is acomplished I want tu return just a string and if it does not acomplish then in the else return a value from an Xpath expresion:
    here something similar of what I´m trying:
    if (./imp:iniciarCambio/cambios/bea:ListaDeCambios/bea:Cambio/bea:campoNombre/text() = "Name")
    then M6yBilling
    else ./imp:iniciarCambio/cambios/bea:companiaTipo/text()
    The part that is not working is where I want to return M6yBilling if the statement acomplishes, I have tried "M6yBilling" also 'M6yBilling' and fn:string(M6yBilling) but none is working at all.
    Any ideas?
    Kind Regards,
    Gerardo J

    analytical functions: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/functions2a.htm#81409
    CASE
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#36899
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/04_struc.htm#5997
    Incorporating either of these into your query should assist you in returning the desired results.

  • Xpath field details not getting displayed

    Hi all,
    I am working on a idoc to file scenario, where I want to refer the receiver to be determined based upon certain condition or values that get populated for a particular field (using receiver determination). But the problem is that when I click on the condition tab on receiver determination I get a warning "Problem loading schema description"
    with message as
    "Message interface does not exist in any software components installed on this business system"
    But since it is an Idoc at the source we dont have any msg interfaces, further if i neglect this warning message and go further, I am not getting the fields or details of the Idoc structure getting displayed in the xpath.
    But the same when I use for a file scenario(file as sender) I get the details of the context object if any.. Let me know how to resolve this..
    Thanks in advance
    Regards,
    Nithiyanandam

    Hi,
    Yes you coudl add the missing Software component as per below steps
    Even if you open Business system in Integration Directory, at last tab "Other Attributes" --> you will find the list of software components.
    Press the tab Third Party service to verify the list against SLD.
    If its not avaialbel in SLD
    1. Goto System Landscape Directory
    2. select Business Landscape and slect the apporpriate Business system and open it. (Click the name of BS)
    3. There you will get the list of Software components added in it.
    4. Verify the technical system name.
    5. Also verify if same technical system name is used after importing the software component in Integration Repository (IR).
    Goto IR -- > Explore the SCV -->Double click on name of software component version -->Check Interface Import as Import of RFC and have the same details  in Connection data as per technical system
    If everything is setup just refresh the SLD_CACH and import the scenario once again in Integration Directoy and process it.
    You will see the IDOC in Business system.
    Thanks
    Swarup
    Edited by: Swarup Sawant on Feb 4, 2008 8:00 AM

  • 790FX-GD70 winki Bad bios checksum (please help!!) unresolved

    I have the 790FX-GD70 winki edition motherboard only for a few weeks, then i went on holiday for a week and when i came back and started up the computer it came up with the error:
    Bad BIOS checksum. Startin BIOS Recovery ...
    Checking for USB Devise ...
    Reading file "A7577AMS.2xx"
    but then it does nothing, iv tried puting the bios files for the winki edition and the normal edition onto a USB pen but it just comes up with that error and doesnt get past it.
    My Specs Are
    AMD Phenom II X4 955 Black Edition
    790FX-GD70 Winki Edition
    Sapphire Radeon HD 4890 2GB Vapor-X
    Kingston HyperX Triple Channel Kit - memory - 6 GB ( 3 x 2 GB ) - DIMM 240-pin - DDR3
    Western Digital WD10EADS Caviar Green 1tb SATAII 32Mb Cache
    1TB Wester Digital
    Ezcool 700W PSU
    Iv been trying to fix this for a week and nothing will work.
    cheers

    Quote from: eminem2o4 on 07-October-09, 05:13:05
    i just tired clearing it with the jumper(you dont have to press the button when you swich the jumper do you?) and it is  still coming up with the same error
    Bad BIOS checksum, Starting BIOS Recovery
    I really dont know what to do?
    and could any1 give advise on good 6gb AMD RAM?
    cheers
    Quote
    and could any1 give advise on good 6gb AMD RAM?
    Such combination is not recommended in AMD systems as you must use 2x2GB and 2x1GB memory stick to obtain it.
    Which is not good idea[mixing memory sticks]
    For best results and optimal performance, use 2x matched memory sticks only.
    Quote
    I really dont know what to do?
    Go to reseller to sort for you.
    Let him try with different memory sticks{AMD Tested}.
    The message may gone by itself, often such fake message can come from bad or not compatible memory stick.
    Quote from: Hans on 08-October-09, 01:14:27
    Make sure to change the extension to .ROM.
    Nope, system is expecting original file name A7577AMS.200 as Bas mention as well.
    Quote from: Hans on 08-October-09, 01:26:19
    Ah, I see. Thought it needed a .ROM, but I'm obviously wrong.
    But if we already knew this, what's this whole topic about then?
    Get the file on a stick and make it recover. Can't be that hard... ???
    Quote
    Get the file on a stick and make it recover. Can't be that hard... ???
    I would suggest to try with AMD regular memory stick 1st before attempt any BIOS recovery.
    Else he really can kill his board, while attempt to recover healthy BIOS{Too possible to be memory error and not BIOS failure
    [bad|not compatible memory stick can produce the same fake message.]
    Also BIOS hardly can corrupt to this stage by itself, he tell never touched the BIOS:
    Quote from: eminem2o4
    and no iv never tried to flash the bios before, and no1 was near my comp when i was away

  • How to Get xml Attribute value from a given  xpath

    i'm building an xml from 3 columns a,b,c using 'SELECT EXTRACT (XMLELEMENT ("ROOT",.........)'
    and my xml looks something like this
    <ROOT>
    <categories>
    <catogory value="col a value" display="true"/>
    <catogory value="col b value" display="false"/>
    <catogory value="col c value" display="false"/>
    </categories>
    <DATAS>
    </DATA>
    </ROOT>
    now under the datas node i want to use xpath like this
    (case when '/root/categories/catogory/[@display="true"]' then '/root/categories/catogory/@value' else 0 end)
    so tat i get values under data node based on display attributes.... is it possible..
    if not is ther any alternative way of using xpath

    What version of Oracle (4 digits)?
    Are you trying to populate the Data node when you are building the XML originally via your SQL/XML statement or are you talking about modifying some existing XML to add more nodes to it based on data in the XML already?

  • Does SOA BPEL 11.1.7.0 support XPath 2.0 in XSLT mapping?

    Dear Oracle support,
    I am using SOA Suite 11.1.1.7.0 (local development) and 11.1.1.6.0 (in production, but will upgrade to 7). I came to the requirements need to do very complicated mapping using XSLT in BPEL. I would like to use some features of XPath 2.0.
    Does SOA 11.1.1.6.0 or 11.1.1.7.0 have supported XPath 2.0? If not yet, is there any plan to support in the future?
    Thank you in advance for your response,
    Alena Li

    Hi Alena Li,
    Firstly, this is not Oracle support, this is Oracle forums...
    https://wikis.oracle.com/display/Forums/Forums+FAQ
    SOA supports *some* features of XPath 2.0 in XSLT, the infrastructure also supports XSLT 2.0, but JDEV mapper does not...
    Check docs here...
    http://docs.oracle.com/cd/E28280_01/dev.1111/e10224/bp_appx_functs.htm#SOASE2127
    Cheers,
    Vlad

  • Is there any possibility to combine XPath with SAX in Java?

    HI Gentlemen,
    I have an XML instance to parse. One solution works with XPath and Document builder. However, the tree in memory is too big so that I can not build it in my storage (8 GB). Does anyone of you know a method where I use an XPath expression (Java) to select a node but with a better parser (e g SAX) which is not so space hungry? Direct access of nodes is obligatory.
    Thanks, kind regards from
    Miklos HERBOLY

    As SAX  parsers do not build a DOM structure and XPath requires a DOM structure to select elements from, XPath is not usable with SAX, but some analysers support setting the XPath expressions to analyse before invoking the SAX parser and provide the result for XPath expressions.
    Refer
    https://code.google.com/p/xpath4sax/

  • CMOS Checksum Error on MSI 785GM-E51

    Hi, I have 2 years old MSI 785GM-E51. Approximately 2 - 3 months ago, my PC just go hang without any reasons, even the mouse / keyboard won't respond to anything.
    After I reset, sometimes it's fine, but sometimes it's hang again, the interval is random. Sometimes it even hang when in the POST or when i enter BIOS setting.
    After several restart, it's sometimes gives me CMOS Checksum Error, so I decided to reset the CMOS using jumper method. After that my PC just works normal.
    Until a week ago, my pc start to hang randomly again, the symptom is similar but this time sometimes it's not hang, but the PC just restart immediately with black / white / blue random pattern
    displayed momentarily on the screen. And it always display CMOS Checksum Error. I already tried reinstalling Windows, and updating BIOS via flash disk from Live Update 5, no use.
    I already tried to plug out my VGA and using the onboard one, still crash / hang randomly. I also test Memtest overnight with passing 11 pass without error.
    Is it my motherboard already dead? or it's my PSU? CPU?
    Here is my complete specs:
    AMD Phenom II X4 955BE
    MSI 785GM-E51
    DDR3 Dual Channel 4GB RAM (corsair, forgot the model)
    Radeon 5770
    WDC 1TB
    WDC 1.5TB
    Amacrox Free Style 650W
    Thanks in advance.

    Quote
    Yesterday i desperate enough and change some BIOS settings, and
    surprisingly, the CPU is much cooler!
    Try entering bios, hitting f6 for optimized defaults then save and exit. See if problem persists.
    Quote
    As far as I remember, no, the crash / hang time i remembered is when POST / boot / startup / browsing / install app / playing games / copy file.
    And one more thing, when it hangs, it really hangs, not just the windows, sometimes it even not respond to reset button, so i have to power it off. But sometimes it respond
    to reset button, but with quite a long delay, it could half a minute i think.
    Have you tried re-seating the cpu,memory and all of the power connectors etc?
    What are the amp ratings on the 12v rail of the PSU? I found this on thier website but dont have time to dig furthur: Quote
    4-Channel 12V Rails Design
    Although the VGA you list only needs 24a on a 12v rail.
    Quote
    what's cpuid / ram timings / spd? where i can look at it?
    http://www.cpuid.com/
    When the program opens, take a screen shot of the tab that describe how your ram is running, It will show the current timings,speed, single or dual channel. Also take a ss of the spd tab, which will show the jdec standards that apply to that ram and the xmp profile. Then post the SS's to imageshack or the link and link them.

  • Follow up on XPATH HashMap problem

    Hi,
    I got some great help before on this & am hoping for a little direction. I have a class that calculates the tax from an xml like below:
    <Taxes>
         <Tax TaxCode='code1' Amount='101.00'/>
         <Tax TaxCode='code2' Amount='102.00'/>
         <Tax TaxCode='code3' Amount='103.00'/>
         <Tax TaxCode='code4' Amount='104.00'/>
         <Tax TaxCode='code5' Amount='105.00'/>
    </Taxes>Now, my method below, gets the last 3 values and sums them and applies the code "XT" to it & returns a HashMap that looks like:
    {code1 = 101.00, code = 102. 00, XT = 312.00}.
    public static HashMap getTaxAmounts(String xml) throws Exception {
              HashMap taxes = new HashMap();
              DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
            domFactory.setNamespaceAware(true); // never forget this!
            DocumentBuilder builder = domFactory.newDocumentBuilder();
            Document doc = builder.parse(xml);
            XPathFactory factory = XPathFactory.newInstance();
            XPath xpath = factory.newXPath();
            XPathExpression expr = xpath.compile("//Tax/@TaxCode");
            Object result = expr.evaluate(doc, XPathConstants.NODESET);
            NodeList nodes = (NodeList) result;
            XPathExpression expr1 = xpath.compile("//Tax/@Amount");
            Object result1 = expr1.evaluate(doc, XPathConstants.NODESET);
            NodeList nodes1 = (NodeList) result1;
            for ( int i = 0; i < nodes1.getLength() && (i<2); i++) {
                   taxes.put( nodes.item(i).getNodeValue(), nodes1.item(i).getNodeValue());
                    if( nodes1.getLength() >= 3){
                        float total = 0.00f;
                        for ( int i = 2; i < nodes1.getLength(); i++) {
                                total += Float.parseFloat(nodes1.item(i).getNodeValue());
                        String xt = nodes.item(2).getNodeValue();
                        xt = "XT";
                        taxes.put( xt, total);
           return taxes;     
    /code]
    all that's fine - but now I have to replace the tags in the original XML file so that they look like:<Taxes>
    <Tax TaxCode='code1' Amount='101.00'/>
    <Tax TaxCode='code2' Amount='102.00'/>
    <Tax TaxCode='XT' Amount='312.00'/>
    </Taxes>
    any odeas how I would this???

    Hi, John. I can address one of your questions here.
    However, the picture was slightly cropped at the top and it also had 2 very small borders on the left and right, being printed in landscape.
    A standard digital camera image is proportioned 4:3 (1.33:1). That doesn't match the 6:4 ratio of your paper's dimensions (1.5:1), so unless you opt either to distort the image or crop it, it can't be an exact fit on the paper.
    In the toolbar at the top of iPhoto's Edit view is a pull-down menu above the word "Constrain". You use that menu to specify standard proportions for printing the image. Select "4x6 (Postcard)", and you will see superimposed on the picture a rectangle that has those proportions. What's inside the rectangle looks normal, signifying that it will be printed; what's outside the rectangle is pale and muted, because it will be cropped away when you print. Place your cursor anywhere inside the rectangle, hold the mouse button down and drag, to move the rectangle and change what's included within the print boundary.
    The fact that your printed picture was both cropped and slightly reduced in size (creating the small left and right borders) suggests to me that your printer may not be capable of borderless printing, or that there is a setting for borderless prints you're overlooking somewhere. Since the contents of both the Print and Page Setup dialog boxes are governed by the printer's own driver software, and there's no "borderless" setting anywhere within iPhoto, I think you'll need to review the printer's documentation and/or online help files carefully to see whether you're overlooking something in one of those dialog boxes.

  • Is it possible to throw a BPELFault from a custom xpath function?

    I'm probably revealing my lack of java chops here, but I'd like to know if there's a way to throw a BPELFault from the "call" method within a custom xpath function.
    The interface for IXPathFunction seems to dictate that "call" throws only an XPathFunctionException and the bpel server doesn't handle this exception properly. It records the exception in the logs but then the process just dies.
    Right now I have this (simplified code):
    public Object call(IXPathContext context,
    List args) throws XPathFunctionException
    if (args.size() == 1)
    // do some stuff and return a value
    throw new XPathFunctionException( "hexToInt() requires one string argument." );
    What I want to have is something like this:
    public Object call(IXPathContext context,
    List args) throws BPELFault
    if (args.size() == 1)
    // do some stuff and return a value
    BPELFault fault = new BPELFault(
    new javax.xml.namespace.QName("http://schemas.xmlsoap.org/ws/2003/03/business-process/",
    "selectionFailure"));
    fault.setPart("code", "intToHex");
    fault.setPart("summary", "hexToInt() requires one string argument.");
    throw fault;
    If I do this, the compiler rejects it saying that "call" must throw XPathFunctionException. Is there a way to extend the IXPathFunction interface to allow it to throw a useful fault?
    Thanks!
    Sean

    Yeah, I'm using that patch (otherwise the process just crashes and you don't have a chance to catch the fault, even in a catchAll). Within the catchAll you can get the details from the error with something like this:
    <copy>
    <from expression="concat(ora:getFaultName(),'')"/>
    <to variable="processFault" part="payload" query="/ns4:summary"/>
    </copy>
    <copy>
    <from expression="concat(ora:getFaultAsString(),'')"/>
    <to variable="processFault" part="payload" query="/ns4:detail"/>
    </copy>

Maybe you are looking for