Link to xml from xml ( mx:Button click="function({...});" )

links.xml contains links for page1, page2
links.xml
|
+-- page1.xml
|
+-- page2.xml
I try:
<mx:Button click="loadXML2({ getField( XML(
linksItems.currentItem ), how1Link ) });" label="Link" />
Debugger says:
Error: Repeater is not executing.
at mx.core::Repeater/get currentItem()
at LinkFromXML2/___LinkButton1_click()
<!-- File: links.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns="
http://web.resource.org/cc/"
xmlns:dc="
http://purl.org/dc/elements/1.1/"
xmlns:rdf="
http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<item>
<dc:title>Page 1</dc:title>
<dc:link>page1.xml</dc:link>
</item>
<item>
<dc:title>Page 2</dc:title>
<dc:link>page2.xml</dc:link>
</item>
</rdf:RDF>
<!-- File: page1.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns="
http://web.resource.org/cc/"
xmlns:dc="
http://purl.org/dc/elements/1.1/"
xmlns:rdf="
http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<dc:Work>
<dc:title>Page 1</dc:title>
</dc:Work>
</rdf:RDF>
<!-- File: page2.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns="
http://web.resource.org/cc/"
xmlns:dc="
http://purl.org/dc/elements/1.1/"
xmlns:rdf="
http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<dc:Work>
<dc:title>Page 2</dc:title>
</dc:Work>
</rdf:RDF>
<!-- File: LinkFromXML.mxml -->
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute"
creationComplete="loadXML('links.xml');">
<mx:Script>
<![CDATA[
import mx.collections.XMLListCollection;
public var pathxml:String;
public var pathxml2:String;
private var how:Namespace = new Namespace("
http://web.resource.org/cc/");
private var dc:Namespace = new Namespace("
http://purl.org/dc/elements/1.1/");
[Bindable]
private var how1Title:QName = new QName(dc, "title");
[Bindable]
private var how1Link:QName = new QName(dc, "link");
[Bindable]
private var how2Title:QName = new QName(dc, "title");
[Bindable]
private var how1externalXML:XMLListCollection;
[Bindable]
private var how2externalXML:XMLListCollection;
private function loadXML(pathxml):void {
trace (pathxml);
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest(pathxml);
loader.load(request);
loader.addEventListener(Event.COMPLETE, onComplete);
private function loadXML2(pathxml2):void {
var loader2:URLLoader = new URLLoader();
var request2:URLRequest = new URLRequest(pathxml2);
loader2.load(request2);
loader2.addEventListener(Event.COMPLETE, onComplete2);
private function onComplete(event:Event):void {
var loader:URLLoader = URLLoader(event.target);
var how1Items:QName = new QName(how, "item");
var dataXML:XML = XML( loader.data );
dataXML.addNamespace( dc );
var how1base:XMLList = dataXML.descendants( how1Items
how1externalXML = new XMLListCollection( how1base );
private function onComplete2(event:Event):void {
var loader2:URLLoader =
URLLoader(event.target);
var how2Items:QName = new QName(dc, "Work");
var dataXML:XML = XML( loader2.data );
dataXML.addNamespace( dc );
var how2base:XMLList = dataXML.descendants( how2Items
how2externalXML = new XMLListCollection( how2base );
private function getField( itemXML:XML,
field:QName):String {
return itemXML.descendants( field ).toString();
]]>
</mx:Script>
<mx:Canvas id="HowView" backgroundColor="#FFFFCC"
label="How"
width="100%" height="100%">
<mx:HBox width="100%" height="100%">
<mx:VDividedBox width="400" height="100%" id="how1Box"
backgroundColor="#B9C5A0">
<mx:Repeater width="80%" id="linksItems"
dataProvider="{ how1externalXML }">
<mx:VBox width="80%" horizontalAlign="center"
creationCompleteEffect="Fade">
<mx:LinkButton click="loadXML2('{getField( XML(
linksItems.currentItem ), how1Link )}')" label="{ getField( XML(
linksItems.currentItem ), how1Title) }" />
</mx:VBox>
</mx:Repeater>
</mx:VDividedBox>
<mx:VDividedBox width="100%" height="100%" id="how2Box"
backgroundColor="#6BA1A3">
<mx:Repeater width="100%" id="workItems"
dataProvider="{ how2externalXML }">
<mx:VBox width="534" horizontalAlign="center"
creationCompleteEffect="Fade">
<mx:Label text="{ getField( XML(
workItems.currentItem ), how2Title) }" color="#000000"/>
</mx:VBox>
</mx:Repeater>
</mx:VDividedBox>
</mx:HBox>
</mx:Canvas>
</mx:Application>

"Cole_62" <[email protected]> wrote in
message
news:gd2q5r$f08$[email protected]..
> no i dont think this will work because i need to iterate
through each
> <item> in
> the XML...below is an exmaple of possible tree structure
of the XML:
> channel
> -->item1
> ----->title
> ----->imgs
> --------->imgUrl
> --------->imgUrl
> -->item2
> ----->title
> ----->imgs
> ---------->imgUrl
> -->item3
> ------>title
> ------>imgs
> ----------->(no imgs)
>
> i thought to handle this using something like the
ATTACHED CODE below:
>
> ...i need to be able to go through each <item> and
<imgUrl> (because i
> dont
> know how many (if any) there are!) sorry if my PHP
background shines
> through!
>
> THANKS!
>
> <mx:Repeater id="feed"
dataProvider="{XML.channel.item}">
> <mx:HBox>
> <mx:Text text="{feed.currentItem.title}"/>
> <mx:Repeater id="item"
dataProvider="{feed.currentItem.imgs}">
> <!-- PSEUDO CODE I NEED HELP RESOLVING:
> if ("{item.currentItem.imgURL}")
> -->
> <mx:Image source="{item.currentItem.imgUrl}"/>
> </mx:Repeater>
> </mx:HBox>
> </mx:Repeater>
How bout
<mx:Repeater id="feed"
dataProvider="{XML.channel.item}">
<mx:HBox>
<mx:Text text="{feed.currentItem.title}"/>
<mx:Repeater id="item"
dataProvider="{feed.currentItem.imgs}">
<mx:Image
source="{item.currentItem.imgURL.length()>0?item.currentItem.imgURL:null}"
includeInLayout="{item.currentItem.imgURL.length()>0}"/>
</mx:Repeater>
</mx:HBox>
</mx:Repeater>

