Help needed adding xml into website

I am looking for some help adding a few .xml files into my
website using Dreamweaver
First ..I would like to add the following RDS.xml file below.
I would like it to go into a box that is 100 x 100 px
<?xml version="1.0" encoding="utf-8" ?>
- <Playing station="HAWK">
- <item type="MUS">
<DateTime>Thu 10:52AM</DateTime>
<Cart />
<Artist>THE ROLLING STONES</Artist>
<SongTitle>JUMPIN' JACK FLASH</SongTitle>
</item>
</Playing>
Second ..an event.xml file that will scroll info with box
dimensions of 400 px w x 30 px h.
Both xml files would be on my site in a user_files folder
Any help would be greatly appreciated. Rob

> To use Dreamweaver, you'll need to write some code to
transform the XML
> into
> HTML. What code to write will depend on the server-side
scripting language
> you are using.
It means that you can't just plop in XML in the middle of
your HTML. Your
pages are HTML, so the XML needs to be transformed in to HTML
first. There
are various ways to do this. Are you using PHP? ASP? Etc.
Once we know that,
we can narrow down a solution for you.
-Darrel

Similar Messages

  • Help Needed Importing XML into a Database

    Hi:
    I'm new to Appleworks databases. I would like to create a database by importing records from a large XML file containing thousands of records. Is there a user's guide (or something else) I could read to help me do this? I have the schema for the XML file.
    Thanks,
    -AstraPoint

    I'm new to Appleworks databases. I would like to
    create a database by importing records from a large
    XML file containing thousands of records. Is there a
    user's guide (or something else) I could read to help
    me do this? I have the schema for the XML file.
    AppleWorks is a flat-file database and not a relational database. It will import ASCII text files ie tab-delimited data (TSV file format).
    You need to write an XSL template to convert your XML data into a TSV or CSV. I'd be surprised if there already wasn't the basics of a XSL template that could do this on Google.

  • *Help Needed* Adding multiple emails/mailing list in the email subscription

    Help Needed
    Hi,
    Can someone help me in adding multiple email address/mailing list in the email subscription for interactive reports in Apex 4.
    pls mail me at [email protected]
    Regards,
    Sunny

    The doc does not mention a separator for the email addresses because we only support one email address per subscription. I have logged a task for our next release to look at expanding it and allowing multiple.
    -- Sharon

  • Help  needed  in inserting  into column  of XML type

    i have requirement of inserting data into column of xml type
    eg
    cust product cost
    1 a 3
    1 b 7
    1 c 5
    now required result should
    <PROD-LIST>
    <a>3</a>
    <b>7</b>
    <c>5</c>
    </PROD-LIST>
    Please let me know how to achieve this , i was trying write function , it was working for one values ,but how to do if many values exist .

    Take a deep breath, then retype this putting in all the words and punctuation you missed out the first time until it makes sense.
    Your sample data, for example, could be better formatted using the [pre] and [/pre] tags to preserve formatting and put in a table format. Similarly with your output. Why are two of the numbers floating around freely in your xml but the 3rd isn't?

  • Help Needed with XML Attribute Access (Bold/Italics)

    Hi,
    I have a form that displays data in livecycle designer. When someone imports an xml file into the form in Adobe Acrobat it should be able to display some data as bolded and some italicized based on the xml file.
    Here is the sample xml file
    <Table1>
         <Row1>
              <Cell1 style="none">1</Cell1>
              <Cell2 style="bold">2</Cell2>
              <Cell3 style="italics">3</Cell3>
         </Row1>
    </Table1>
    And the output should be:
    1 2 3 
    Can someone please help! If the xml file should be designed differently please let me know.
    Thank you!

    Paul,
    Thanks for the help! I tried it out and it worked. One last question please. According to your explanation I added to the xml file the tags
    <body xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xmlns="http://www.w3.org/1999/xhtml" xfa:APIVersion="Acroform:2.7.0.0" xfa:spec="2.1">
    <p style="font-weight:bold;">2</p>
    </body>
    do I need to place this body tag around each number or can I place it in one location in the xml file?
    Thanks again.

  • Help needed with xml to flat file conversion

    Hi all,
    I am doing a webservice (SOAP) to file scenario. The file I get into the target directory is as below.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_Test_interface xmlns:ns1="http://test_namespace.co.uk"><fieldA>0000012345</fieldA><fieldB></fieldB><fieldC>0010203040</fieldC><transaction_type>NEW</transaction_type><transaction_date>2011/08/21</transaction_date><sales data>PARTNERS (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))</sales data></ns1:MT_Test_interface>
    But I want it to be a plain text file like below, not an xml file.
    0000012345
    0010203040
    NEW
    2011/08/21
    PARTNERS
    (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))
    What are all the modules I need and also the parameters and their values please?
    Any help is appreciated.
    Thanks.
    Ramesh.

    Thanks guys.
    My xml now is like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_test xmlns:ns1="http://test.co.uk">
    - <REPORT>
      <company_number>0000043239</company_number>
      <transaction_type>CREATE</transaction_type>
      <transaction_date>2011/08/21</transaction_date>
      <sales_data>Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), (382225.17 73214.976, 398410.463 95156.636)))</Partners>
      </REPORT>
      </ns1:MT_test>
    I am using the content conversion as below:
    Recordset Structure: REPORT
    Name: REPORT.addHeaderLine      Value: 1
    Name: REPORT.fieldSeparator      Value: ,
    Name: REPORT.endSeparator      Value: 'nl'
    Name: company_number.endSeparator      Value: 'nl'
    and I am getting the result as:
    company_number,transaction_type,transaction_date,sales_data
    0000043239,CREATE,2011/08/21,Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), 382225.17 73214.976, 398410.463 95156.636)))
    But I want file like this:
    company_number,transaction_type,transaction_date,sales_data
    0000043239
    CREATE
    2011/08/21
    Partners (((119006.258 169077.102), (372718.323 77854.466, 371449.872 70783.383), 382225.17 73214.976, 398410.463 95156.636)))
    What will be the CC parameters please?
    Many thanks.
    Ramesh.

  • Help need in XML to Proxy scenario

    HI Guys,
    I have got one scenaio from xml file --> ABAP proxy. This is for SNC integration, Product Acitivity Data. Please have a look the following xml file.
    <?xml version="1.0" encoding="UTF-8"?>
    <ROOT>
    <OUTPUT>
    <TRANS_HEADER>
      <SET_ID>852</SET_ID>
      <CNTL_NUMB>0001</CNTL_NUMB>
      <CUST_NUMB>3800580</CUST_NUMB>
      </TRANS_HEADER>
    <H01_XQ>
      <XQ01>H</XQ01>
      <XQ_Y2K_DATE1>20100601</XQ_Y2K_DATE1>
      </H01_XQ>
    <Group_N1>
    <H02_N1>
      <N101>ST</N101>
      <N102>SO. CALIF.</N102>
      <N103>UL</N103>
      <N104>0083967005509</N104>
      </H02_N1>
    <H02_N1_N4>
      <N401>SANBERNARDINO CALIFORNIA</N401>
      <N402>CA</N402>
      <N403>92407-185</N403>
      </H02_N1_N4>
    <H02_N1_DTM>
      <DTM01>600</DTM01>
      <DTM_Y2K_DATE>20100531</DTM_Y2K_DATE>
      </H02_N1_DTM>
      </Group_N1>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225037</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035569</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355698</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>0</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225052</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035570</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355704</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>2</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225078</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035571</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355711</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>2</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <S01_CTT>
      <CTT01>53</CTT01>
      </S01_CTT>
      </OUTPUT>
    <OUTPUT>
    <TRANS_HEADER>
      <SET_ID>852</SET_ID>
      <CNTL_NUMB>0001</CNTL_NUMB>
      <CUST_NUMB>3800580</CUST_NUMB>
      </TRANS_HEADER>
    <H01_XQ>
      <XQ01>H</XQ01>
      <XQ_Y2K_DATE1>20100601</XQ_Y2K_DATE1>
      </H01_XQ>
    <Group_N1>
    <H02_N1>
      <N101>ST</N101>
      <N102>SO. CALIF.</N102>
      <N103>UL</N103>
      <N104>0083967005509</N104>
      </H02_N1>
    <H02_N1_N4>
      <N401>SANBERNARDINO CALIFORNIA</N401>
      <N402>CA</N402>
      <N403>92407-185</N403>
      </H02_N1_N4>
    <H02_N1_DTM>
      <DTM01>600</DTM01>
      <DTM_Y2K_DATE>20100531</DTM_Y2K_DATE>
      </H02_N1_DTM>
      </Group_N1>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225037</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035569</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355698</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>0</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225052</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035570</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355704</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>2</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <D01_LIN>
      <LIN02>CB</LIN02>
      <LIN03>225078</LIN03>
      <LIN04>UA</LIN04>
      <LIN05>001230035571</LIN05>
      <LIN06>UK</LIN06>
      <LIN07>00012300355711</LIN07>
      <LIN08>ZZ</LIN08>
      <LIN09>2</LIN09>
      </D01_LIN>
    <D01_PO4>
      <P0401>10</P0401>
      </D01_PO4>
    <D01_N9>
      <N901>VN</N901>
      <N902>0000005121</N902>
      </D01_N9>
    <Group_ZA>
    <D02_ZA>
      <ZA01>QA</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QN</ZA01>
      <ZA02>1.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QO</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QP</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
    <D02_ZA>
      <ZA01>QS</ZA01>
      <ZA02>0.0</ZA02>
      <ZA03>CT</ZA03>
      <ZA06>LJ</ZA06>
      <ZA07>XX</ZA07>
      </D02_ZA>
      </Group_ZA>
      </Group_LIN>
    <Group_LIN>
    <S01_CTT>
      <CTT01>53</CTT01>
      </S01_CTT>
      </OUTPUT>
    </ROOT>
    1. Can you please tell me, Do we need Multimapping in this?
    2. To take this file into PI, do we need to use Ananimity bean parameters to sender file adapter module?
    3. the sender side XSD schma as follows is it okay are any change are required
    ROOT     Complex Type          
    OUTPUT     Element          0..unbounded
    TRANS_HEADER     Element          0..unbounded
    SET_ID     Element     xsd:string     0..1
    CNTL_NUMB     Element     xsd:string     0..1
    CUST_NUMB     Element     xsd:string     0..1
    H01_XQ     Element          0..unbounded
    XQ01     Element     xsd:string     0..1
    XQ_Y2K_DATE1     Element     xsd:date     0..1
    Group_N1     Element          0..unbounded
    H02_N1     Element          0..1
    N101     Element     xsd:string     0..1
    N102     Element     xsd:string     0..1
    N103     Element     xsd:string     0..1
    N104     Element     xsd:string     0..1
    H02_N1_N4     Element          0..1
    N401     Element     xsd:string     0..1
    N402     Element     xsd:string     0..1
    N403     Element     xsd:string     0..1
    H02_N1_DTM     Element          0..1
    DTM01     Element     xsd:string     0..1
    DTM_Y2K_DATE     Element     xsd:date     0..1
    Group_LIN     Element          0..unbounded
    D01_LIN     Element          0..unbounded
    LIN02     Element     xsd:string     0..1
    LIN03     Element     xsd:string     0..1
    LIN04     Element     xsd:string     0..1
    LIN05     Element     xsd:string     0..1
    LIN06     Element     xsd:string     0..1
    LIN07     Element     xsd:string     0..1
    LIN08     Element     xsd:string     0..1
    LIN09     Element     xsd:string     0..1
    D01_PO4     Element          0..unbounded
    P0401     Element     xsd:integer     0..1
    D01_N9     Element          0..unbounded
    N901     Element     xsd:string     0..1
    N902     Element     xsd:string     0..1
    Group_ZA     Element          0..unbounded
    D02_ZA     Element          0..unbounded
    ZA01     Element     xsd:string     0..unbounded
    ZA02     Element     xsd:decimal     0..unbounded
    ZA03     Element     xsd:string     0..unbounded
    ZA04     Element     xsd:string     0..unbounded
    ZA05     Element     xsd:string     0..unbounded
    ZA06     Element     xsd:string     0..unbounded
    ZA07     Element     xsd:string     0..unbounded
    ZA08     Element     xsd:string     0..unbounded
    ZA09     Element     xsd:string     0..unbounded
    S01_CTT     Element          0..unbounded
    CTT01     Element     xsd:string     0..1
    Any kind if help is good.
    Regards
    Many thanks in advance.
    San

    Hi Abhishek,
    Any example scenario do you about this model. I will explain our scenario situation, please give me your idea.
    We are doing Customer colloboration on SNC 7.0 with PI 7.11. Everyday customer sales files almost 100 comes individually EDI messages comes in EDI flat file, there is intermediate company will conver EDI flat file into xml messages. This xml file has got first 5 tags header information and the rest 50 to 100 lin items. This kind of header and lin information 3 to 5 messages per one xml.
    EX:  <RooT>
               <OUTPUT> -- 0..unbound
                  <Header-1>   --- 0..1
                  <Header-2>  ---  0..1
                  <Line -1>     0..n
                  <Line -7>     0..n
                       <ZA>      0..1
                       <ZA>      0..1
                  <Trailer>        0..1
    This is the structure. We need to populate all this customer information into Product Activity Notification on SNC 1..1.
    Could you please give me your ideas and recommandations.
    Many thanks for your help & effort.
    Regards
    San

  • Help needed: HTTPService, XML, Repeater

    Hi there
    I am very much new to Flex 2 technology and require help
    regarding HTTPService and XML.
    In my main application (NestedRepeater.mxml), I have the
    following code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:comps="component.*" layout="absolute"
    creationComplete="userRequest.send()">
    <mx:HTTPService id="userRequest"
    url="/Users/ronnyk/Sites/book.xml" useProxy="false" method="POST"
    />
    <mx:VBox>
    <mx:Repeater id="Repeater1"
    dataProvider="{userRequest.lastResult.book.section}">
    <comps:Section
    sectionNumber="{Repeater1.currentItem.sectionnumber}"
    xmlSection="{Repeater1.currentItem}" />
    </mx:Repeater>
    </mx:VBox>
    </mx:Application>
    In my real app, I have a PHP script as the url for the
    HTTPService, but for the sake of simplicity, I'll just use
    book.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <book>
    <section>
    <sectionnumber>s1</sectionnumber>
    <chapter>
    <chapternumber>c1</chapternumber>
    </chapter>
    <chapter>
    <chapternumber>c2</chapternumber>
    </chapter>
    </section>
    <section>
    <sectionnumber>s2</sectionnumber>
    <chapter>
    <chapternumber>c3</chapternumber>
    </chapter>
    </section>
    </book>
    As you can see as well, I have a custom component called
    Section.mxml within the repeater of the main app, the custom
    component is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var xmlSection:XML;
    [Bindable]
    public var sectionNumber:String;
    ]]>
    </mx:Script>
    <mx:VBox>
    <mx:Panel id="panel1" layout="absolute" title="Section"
    width="166" height="70">
    <mx:VBox>
    <mx:Label text="{this.sectionNumber}"/>
    </mx:VBox>
    </mx:Panel>
    <mx:Repeater id="Repeater2"
    dataProvider="{xmlSection.chapter}">
    <mx:Panel layout="absolute" title="Chapter" height="100"
    width="166">
    <mx:Label text="{Repeater2.currentItem.chapternumber}"
    />
    </mx:Panel>
    </mx:Repeater>
    </mx:VBox>
    </mx:Canvas>
    I am passing xmlSection="{Repeater1.currentItem}" to the
    custom component so that I can correctly create nested children for
    each parent. But anyway, my problem happens when I include
    xmlSection="{Repeater1.currentItem}" to the custom Section
    component, it always displays only one section (the label "s1"
    doesn't even appear), but if I exclude
    xmlSection="{Repeater1.currentItem}", when I run it, it displays
    correctly:
    s1
    s2
    Any help/suggestion would be greatly appreciated as I am at
    my wits end regarding my project.
    Let me know if you need any more info.
    Thanks!

    Hi again,
    After going through the HTTPService topic forum, I should be
    using resultHandler for my HTTPService, so I change my main mxml
    app into:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:comps="component.*" layout="absolute"
    creationComplete="userRequest.send()">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var myData:XML;
    private function resultHandler(event:ResultEvent):void {
    myData = event.result.book.section as XML;
    ]]>
    </mx:Script>
    <mx:HTTPService id="userRequest"
    url="/Users/ronnyk/Sites/book.xml" resultFormat="e4x"
    result="resultHandler(event)" useProxy="false" method="POST" />
    <mx:VBox>
    <mx:Repeater id="Repeater1" dataProvider="{myData}">
    <comps:Section
    sectionNumber="{Repeater1.currentItem.sectionnumber}"
    xmlSection="{Repeater1.currentItem}" />
    </mx:Repeater>
    </mx:VBox>
    </mx:Application>
    But now, when I run it, it displays nothing, just a blank
    browser. Can someone please help? Maybe because I shouldn't use
    creationComplete="userRequest.send()" in the Application tag?
    Thanks!

  • Help needed in XML Bursting

    Hi,
    I am working first time on XML report bursting concept.
    I have two remit to addresses in my report xml. I nedd to burst my report at address level.
    This is my report xml:
    <ARXSGPO>
    <LIST_G_SETUP>
    <G_SETUP>
    <LIST_G_STATEMENT>
    <G_STATEMENT>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
    <LIST_G_LINE_CLUSTER>
    <G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    </LIST_G_AMOUNT_DUE>
    <LIST_G_1>
    <G_1>
    <CF_REMIT_TO_ADDRESS1>Phoenix Centre </CF_REMIT_TO_ADDRESS1>
    <CF_REMIT_TO_ADDRESS2>Millenium Way West</CF_REMIT_TO_ADDRESS2>
    <CF_REMIT_TO_ADDRESS3 />
    <CF_REMIT_TO_ADDRESS4 />
    <CF_REMIT_TO_ADDRESS5 />
    </G_STATEMENT>
    <G_STATEMENT>
    <LIST_G_AMOUNT_DUE>
    <G_AMOUNT_DUE>
    <LIST_G_LINE_CLUSTER>
    <G_LINE_CLUSTER>
    </G_LINE_CLUSTER>
    </LIST_G_LINE_CLUSTER>
    </G_AMOUNT_DUE>
    <LIST_G_1>
    <G_1>
    <CF_REMIT_TO_ADDRESS1>Second Avenue</CF_REMIT_TO_ADDRESS1>
    <CF_REMIT_TO_ADDRESS2>Poynton Industrial Estate </CF_REMIT_TO_ADDRESS2>
    <CF_REMIT_TO_ADDRESS3 />
    <CF_REMIT_TO_ADDRESS4 />
    <CF_REMIT_TO_ADDRESS5 />
    </G_SETUP>
    </LIST_G_SETUP>
    </ARXSGPO>
    I am defining my control file like this.
    <?xml version="1.0" encoding="UTF-8" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="ARXSGPO/LIST_G_SETUP/G_SETUP/LIST_G_STATEMENT/G_STATEMENT/LIST_G_AMOUNT_DUE/G_AMOUNT_DUE/
    LIST_G_LINE_CLUSTERG_LINE_CLUSTER/LIST_G_1/G_1/CF_REMIT_TO_ADDRESS1">
    <xapi:delivery>
    <xapi:print id="printer1" printer="ipp://ipgpc1.us.oracle.com:631/printers/printer_p6op286a" copies="1" />
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="printer1">
    <xapi:template type="rtf" location="location="/disk3/oracle/viscomn/java/oracle/apps/fnd/cp/sample/statement.rtf" filter=".//G_1[INTERNAL_NOTES='PRINTER']" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    1) Can I use CF_REMIT_TO_ADDRESS1 in the attribute select under the request element
    2) In Database I have two printers attached for these addresses. I need to send output directly to printer. How can I differentiate details of
    printer in control file for each address?
    Please help me in this.
    Thanks in advance

    Hi,
    Thanks for your reply. when I am running my request I am getting java.lang.NullPointerException from Bursting program.
    Details of log file.
    Request ID: 6355955All
    Parameters: ReportRequestID=6355950:
    DebugFlag=YReport
    Req ID: 6355950Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request informationNode Name:ORADB02
    Preparing parameters
    null output =/ora_code3/db04/db04comn/admin/out/db04_oradb02/o6355955.out
    inputfilename =/ora_code3/db04/db04comn/admin/out/db04_oradb02/o6355950.out
    Data XML File:/ora_code3/db04/db04comn/admin/out/db04_oradb02/o6355950.out
    Set Bursting parameters..Temp.
    Directory:/ora_code3/db04/db04comn/temp/[010808_021907137][][STATEMENT]
    Oracle XML Parser version ::: Oracle XDK Java 9.0.4.0.0 ProductionStart bursting process..[010808_021907140][][STATEMENT] /ora_code3/db04/db04comn/temp/[010808_021907146][][STATEMENT] BurstingProcessor ::: Property Key ---> burstng-source[010808_021907146][][STATEMENT] Inside burstingConfigParser[010808_021907150][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================--
    Exception
    null
    java.lang.NullPointerException     at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingStartElement(BurstingProcessorEngine.java:1417)     at oracle.apps.xdo.batch.BurstingProcessorEngine.startElement(BurstingProcessorEngine.java:1110)     at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167)     at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182)     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:227)
    Please help me.
    Thanks

  • Urgent help needed for XML Tags using XMLForest()

    Folks
    I need some urgent help regarding getting use defined tag in your
    XML output.
    For this I am using XMLElement and XMLForest which seems to work fine
    when used at the SQL prompt but when used in a procedure throws and error
    SQL> Select SYS_XMLAGG(XMLElement("SDI",
                                       XMLForest(sdi_num)))
         From sdi
         where sdi_num = 22261;- WORKS FINE
    But when used in a procedure,doesnt seem to work
    Declare
        queryCtx  DBMS_XMLQuery.ctxType;
        v_xml     VARCHAR2(32767);
        v_xmlClob CLOB;
        BEGIN
        v_xml:='Select SYS_XMLAGG(XMLElement("SDI",
                                             XMLFOREST(sdi_num)))
        From sdi
        where sdi_num = 22261';
        queryCtx :=DBMS_XMLQuery.newContext(v_xml);
        v_xmlClob :=DBMS_XMLQuery.getXML(queryCtx);
        display_xml(v_xmlClob);
    End;
    CREATE OR REPLACE PROCEDURE  display_xml(result IN OUT NOCOPY CLOB)
    AS
         xmlstr varchar2(32767);
         line varchar2(2000);
    BEGIN
         xmlstr:=dbms_lob.SUBSTR(result,32767);
         LOOP
         EXIT WHEN xmlstr is null;
         line :=substr(xmlstr,1,instr(xmlstr,chr(10))-1);
         dbms_output.put_line('.'||line);
         xmlstr := substr(xmlstr,instr(xmlstr,chr(10))+1);
         END LOOP;
    end;
    SQL> /
    .<?xml version = '1.0'?>
    .<ERROR>oracle.xml.sql.OracleXMLSQLException: Character ')' is not allowed in an
    XML tag name.</ERROR>
    PL/SQL procedure successfully completed.
    SQL>HELP is appreciated as to where I am going wrong?

    Hi,
    if you want to transform something to something else, you should declare, what is your source.
    I would prefer to use plain XSL-Transformations, because you have a lot more options to transform your source and you can even better determine, how your output should looks like.
    Kind regards,
    Hendrik

  • Help needed in XML Bursting to set printer details

    Hi,
    In xml bursting to set the printer details, we need to Specify the printer attribute as a URI such as:"ipp://myprintserver:631/printers/printername"
    Here I am getting printername dynamically from report. But I am
    not understanding "ipp://myprintserver:631/printers". Here What I have to give?
    Please help me in this.
    Thanks in advance.

    Which environment are you trying this in ? In Enterprise server, bursting is defined by a SQL query which can be run against the table that you want. So you can even populate the printer name from your query. So the URI, ipp://myprintserver:631/printers/printername" is the syntax. In your case you have to create this string in your SQL query by concatenating the parts "ipp://" + printername + ":631/". If there is a name to the printer in the printserver, then that too can be concatenated.
    In case this is in EBS , the same has to be done in the control file.

  • Help Needed in Xml Stored Procedure

    Hi , i am trying to write one sp which takes xml document as a parameter. I want to update/Insert the data in the xml based on some conditions. So i put the data from xml to a global TEMPORARY table. The i process this data and will update /Insert the data based on the output.
    Right now i am unable to create global TEMPORARY table my stored procedure .When i compile the stored procedure , its showing the following error
    Compilation errors for PROCEDURE SYSTEM.TESTXML
    Error: PLS-00103: Encountered the symbol "CREATE" when expecting one of the following:
    begin case declare exit for goto if loop mod null pragma
    raise return select update while with <an identifier>
    <<
    close current delete fetch lock insert open rollback
    savepoint set sql execute commit forall merge pipe
    Line: 8
    Text: CREATE GLOBAL TEMPORARY TABLE temp
    I am attaching my sp below
    create or replace procedure testxml
    ( xmlDoc IN clob )
    is
    updCtx DBMS_XMLStore.ctxType;
    rows NUMBER;
    begin
    CREATE GLOBAL TEMPORARY TABLE temp
    ( cdcalendar NUMBER,
    cdperiod NUMBER,
    cdsubperiod NUMBER,
    cdglperiod NUMBER,
    dtstartsubperiod date,
    dtendsubperiod date
    ) ON COMMIT PRESERVE ROWS;
    updCtx := DBMS_XMLStore.newContext(temp)
    rows := DBMS_XMLStore.insertXML(updCtx,xmlDoc);
    DBMS_XMLStore.closeContext(updCtx);
    if Not exists
    (Select Distinct cd_calendar from Calendar_Period
    Where cd_calendar = select Distinct cdcalendar from temp )
    Then
    Insert into calendar_period
    cd_calendar,
    cd_period,
    cd_subperiod,
    cd_gl_period,
    dt_start_subperiod,
    dt_end_subperiod
    select cdcalendar,
    cdperiod,
    cdsubperiod,
    cdglperiod,
    dtstartsubperiod,
    dtendsubperiod
    from temp ;
    Else
    Update calendar_period
    Set cdp.cd_calendar = temp.cdcalendar ,
    cdp.cd_period = temp.cdperiod,
    cdp.cd_subperiod = temp.cdsubperiod ,
    cdp.cd_gl_period = temp.cdglperiod,
    cdp.dt_start_subperiod = temp.dtstartsubperiod ,
    cdp.dt_end_subperiod = temp.dtendsubperiod
    From
    calendar_period cdp Inner Join temp
    On
    cdp.cd_calendar = temp.cdcalendar
    cdp.cd_subperiod = temp.cdsubperiod
    cdp.cd_period = temp.cdperiod ;
    End if
    end testxml;
    Kindly guide me !!!!

    Hi,
    "CREATE GLOBAL TEMPORARY TABLE" is not a PL/SQL sommand; it is a SQL command. That explain the error message you're getting.
    Normally, tables (including Global Temporary Tables) are created once for all, without using PL/SQL. After they are created, you can write PL/SQL code to populate and use them. This job doies not seem to be an exception.
    In the rare event that you do need to create a table in PL/SQL, use EXECUTE IMMEDIATE, which can do any SQL command from withiin PL/SQL.
    EXECUTE IMMEDIATE is documented in the PL/SQL manual:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/dynamic.htm#sthref857

  • Help needed: Adding 2nd widget makes 1st widget stop working

    Dear all,
    I use 1 widget, jQuery Cycle, and it was working fine, until i added a 2nd one, FlexSlider.
    How can i make both working on the same page?
    My website is : VINDSTERS - Wij Vinden wat u zoekt!  and please see my coding below.
    Thanks a lot!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src=
    "main slide js/smoothscroll.js"></script>
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2559022" binding="#slideshow_header" />
      <oa:widget wid="2559022" binding="#slideshow_1" />
      <oa:widget wid="2827522" binding="#OAWidget" />
    </oa:widgets>
    -->
    </script>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script src="main slide js/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="main slide js/jquery.cycle.all.js" type="text/javascript"></script>
    <script src="gevonden door js/modernizr-2.5.2-respond-1.1.0.min.js" type="text/javascript"></script>
    <script src="gevonden door js/jquery-1.7.2.min.js" type="text/javascript"></script>
    <script src="gevonden door js/jquery.flexslider-min.js" type="text/javascript"></script>
    <script src="gevonden door js/jquery.mousewheel.js" type="text/javascript"></script>
    <script src="gevonden door js/jquery.easing.1.3.js" type="text/javascript"></script>
    <script>
    $(document).ready(function() {
        $("#cont2").hide();
    $('#showMenu').click(function()
    $("#cont2").slideToggle('slow');     
    $(document).ready(function() {
    $('.closeMenu').click(function()
    $("#cont2").slideUp('slow');     
    </script>
    <style type="text/css">
    /* BeginOAWidget_Instance_2559022: #slideshow_header */
      #slideshow_header {
        padding: 0px;
      margin:0;
      #slideshow_header-caption{
      padding:0;
      margin:0;
      #slideshow_header img, #slideshow_header div {
        padding: 0px;
        background-color: #ffffff;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
        margin: 0;
    /* EndOAWidget_Instance_2559022 */
    </style>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    <link href="css/flexslider.css" rel="stylesheet" type="text/css" />
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <b><title>VINDSTERS - Wij Vinden wat u zoekt!</title></b>
    <meta name="Description" content="Vindsters.nl Wij vinden wat u zoekt" />
    <meta name="keywords" content="vindsters,vindsters.nl,tweedehands, zoeken, design, vintage, vinden, service, meubels, kleding, schoenen" />
    <link href="icons/logo-vindsters-square.gif" rel="shortcut icon " />
    <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="#"><h1><a href="#" id="showMenu">MENU
      </a> </div>
    <div id="cont2" class="hidden">
        <ul>
      <li>s
        <h1><a href="#fadein" class="closeMenu">HOME</a></h1>
      </li>
      <li>
        <h1><a href="#info" class="closeMenu">HOE WERKT HET?</a></h1>
      </li>
      <li>
        <h1><a href="#mainbox2" class="closeMenu">PRIJZEN</a></h1>
      </li>
      <li>
        <h1><a href="#leftcollum2" class="closeMenu">GEVONDEN DOOR...</a></h1>
      </li>
      <li>
        <h1><a href="#mainbox" class="closeMenu">OVER VINDSTERS</a></h1>
      </li>
      <li>
        <h1><a href="#footer" class="closeMenu">CONTACT & VOORWAARDEN </a></h1>
      </li>
      </ul>
      <p> </p>
      </div>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow_header
           slideshow_headerAddCaption=true;
    $(document).ready(function() {
      $('#slideshow_header').cycle({
      after: slideshow_headerOnCycleAfter, //the function that is triggered after each transition
      autostop: false,     // true to end slideshow after X transitions (where X == slide count)
      fx: 'scrollLeft,',// name of transition effect
      pause: true,     // true to enable pause on hover
      randomizeEffects: true,  // valid when multiple effects are used; true to make the effect sequence random
      speed: 1000,  // speed of the transition (any valid fx speed value)
      sync: true,     // true if in/out transitions should occur simultaneously
      timeout: 7000,  // milliseconds between slide transitions (0 to disable auto advance)
      fit: true,
      height:   '570px',
      width:         '100%'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshow_headerOnCycleAfter() {
      if (slideshow_headerAddCaption==true){
      $('#slideshow_header-caption').html(this.title);
    // EndOAWidget_Instance_2559022
    </script>
    <div id="slideshow_header">
       <!--All elements inside this will become slides-->
    <img src="images/front-1.jpg" width="100%" height="500" title="" /><img src="images/front2.jpg" width="100%" height="500" title="" /></div>
    <!--It is safe to delete this if captions are disabled-->
    <div id="slideshow_header-caption"></div>
    <div id="tab">
      <h4><img src="icons/start2.png" width="310" height="128" alt="button" onclick="window.open('http://vindsters.nl/vindditnu%20php%20version.php','Websonic','width=960,height=600,scroll bars=no,toolbar=no,location=no'); return false" /></h4>
    </div>
      <div id="part2">
        <div id="fadein">
          <h4> Hallo! </h4>
      <h4> Wij zijn VINDSTERS.NL    </h4>
          <h2>Vinden word vanaf nu heel eenvoudig!</h2>
          <h2>Ben je al tijden opzoek naar iets, maar heb je geen idee waar je het moet vinden? </h2>
          <h2>Geen zin of tijd om de duizende advertenties op makrtplaats/ebay of speurders af te gaan?</h2>
          <h2>Vindsters vind alle 2de hands spullen die jij zo graag wil hebben! </h2>
          <div id='button'>
            <p><img src="icons/start2.png" width="310" height="128" alt="button" onclick="window.open('http://vindsters.nl/vindditnu%20php%20version.php','Websonic','width=960,height=600,scroll bars=no,toolbar=no,location=no'); return false" /></p></div>
        </div>
        <div id="info">
          <h4>AANVRAGEN! </h4>
          <h2>Laat ons in je aanvraag met een korte omschrijving weten wat je zoekt. </h2>
          <h2>Naar aanleiding van je aanvraag stellen onze vindsters een korte vragenlijst samen die je per email ontvangt. </h2>
          <h2>Hierin kan je heel gemakkelijk je verdere wensen aangeven. </h2>
          <h2>Alles compleet? Stuur de <br />
            vragenlijst dan naar ons terug en betaal gemakkelijk via de IDeal link in de mail.    </h2>
        </div>
            <div id="info3">
              <p><img src="images/info2.gif" width="748" height="213" /></p>
        </div>
        <div id="tab2">
          <h1>v Lees meer v</h1>
        </div>
        <div id="info2">
          <p> </p>
          <h4> </h4>
          <h4>GEVONDEN! </h4>
      <h2>Zodra je vragenlijst &amp; betaling binnen is, gaan wij voor je aan de slag! </h2>
          <h2>Binnen het afgesproken
            termijn, ontvang je per mail 3 tot 5 passende
            advertenties. </h2>
          <h2>Deze prducten worden persoonlijk door ons geselecteerd, dus je ontvangt altijd een passend aanbod! </h2>
          <h2>&amp; mochten we onverhoopt helemaal niks kunnen vinden, dan krijg je natuurlijk je geld terug. </h2>
          <h2>Alles compleet? Stuur de vragenlijst dan naar ons terug en betaal gemakkelijk via de IDeal link in de mail.</h2>
          <p> </p>
          <h1> </h1>
        </div>
        <div id="mainbox2">
          <div id="insideright2">
            <h4>PRIJZEN</h4>
      <h2>Bij VINDSTERS.NL betaal je altijd maar €5.95 per zoekopracht!      </h2>
            <h2>En succes gegarandeerd, want kunnen wij onverhoopt niet vinden wat jij zoekt?</h2>
            <h2> Dan krijg je de betaalde kosten gewoon terug!</h2>
            <p></p>
          </div>
      </div>
        <div id="gevondendoor">
      <h1>GEVONDEN DOOR VINDSTERS.NL</h1>
      <script type="text/javascript">
    // BeginOAWidget_Instance_2827522: #OAWidget
    $(window).load(function() {
          $('#slider').flexslider({
         namespace: "flex-",             //{NEW} String: Prefix string attached to the class of every element generated by the plugin
        selector: ".slides > li",       //{NEW} Selector: Must match a simple pattern. '{container} > {slide}' -- Ignore pattern at your own peril
          animation: "slide",
        easing: "swing",               //{NEW} String: Determines the easing method used in jQuery transitions. jQuery easing plugin is supported!
          direction: "horizontal",   //String: Select the sliding direction, 'horizontal' or 'vertical'
        reverse: false,                 //{NEW} Boolean: Reverse the animation direction
        animationLoop: false,             //Boolean: Should the animation loop? If false, directionNav will received "disable" classes at either end
        smoothHeight: true,            //{NEW} Boolean: Allow height of the slider to animate smoothly in horizontal mode
          slideshow: true,                //Boolean: Animate slider automatically
          slideshowSpeed: 5000,           //Integer: Set the speed of the slideshow cycling, in milliseconds
          animationSpeed: 600,         //Integer: Set the speed of animations, in milliseconds
          initDelay: 0,                   //{NEW} Integer: Set an initialization delay, in milliseconds
          randomize: false,               //Boolean: Randomize slide order
        useCSS: true,                   //{NEW} Boolean: Slider will use CSS3 transitions if available
          touch: true,                    //{NEW} Boolean: Allow touch swipe navigation of the slider on touch-enabled devices
           video: false,                   //{NEW} Boolean: If using video in the slider, will prevent CSS3 3D Transforms to avoid graphical glitches
          directionNav: true,             //Boolean: Create navigation for previous/next navigation? (true/false)
          controlNav: true,               //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage
          keyboard: true,              //Boolean: Allow slider navigating via keyboard left/right keys
          mousewheel: false,              //Boolean: Allow slider navigating via mousewheel
          prevText: "Previous",           //String: Set the text for the "previous" directionNav item
          nextText: "Next",               //String: Set the text for the "next" directionNav item
          pausePlay: false,               //Boolean: Create pause/play dynamic element
          pauseText: "Pause",             //String: Set the text for the "pause" pausePlay item
          playText: "Play",               //String: Set the text for the "play" pausePlay item
          startAt: 0,                //Integer: The slide that the slider should start on. Array notation (0 = first slide)
          pauseOnAction: true,            //Boolean: Pause the slideshow when interacting with control elements, highly recommended.
          pauseOnHover: true,            //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering 
          start: function(){},            //Callback: function(slider) - Fires when the slider loads the first slide
       controlsContainer: "",          //Selector: Declare which container the navigation elements should be appended too. Default container is the flexSlider element. Example use would be ".flexslider-container", "#container", etc. If the given element is                                        not found, the default action will be taken.
           manualControls: "",             //Selector: Declare custom control navigation. Example would be ".flex-control-nav li" or "#tabs-nav li img", etc. The number of elements in your controlNav should match the number of slides/tabs.
           // Carousel Options
        itemWidth: 0,                   //{NEW} Integer: Box-model width of individual carousel items, including horizontal borders and padding.
        itemMargin: 10,                  //{NEW} Integer: Margin between carousel items.
        minItems: 0,                    //{NEW} Integer: Minimum number of carousel items that should be visible. Items will resize fluidly when below this.
        maxItems: 0,                    //{NEW} Integer: Maxmimum number of carousel items that should be visible. Items will resize fluidly when above this limit.
        move: 0,                        //{NEW} Integer: Number of carousel items that should move on animation. If 0, slider will move all visible items.
       before: function(){},           //Callback: function(slider) - Fires asynchronously with each slider animation
          after: function(){},            //Callback: function(slider) - Fires after each slider animation completes
          end: function(){}               //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous)
    // EndOAWidget_Instance_2827522
      </script>
      <div id="main-container">
        <p><a href="http://www.woothemes.com/flexslider/">Flexslider Demo and Documentation</a></p>
        <div id="main" class="wrapper clearfix">
          <!-- FlexSlider -->
          <div id="container">
            <div id="slider" class="flexslider">
              <ul class="slides">
                <li> <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_lemon.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_donut.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_caramel.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_lemon.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_donut.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_caramel.jpg" /> </li>
              </ul>
            </div>
            <div id="carousel" class="flexslider" style="display:none;">
              <ul class="slides">
                <li> <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_lemon.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_donut.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_caramel.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_lemon.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_donut.jpg" /> </li>
                <li> <img src="images/kitchen_adventurer_caramel.jpg" /> </li>
              </ul>
            </div>
          </div>
        </div>
        <!-- #main -->
      </div>
      <!-- #main-container -->
        </div>
        <div id="leftcollum2">
          <h1>VOORWAARDEN!</h1>
      <h2>Wij houden het graag zo simpel  mogelijk! </h2>
      <h2><a href="voorwaarden.html">lees hier de voorwaarden</a></h2>
          <p> </p>
      </div>
        <div id="rightcollum2">
          <h1>VRAAG &amp; ANTWOORD</h1>
      <h2>Heeft u vragen of suggesties. Laat het ons weten! </h2>
          <h2><a href="contact.html">Contact</a></h2>
          <h2> </h2>
        </div>
        <div id="mainbox">
          <div id="insideright">
            <h1>Over VINDSTERS.NL </h1>
            <h2>Vindsters.nl is opgericht  door Anne &amp; Lisa van Steenbergen. Twee zussen met een passie voor mooie spulletjes.</h2>
            <h2>Het speuren naar tweedehands zit ze in het bloed. Talloze meubels, vintage laarzen, oud speelgoed of designer item is in de loop der jaren aangeschaft.      En in begin 2014 werd het tijd dit deze goede neus voor het speuren te delen met andere. Het resultaat, Vindsters.nl </h2>
            <h2>Vindsters.nl is een service die het mogelijk maakt om alles te vinden wat je zoekt op het gebied van tweedehands artikelen. </h2>
            <h2>Van  die ene favorite spijkerbroek die je terug wilt of die dure merkbank die je voor een prikje hoopt te scoren tot dat kastje van ikea die niet meer word gemaakt of de speelgoedbeer die je vroeger had, Vindsters.nl bied je de mogelijkheid dit eenvoudig te vinden. </h2>
            <h2>Vindsters.nl selecteerd voor jouw persoonlijk 3 tot 5 advertenties die je zoekt uit alle duizenden advertenties die er online zijn.    </h2>
          </div>
        </div>
        <div class="button2">
      <img src="icons/start2.png"  width="412" height="149" alt="button" onclick="window.open('http://vindsters.nl/vindditnu%20php%20version.php','Websonic','width=960,height=600,scroll bars=no,toolbar=no,location=no'); return false" /></div>
      </div>
        <div id="footer">
          <h2> <a href="voorwaarden.html" target="_new" class="smoothScroll">VOORWAARDEN</a>   |  <a href="contact.html" target="_new" >CONTACT</a>   |    <a href="http://www.pinterest.com/vinddit/" target="_new"><img src="icons/pinterest.png" width="20" height="20" align="absbottom" /></a>    <a href="https://www.facebook.com/" target="_new"><img src="icons/fb_1.png" width="20" height="20" align="absbottom" /></a></h2>
          <p><img src="images/iDEAL_120x30_dubbel.jpg" alt="IDEAL" name="ideal" width="120" height="30" id="ideal" /></p>
        </div>
    </body>
    </html>

    Adding to osgood's reply, you are calling four different jquery libraries as in
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src=
    "main slide js/smoothscroll.js"></script>
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2559022" binding="#slideshow_header" />
      <oa:widget wid="2559022" binding="#slideshow_1" />
      <oa:widget wid="2827522" binding="#OAWidget" />
    </oa:widgets>
    -->
    </script>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script src="http://vindsters.nl/main slide js/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="http://vindsters.nl/main slide js/jquery.cycle.all.js" type="text/javascript"></script>
    <script src="http://vindsters.nl/gevonden door js/modernizr-2.5.2-respond-1.1.0.min.js" type="text/javascript"></script>
    <script src="http://vindsters.nl/gevonden door js/jquery-1.7.2.min.js" type="text/javascript"></script>
    This will confuse the browser no end!
    My advice is to remove the last three highlighted lines to see what happens.

  • Help needed in XML

    We have xml like below.
    <?xml version="1.0" encoding="UTF-8" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi/">
    <xapi:request select="/XXARXSGPO/LIST_G_SETUP/G_SETUP/LIST_G_CUST_NUM/G_CUST_NUM">
    <xapi:delivery>
    <xapi:filesystem output="${INSTANCE}/java/oracle/apps/xxod/arstatements/${SITE_USE_ID}"/>
    </xapi:delivery>
    <xapi:document output-type= "pdf">
    <xapi:template type="rtf" location="/app/ebs/atgsidev02/gsidev02cust/xxcomn/java/oracle/apps/xxod/XXARPRST.rtf">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    In the above code {INSTANCE} is having value '/app/ebs/atgsidev02/gsidev02cust/xxcomn'. Now we need to replace with the same variable {INSTANCE} in the <xapi:template type=..........> tag also. We tried with
    <xapi:template type="rtf" location="${INSTANCE}/java/oracle/apps/xxod/XXARPRST.rtf">.
    But it is not recognizing the INSTANCE value.
    Any help on this appreciated.
    Thanks,
    Samba

    Hi,
    The INSTANCE is a tag and having the value '/app/ebs/atgsidev02/gsidev02cust/xxcomn'. So I need to pass this string dynamically to the
    <xapi:document output-type= "pdf">
    <xapi:template type="rtf" location="/app/ebs/atgsidev02/gsidev02cust/xxcomn/java/oracle/apps/xxod/XXARPRST.rtf">
    </xapi:template>
    </xapi:document>
    So for the above one I replaced the INSTANCE as follows.
    <xapi:document output-type= "pdf">
    <xapi:template type="rtf"
    location="${INSTANCE}/java/oracle/apps/xxod/XXARPRST.rtf">
    </xapi:template>
    </xapi:document>
    But this one is not working.
    Pls help me this is very high priority to me.
    Thanks,
    Samba

  • Help needed in XML Form Builder

    Hi All,
    I require your help in XML form .
    when we create a XML form in Builder we can define some caption values such as $sap_user , $ locDate which displays the
    user id and date in the respective field when the form is opened.
    I need to dispaly the phone number,department etc from the LDAP /UME to my from .
    How can i get it .
    Please help.
    Regards,
    Nitesh

    Which environment are you trying this in ? In Enterprise server, bursting is defined by a SQL query which can be run against the table that you want. So you can even populate the printer name from your query. So the URI, ipp://myprintserver:631/printers/printername" is the syntax. In your case you have to create this string in your SQL query by concatenating the parts "ipp://" + printername + ":631/". If there is a name to the printer in the printserver, then that too can be concatenated.
    In case this is in EBS , the same has to be done in the control file.

Maybe you are looking for

  • Corrupt MacBook Pro Startup Screen

    Hi everybody, Occasionally, when i start up my MacBook Pro, the sign-in screen background image is corrupt along the bottom and the right hand side (See images below). I can sign in no problem, then all corruption is gone. The laptop always functions

  • Mail server (dovecot) stop authenticate (server.app 3.0.3, OsX 10.9.2)

    Hi, I have this problem: on a Mac mini with Maverick 10.9.2 and Server.app 3.0.3 with Open Directory (with about 75 Users and mail), it appears that randomly, dovecot stop to authenticate mail clients without standart method, so all Windows client st

  • "Component Install Failed" for CS3 on Windows 7

    For reference, I have a Lenovo X200 Tablet PC, running Windows 7 and Creative Suite 3 Design Standard. Last Friday, 9/23, I tried opening Illustrator and received an error message that told me to uninstall then reinstall the program. I received the s

  • Preview crashes every time!

    Hello everyone, I was registering for this forum 'cause I really need help with my Mac. My problem is simple: Every time I open a file with "Preview" the program crashes. Can I print the crash report in this forum or are there any really sensitive in

  • JCHQ Exam Question

    Hi all, I was looking at following code and assumed that the output would have been 23? iSize in the go() shadows the class variable i, so when: iSize += i + j + k; is carried out shouldnt it be that 10+10+1+1+1 (with the first 10 being the value ass