Hello everyone,
I need to generate an XML file whose element would be an active link (triggering a PERL script). The only tool I've found which is capable of doing it is Xlink.
The problem is that it doesn't work properly.
My XML file is :
where http:/localhost/cgi-bin/sample12_copy.p l is the URI of the PERL script and '16213' should be the link. But it doesn't work..
I've tried it on IE7, FF3, and chrome and there is no difference. Is the framework still supported by any browser or maybe I am not using it properly.
Some similar topic is here:
but it didnt solve my problem, also hardcoding the HTML tags in XML didnt work in any browser.
Could you please help me?
Thanks,
Kamil
I need to generate an XML file whose element would be an active link (triggering a PERL script). The only tool I've found which is capable of doing it is Xlink.
The problem is that it doesn't work properly.
My XML file is :
Code:
<searchresult xmlns:xlink="http://www.w3.org/1999/xlink"> <account> <accountpoid xlink:type="simple" xlink:show="replace" xlink:href="http:/localhost/cgi-bin/sample12_copy.pl">16213</accountpoid> <status>active</status> <currency>US Dollar</currency> <business_type>Consumer</business_type> </account> </searchresult>
I've tried it on IE7, FF3, and chrome and there is no difference. Is the framework still supported by any browser or maybe I am not using it properly.
Some similar topic is here:
but it didnt solve my problem, also hardcoding the HTML tags in XML didnt work in any browser.
Code:
<xmltag><a href="http://www.wherever.com">wherever.com</a></xmltag>
Thanks,
Kamil