RE: ** security problem and link

Subject: RE: ** security problem and link
From: "Chris Bayes" <chris@xxxxxxxxxxx>
Date: Wed, 16 Feb 2000 18:50:07 -0000
I think your problem is to do with cross domain security. You have to be
careful where the 3 files are. For instance you can't open the microsoft xsl
debugger FROM the www.microsoft.com site and then put file:///c:\x.xml and
file:///c:\x.xsl into the xml and xsl input boxes because they are in
separate domains. Likewise you can't specify your xsl file as
file:///c:\x.xsl if you ope your html file from a server. Put the html and
xsl onto the server where you generate the xml. Or put your html file in the
same folder as your xsl file and just doubleclick it.
Good luck Chris

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Mar Fior
Sent: Tuesday, February 15, 2000 11:59
To: xsl-list@xxxxxxxxxxxxxxxx
Subject: RE: ** security problem and link



>From: Kay Michael <Michael.Kay@xxxxxxx>
>Reply-To: xsl-list@xxxxxxxxxxxxxxxx
>To: "'xsl-list@xxxxxxxxxxxxxxxx'" <xsl-list@xxxxxxxxxxxxxxxx>
>Subject: RE: ** security problem and link
>Date: Tue, 15 Feb 2000 09:59:32 -0000
>
> > I did a servlet that give in output a file .xml and I
> > wrote a file xsl to read this xml.
> > But when I call my servlet the browser shows a window where tell
> > me that it cannot reads .xsl because  have a security problem.
>
>I'm afraid the people on this list are good at answering XSL problems, but
>problems with browser and servlet configurations are a bit out of scope,
>especially if you don't say what products you are using.


Umh,
My browser is InternetExplorer 5.0 and I don't think that the problem
is servlet configuration. But perhaps is a browser configuration...

This is my xml file.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?xml:stylesheet type="text/xsl" href="c:\marcella.xsl"?>
<PFSet>
<PF code="001" short="pppp"/>"
<PF code="002" short="bbbb"/>"
</PFSet>



And marcella.xsl is:

<?xml version="1.0" encoding="windows-1252"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>
<xsl:template match="/">
<html>
<body>
<CENTER>
<H1>PF List: </H1>
<table border="1" width="75%" align="center" background="BACKGROUND.gif">
<TH>PF Code</TH>
<TH>PF Descr</TH>
<xsl:for-each select="PFSet/PF">
<TR ALIGN="CENTER">
<TD><xsl:value-of select="@code"/></TD>
<TD><xsl:value-of select="@short"/></TD>
</TR>
</xsl:for-each>
</table>
</CENTER>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

xml file is output of my servlet.
In the past my servlet output was an html file. Now I converted
it with xml file and his stylesheet.
But the browser shows a security information window.
I tried to substitute c:\marcella.xsl for http protocol,
but I don't solve the problem.


> >
> > Second problem is that I don't know how to create
> > a table with a label that anyone corresponds at an href.
> > Sorry for my little english,
>
>Perhaps we would understand if you try to explain the problem in XML and
>HTML. Tell us what your input is and what output you want.
>
>Mike Kay


Ok, Mike.
I have a table within my xsl file:


<table border="1" width="75%" align="center" background="BACKGROUND.gif">
<TH>PF Code</TH>
<TH>PF Descr</TH>
<xsl:for-each select="PFSet/PF">
<TR ALIGN="CENTER">
<TD><xsl:value-of select="@code"/></TD>
<TD><xsl:value-of select="@short"/></TD>
</TR>
</xsl:for-each>
</table>


I would like to trasform <TD><xsl:value-of select="@code"/></TD>
in link string.
In html I can do



<TR>
<TD><A HREF=
"http://localhost:8080/pic?code=001&gender=pf&language=language";> click me
</A></TD></TR>

and in xsl???

I don't kwon how to do......
Thanks again !!!!!!!
Marcella


>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread