Link to home
Start Free TrialLog in
Avatar of khacharn
khacharn

asked on

hoew to call an xml file into another xml file

hi all
I have a template.xml file
I want to call another TRY.xml file into template.xml ..
Can anyone tell me how ??
Please help ASAP
regards
Nitin
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Upping the points may draw more attention...

Why not use an html page or an HTA to merge the two? (IE5 client side or XSL server side)
Michel
Avatar of khacharn
khacharn

ASKER

hi mplugian
Thanx for the advice but the problem is that i don't have more points..all are exhausted..I DO HAVE LOT OF EXPERTS POINTS..almost 1890..but of no use

Anyways
Can you show me how to call the xml file into an html file..
The ACTUAL problem is :-
i have companies.xml and i want to create a Virtual Document virtual.xml by calling companies.xml file into it..
Please HELP ASAP
I promise to transefer more points when i have some..
Regards
Nitin
I was not fishing for more points (I got enough ;-)
I do not quite understand what you are trying to do, in what environment and I am not sure I can answer (or that one xml file can include another)


Michel
you can do that by using external entities.
In your DTD for the template.xml you have to add:
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY.xml">

or if it local then:

<!ENTITY try2 SYSTEM "TRY.xml">

once this done then your template.xml can contain the reference to that entity:

<P> .... </P>
&try1;
<P> .... </P>
Kewl...

Michel
Kewl...

Michel
Thanx for the answer dmaryakh
I have one more question to ask..
i am increasing the points for it to..
The question is that in the xml file which i am calling thru this code you gave me..
***************************************
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY.xml"> 

or if it local then:

<!ENTITY try2 SYSTEM "TRY.xml">

once this done then your template.xml can contain the reference to that entity:

<P> .... </P>
&try1;
<P> .... </P>


****************************************
I want to call a SPECIFIC PART of the XML file..
HOW DO I DO THAT..
this is s the file in which i want to see the stocks of the [arcgre]
----------------------------------------
<companies>
<company>
  <co_code type="20tcen">20tcen</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
  </company>
 <company>
  <co_code type="akhtex">akhtex</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
 </company>
 <company>
  <co_code type="arcgre">arcgre</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
 </company>
----------------------------------------

Please note that i want to call this file and in that i want to call onle argre stocks in another XML file..
Please reply ASAP
Regards
Nitin
Adjusted points to 30
Thanx for the answer dmaryakh
I have one more question to ask..
i am increasing the points for it to..
The question is that in the xml file which i am calling thru this code you gave me..
***************************************
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY.xml"> 

or if it local then:

<!ENTITY try2 SYSTEM "TRY.xml">

once this done then your template.xml can contain the reference to that entity:

<P> .... </P>
&try1;
<P> .... </P>


****************************************
I want to call a SPECIFIC PART of the XML file..
HOW DO I DO THAT..
this is s the file in which i want to see the stocks of the [arcgre]
----------------------------------------
<companies>
<company>
  <co_code type="20tcen">20tcen</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
  </company>
 <company>
  <co_code type="akhtex">akhtex</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
 </company>
 <company>
  <co_code type="arcgre">arcgre</co_code>
  <last_price>234</last_price>
  <volume>234534</volume>
 </company>
----------------------------------------

Please note that i want to call this file and in that i want to call onle argre stocks in another XML file..
Please reply ASAP
Regards
Nitin
1. minimum points are considered 50
2. Are you sure you do not force xml to be a sort of database?

Michel
I want to call a specific part of the XML file in another XML File ...
How DO I DO IT..?
as dmaryakh said ..i am now able to retrieve Full XML file and reference it..But i am interested only in a specific paragrapph of that file and not the full file..
dmaryakh can you help me out..ASAP
Regards
Nitin
With XSL you could extract a part of the xml, but your WOULD have to load the complete ile to do it...

Michel
Do you control the original XML file? Ff you do you might consider making that paragraph (or all paragraphs) to be external entity and the just reference the one you want in your second template.
If you don't then it all depends on the task and tools that you use. As mplungjan said, you can use XSL to do the job. I prefere other (faster) ways to o task like that, by using specialized markup languages s.a. OmniMark (http://www.omnimark.com) which has the fastest parser from them all and 10 years of experience of dealing with SGML and later HTML/XML.
What are you trying to do and where? Is this template is being generated on the server or on the client or does it goes to databse alltogether. Give sm emore details.

David
Adjusted points to 50
hi dmaryakh
The template file is very simple..
It has references to other xml files..
now i think xsl will ther do the job...
i will try and tell you again..

One more question:
can i call an xml file into a html file..
if yes then how ?

I am increasing the points to 50  for this answers
Please ans ASAP
Regards
Nitin
I do this in IE5:

<HTML>
<HEAD>
<SCRIPT>
function initPage() {
   if (isError(xmlID.parseError)) return;
   divID.outerHTML = xmlID.transformNode(xslID.documentElement);
}
// --></SCRIPT>
</head>
<BODY BGCOLOR="#FFFFCC" TEXT="#000000" onLoad="initPage()">
<DIV ID="divID"></DIV>
<XML SRC="xxxx.xml" ID="xmlID"></XML>
<XML SRC="yyyy.xsl" ID="xslID"></XML>
</body>
</html>

For other browsers you can transform on the server into html

Michel
Adjusted points from 50 to 60
hi..
i have one more Question..
the i think i will be thru with my problems..
Dmaryak..as you told..the foll code
---------------------------------------
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY.xml"> 

or if it local then:

<!ENTITY try2 SYSTEM "TRY.xml">

once this done then your template.xml can contain the reference to that entity:

<P> .... </P>
&try1;
<P> .... </P>
--------------------------------------
works fine..but what if i want to call two xml files in the root..xml file..
I tried something like this
**************************************
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY_1.xml"> 
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY_2.xml"> 
**************************************
But there is an error whic say..you can't dclare DOCTYPE more then once..
Plese help me
Nitin
I am increasing my points to 60
hi..
i have one more Question..
the i think i will be thru with my problems..
Dmaryak..as you told..the foll code
---------------------------------------
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY.xml"> 

or if it local then:

<!ENTITY try2 SYSTEM "TRY.xml">

once this done then your template.xml can contain the reference to that entity:

<P> .... </P>
&try1;
<P> .... </P>
--------------------------------------
works fine..but what if i want to call two xml files in the root..xml file..
I tried something like this
**************************************
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY_1.xml"> 
<!ENTITY try1 SYSTEM "http://www.abc.xyz/TRY_2.xml"> 
**************************************
But there is an error whic say..you can't dclare DOCTYPE more then once..
Plese help me
Nitin
I am increasing my points to 60
ASKER CERTIFIED SOLUTION
Avatar of dmaryakh
dmaryakh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanx You BOTH For answering my questions..
Regards
Nitin