Similar Messages

  • Hide name space of generated xml from xml bean

    Hi,
    how can i hide the namespace of the generated xml from xml bean, cause im having problems with jaxb parses.

    The targetNamespace is for webservice and not for the user defined classes.
    Sorry for the confusion
    Ajay
    "Ajay" <[email protected]> wrote in message
    news:[email protected]..
    There is a targetNamespace attribute in the autotyp ant task. But there
    was a bug in 8.1. Contact the support for a patch.
    The following mail explains that
    This looks like a bug. There is an undocument, not officially
    supported workaround: add the following java doc
    to yours source code -
    * @wlws:webservice targetNamespace="http://foo.bar"
    public class MyService {
    Details here:
    http://www.manojc.com/tutorial/sample3/source2wsdd.html
    Regards,
    -manoj
    http://manojc.com
    "Mark Fine" <[email protected]> wrote in message
    news:[email protected]..
    The attribute targetNamespace (of the autotype task) doesn't seem to putany
    information into the types file and later my deployment descriptor (viathe
    source2wsdd task) contains an invalid targetNamespace attribute with a
    http://tempuri.org:
    eg.
    <web-services>
    <web-service name="IndexService"
    targetNamespace="http://tempuri.org/"
    uri="/IndexWebService">
    I don't think this causes any problems but there should be a way tospecify
    the namespace.
    Has anyone else seen this is WLS8.1?
    "Siva" <[email protected]> wrote in message
    news:[email protected]..
    By default the autotype or the servicegen ant task seem to be creating anamespace
    from the java package name (like java:com.ventaso.external.common) for
    xml
    mapping
    of user defined java classes. Is there a way to change this to name
    space
    I want
    ? Specifying the targetnamespace doesn't seem to help.
    Thanks,
    Siva

  • Unable to create xml from xml schema

    JDeveloper 10.1.3 EA1
    I am unable to create a new xml file from an xml schema when the starting root element is a complex type (but it works with a simple type). It does not matter if the xml schema is registered within JDeveloper.
    Is this a bug or intended behaviour?
    Error message:
    ''XML Document from XML Schema creation could not be competed succesfully. Make sure the source schema is valid and that you have write permissions to the output directory."
    NB The xml schema is valid and I have write permissions on the specified directory.

    When I do not register this (or other) schema with JDeveloper, I can create an xml document from xml schema. However, when I register this schema and then try to generate an xml document (either from the registered xsd either from a filesystem xsd) with person as starting node it fails with the mentioned error. However, when I use city as starting node it is generated successfully.
    <?xml version="1.0" encoding="windows-1252" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.amis.nl/demo/hrm"
    targetNamespace="http://www.amis.nl/demo/hrm"
    elementFormDefault="qualified">
    <xsd:element name="person">
    <xsd:annotation>
    <xsd:documentation>
    A sample complex element
    </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="name" type="xsd:string"/>
    <xsd:element name="length" type="xsd:int"/>
    <xsd:element name="weight" type="xsd:int" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="city" type="xsd:string">
    <xsd:annotation>
    <xsd:documentation>
    A sample simple element.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    </xsd:schema>

  • Create xml from xml schema in java

    If can i create a xml document framework from xml schema in java, then i can fill the value in java?
    thanks

    An XML document may be created from an XML Schema with JAXB.

  • Need Help Removing XML Photo Gallery on Button Click

    Hi, I'm new to flash so this might seem like a dumb question, but I'm right in the middle of designing a photography site and need some help.  I have 4 buttons in my timeline that go to the corresponding frame labels when clicked, above each frame label is a keyframe with actionscript applied to it, that will load an external XML photo gallery. I need the current photo gallery that's on the screen to disappear when I click on a new button to load the new XML photo gallery.  this is the code that will be above each frame label with a few changes, then below this is the code for my buttons. Any help is greatly appreciated. Thank you  Code: Select all var imageX:XML; var imageList:XMLList;  var canvas:MovieClip = new MovieClip(); var picLoader:Loader; addChild(canvas); canvas.x = -155; canvas.y = 160;   var req:URLRequest = new URLRequest("gallery.xml"); var imageLoader:URLLoader = new URLLoader(); imageLoader.addEventListener(Event.COMPLETE, onComplete); imageLoader.load(req);  function onComplete(e:Event):void { imageX = new XML(imageLoader.data); imageList = imageX.image; picLoader = new Loader(); picLoader.contentLoaderInfo.addEventListener(Event .COMPLETE, imageLoaded); picLoader.load(new URLRequest (imageList[0].url)); }  function imageLoaded(e:Event):void  { canvas.addChild(picLoader); }    Code for the buttons in different keyframe.  Code: Select all stop();  kids_btn.addEventListener(MouseEvent.CLICK,onKidsClick); couples_btn.addEventListener(MouseEvent.CLICK,onCouplesClick); portraits_btn.addEventListener(MouseEvent.CLICK,onPortraitsClick); bellies_btn.addEventListener(MouseEvent.CLICK,onBelliesClick);  function onKidsClick(e:MouseEvent):void { gotoAndStop("kids"); }  function onCouplesClick(e:MouseEvent):void { gotoAndStop("couples"); }  function onPortraitsClick(e:MouseEvent):void { gotoAndStop("portraits"); }  function onBelliesClick(e:MouseEvent):void { gotoAndStop("bellies"); }

    Hi, I'm new to flash so this might seem like a dumb question, but I'm right in the middle of designing a photography site and need some help.  I have 4 buttons in my timeline that go to the corresponding frame labels when clicked, above each frame label is a keyframe with actionscript applied to it, that will load an external XML photo gallery. I need the current photo gallery that's on the screen to disappear when I click on a new button to load the new XML photo gallery.  this is the code that will be above each frame label with a few changes, then below this is the code for my buttons. Any help is greatly appreciated. Thank you  Code: Select all var imageX:XML; var imageList:XMLList;  var canvas:MovieClip = new MovieClip(); var picLoader:Loader; addChild(canvas); canvas.x = -155; canvas.y = 160;   var req:URLRequest = new URLRequest("gallery.xml"); var imageLoader:URLLoader = new URLLoader(); imageLoader.addEventListener(Event.COMPLETE, onComplete); imageLoader.load(req);  function onComplete(e:Event):void { imageX = new XML(imageLoader.data); imageList = imageX.image; picLoader = new Loader(); picLoader.contentLoaderInfo.addEventListener(Event .COMPLETE, imageLoaded); picLoader.load(new URLRequest (imageList[0].url)); }  function imageLoaded(e:Event):void  { canvas.addChild(picLoader); }    Code for the buttons in different keyframe.  Code: Select all stop();  kids_btn.addEventListener(MouseEvent.CLICK,onKidsClick); couples_btn.addEventListener(MouseEvent.CLICK,onCouplesClick); portraits_btn.addEventListener(MouseEvent.CLICK,onPortraitsClick); bellies_btn.addEventListener(MouseEvent.CLICK,onBelliesClick);  function onKidsClick(e:MouseEvent):void { gotoAndStop("kids"); }  function onCouplesClick(e:MouseEvent):void { gotoAndStop("couples"); }  function onPortraitsClick(e:MouseEvent):void { gotoAndStop("portraits"); }  function onBelliesClick(e:MouseEvent):void { gotoAndStop("bellies"); }

  • How to invoke a infopath form from list on button click

    Hi,
    I want to put a button on either the sharePoint page or on a Infopath form and on click of button, I need to open an already submitted form from the list (say with a unique id). 
    How can we do this in Infopath 2013. Please help.
    Thanks.

    Hi,
    There is already a reply in your another similar thread:
    https://social.msdn.microsoft.com/Forums/office/en-US/632bc3f8-330d-4d8b-910e-5df7cb202934/how-to-open-a-form-on-click-of-a-button-in-infopath?forum=sharepointcustomization
    Please check if it is helpful to you.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to call main frame from showMessage OK button clicked?.

    hello,
    I create one project. there, I create one textfield and button. after clicking it, the input add into JList.
    when I click the list component and enter OK button ,it will go to another window.
    When the input is fault, it show error in dialog box. then, when i click the OK button, it must go to main window and processed from first.
    My problem is,
    When I click OK in show dialog box, it is not going to main frame.
    if((source==ConnectButton) != firstSel)
                String message="Not Able to Connect to the Specified IP !!!";
              int answer = JOptionPane.showConfirmDialog(MainFrame.emsMainFrame, message);
              if (answer == JOptionPane.YES_OPTION) {
                  initcomp();
                   MainFrame.setSize(750, 550);
                   // Image icon = Toolkit.getDefaultToolkit().getImage("Images.gif");
                    //emsMainFrame.setIconImage(icon);
                     emsMainFrame.setVisible(true);
                     emsMainFrame.setEnabled(true);
                      initSNMPlogin();
                    // BroIPSelect.setVisible(true);
                    // BroIPSelect.setEnabled(true);
            // workPanel.add();
            //   JPanel cp = new JPanel(new GridLayout(0,3));
              workPanel.setVisible(true);
            workPanel.add( new JLabel( "work" ) );
           // leftPanel.setVisible(true);
          else if (answer == JOptionPane.NO_OPTION) {
            // User clicked NO.
                  System.exit(0);
        }        To go to main frame and access , what can I do.
    thanks.

    Wow that's a mess.
    Normally when you want to go back to your main window, the only thing you have to do is hide your second window. Then the focus automatically returns to your main window.
    Hiding a frame is calling setVisible(false) on it.
    If you keep a reference somewhere to your hidden frame, you can easily show it up again without rebuilding it.
    But post some other code.
    What is "MainFrame"?
    Is it a class with static methods for accessing MainFrame.emsMainFrame?
    Note that objects/instances/variables/references should start with a lowercase letter, and classes should start with an uppercase letter.
    Why do you call initcomp()? If it is a function for initialising the GUI components, then make it run once at the start of your program.
    Why do you have this XOR:
    ((source==ConnectButton) != firstSel)

  • Generate XML from XML-Schema

    What possibilities do I have to generate an XML-Instance from the XML-Schema?
    I heard of JAXB and Castor, that generate Classes for acessing XML-Information and genarating XML-files and I heard of Sun's XML-Generator, a command line tool.
    Does anybody know other possibilities?

    i use XMP Spy for converting XML schema to an instance file. it works fine.

  • Generate schema-base XML from XML fragments

    I have a defined .xsd file and an incoming xml file that I am inspecting in a BEFORE INSERT trigger. I registered the xml schema to create a single column table of xmltype. The incoming xml consists of a root node and two data nodes. There are 3 elements on the first data node that need to have their value updated before the xml doc is inserted into the xmltype Oracle table.
    I was trying to find a way to use updateXML(), but that seems to work only for an existing row in the table. I then turned my attention to createXML(). I grabbed the root node and two data nodes and built 3 different clob's. One of the clob's contains an updated data node. Then I am doing the following:
    :new.sys_nc_rowinfo$ := createXML(clob1||clob2||clob3, registeredURL);
    registeredURL contains the URL that was registed in the schema. While it seems that the signature of the createXML() function is correct (I get no compile errors), the results are not valid per the schema. Is there a way in PL/SQL to do what I am trying to do? Seems like a pretty simple concept.

    Nikhil,
    There is a wealth of information available on the Internet regarding the XML capabilities of the Oracle database.
    Have you done an Internet search for "SQL XML Oracle"?
    Good Luck,
    Avi.

  • How to generate XML from XML schema

    Hi,
    I have registered XML schema and I would like to construct XML document for the schema. I wonder it is possible to create an empty instance and then populate it with the data? One solution is to construct the XML with concatenation of the elements but I think it exists more flexible and intelligent way. I read OTN and Metalink samples, documentation and forums users’ examples but I did not find any appropriate. What is the ordinary way for XML construction? Can you give me some advice? Tank you in advance.
    Best regards,
    Georgi

    The JAXB Class Generator generates java classes with the
    orajaxb utility.
    oracle.xml.jaxb.orajaxb -schema <schemafile> -outputDir <outputdir>
    The java classes generated have get/set methods to construct an XML document.
    thanks,
    Deepak

  • I can no longer link to emails from web pages: Before, clicking on site's "email person," that address would appear in my email's "TO:" field. Now, yahoo (my email) pops up, asks for password, but does NOT copy email address into the "TO:" field.

    Windows operating system; Firefox is up to date.

    I do believe that it IS a Firefox problem. I didn't have the problem before updating Firefox. Check out this site from Yahoo Answers. It's the same problem, but the advice is no longer accurate: The question was posted years ago, and the "fix" is for an outdated Explorer version. However, the Asker poses the question quite well.
    http://answers.yahoo.com/question/index?qid=20080506073911AAhE2Ye
    Please let me know if you find a fix. Aggravating!!

  • Loading URL from XML?

    I have a movie clip in rectangle shape and need add link to that from XML.
    How can I do that?
    this my code
    AS Code:var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.load(new URLRequest("linkNewD2.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, displayHTML);
    function displayHTML(e:Event):void {
                    var xmlData:XML = new XML(e.target.data);
                    var tURL:String = xmlData.Header1.option;
                    targetURL(tURL);
    function targetURL(event:String):void
    var valURL:String = event;
    myMc1.addEventListener(MouseEvent.CLICK, gotoHome);
    function gotoHome(evt:MouseEvent):void
                    var myURL:URLRequest = new URLRequest(URL(valURL));
                    navigateToURL(myURL);
    XML Code:
    <data>
    <Header1>
    <option> http://www.google.com </option>
    </Header1>
    </data>
    Please help me!
    Thanks,
    jafy

    First, never use nested functions - they bring in a lot of troubles.
    Try this code (there are better ways but just to follow your initial approach). This code assumes that myMC1 is MovieClip:
    var xmlLoader:URLLoader = new URLLoader();
    // listeners should be added BEFORE load() is called
    xmlLoader.addEventListener(Event.COMPLETE, displayHTML);
    xmlLoader.load(new URLRequest("linkNewD2.xml"));
    function displayHTML(e:Event):void {
         var xmlData:XML = new XML(e.target.data);
         targetURL(xmlData.Header1.option);
    function targetURL(url:String):void
         myMc1.url = url;
         myMc1.addEventListener(MouseEvent.CLICK, gotoHome);
    function gotoHome(e:MouseEvent):void
         navigateToURL(new URLRequest(MovieClip(e.currentTarget).url));

  • How to remove prefix namespace in Xml from XmlBean

    I am trying to generate XML from XML Bean but i am getting namespace prefix in all my xml elements.
    For example
    <abc:Cutomer xmlns:abc="http://www.xyz.com/pqr>
    <abc:Name>
    I don't have this namespace prefix in my XSD (imported in Weblogic workshop).
    Is there any way that I can remove this prefix from my xml elements?
    Also, I don't need xml namespace in my xml string.
    Is there any way that I can generate xml without having namespace?

    Hello ,
    I think this issue as been discussed earlier in this forum. Refer follwoing link..
    http://forums.bea.com/bea/message.jspa?messageID=400000090#400000090
    Regards,
    Kuldeep Singh.

  • Change exported XML from a report

    Hello,
    I need to export a XML from a report button with this structure:
    <LOTE CONTABLE>
    <CONFIG />
    <LOTE>LOTE</LOTE>
    <LINEAS>
    <LINEA>
    <FAC_CODI>1</FAC_CODI>
    <EFDESC>F/pruebass N 1</EFDESC>
    <EFTYPENT>P</EFTYPENT>
    <EFCOMPTE>960</EFCOMPTE>
    </LINEA>
    </LINEAS>
    I have a report with all the columns that I need. I have created a Report Queries (from Shared Components) to generate a XML with the same sql as the report but the XML that APEX generates by default has this structure:
    <ROWSET>
    <ROW>
    <FAC_CODI>1</FAC_CODI>
    <EFDESC>F/pruebass N 1</EFDESC>
    <EFTYPENT>P</EFTYPENT>
    <EFCOMPTE>960</EFCOMPTE>
    </ROW>
    </ROWSET>
    How can I change this structure? I want to add a header and replace "rowset" and "row" to "lineas" and "linea". Is it possible?
    Thank you very much in advance.
    Kind regards,
    Amparo

    >
    The issue is that in the following code, I've replaced this line:
    qryCtx := dbms_xmlgen.newContext('select hash_value from hash');
    with this line:
    qryCtx := dbms_xmlgen.newContext(V_Return);
    I did this because the value that I want to be in XML is in the variable V_Return and not in a table. I get a compilation error:
    PLS-00382: expression is of wrong typeCompilation failed
    Is there a way to use newContext with a variable value rather than a select statement from a table?
    >
    It seems unlikely. The DBMS_XMLGEN documentation says:
    >
    The DBMS_XMLGEN package converts the results of a SQL query to a canonical XML format. The package takes an arbitrary SQL query as input, converts it to XML format, and returns the result as a CLOB.
    >
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10577/d_xmlgen.htm#i1012053
    If <tt>VReturn</tt> is not a SQL query then you will need to use one of the (many) other ways of generating XML. This question has nothing to do with APEX and would be better addressed to the XML DB.
    Additionally, the recommended methods for XML generation, encryption and hashing are heavily version-dependent and you should always quote the relevant DB version/edition information to ensure an appropriate answer. For example, DBMS_OBFUSCATION_TOOLKIT is deprecated as of Oracle 10g and replaced by DBMS_CRYPTO.

  • Removing namespace from xml

    Hi,
    I have an xml which has some target namespace.
    I need to remove the namespace and the qualifiers and put it on a machine using a file adapter.
    Any help in this regard is highly appreciated.
    With Regards,
    Harsh

    Please go throught the below link
    Removing namespace from xml  created

Maybe you are looking for

  • Easy way to schedule a job to run for a set period?

    Is there an easy way to schedule (dbms_scheduler) a job to run for a set period -say, half an hour- and then to stop. Currently, I schedule a procedure to do the work (a bunch of inserts or updates, say) and the first line of that procedure assigns s

  • Can't add java script to Adobe 7.0 PDF document

    Hi, ran into a small problem using Adobe Pro 7.0. Created a interactive form in Adobe Designer 7.0. Want to add Java script to run when a user selects certain fields on the forms. However, when I try and use the advanced editing tools to gain access

  • IPod CONTACTS doesn't show GROUPS

    I just got a new iPod Video 80GB, partly because it can sync addresses from my Mac's Address Book. However, I have not been able to see GROUPS in the CONTACTS and have to scroll though a lot of addresses to find anyone. How can you set iPod preferenc

  • Profitability Segments are not created for Invoices

    Hi Guru's Can any one help on this ? "Invoice Documents Profitability Segments are not created" can you please suggest me? Thanks, Aakash

  • Youtube videos loading slower after switching to Lion

    This problem is with my Apple iMac running Lion OSX 10.7.5. Before I updated to Lion I could wacth videos on YouTube on HD quality with no problems, but since I updated some video take forever to load when on HD and I have to lower the quality for th