Thanks.

 

����������� The problem was that I forgot to make a new in a variable. I only have a one more question. I can see the new nodes, but when I apply the stylesheet, it doesn�t appear the html related to these nodes. I can�t figure it out because we are doing an off-line version of the program with xml-xsl an _javascript_ and woks fine. So the problem isn�t in the stylesheet....

 

The only difference between the off-line code an the online code is the registry line where appears xmlns:xsp and xmlns:xsp-request attributes

 

 

<?xml version="1.0" encoding="UTF-8" ?>

- <registry xmlns:xsp="http://apache.org/xsp" xmlns:xsp-request="http://apache.org/xsp/request/2.0">

- <field>

  <name>shortName</name>

  <value>Fernando</value>

  </field>

  </registry>

 

 

 

Any idea?

 

 

-----Mensaje original-----
De: Simon Bretin [mailto:[EMAIL PROTECTED]
Enviado el: mi�rcoles, 24 de septiembre de 2003 3:29
Para: [EMAIL PROTECTED]
Asunto: Re: my first xsp page

 

Hi,

I think the problem is that you have your java code within <![CDATA[ sections.
Another thing, is that right before the <field> line, you should add an <xsp:content> tag. Basically everything within an <xsp:logic> tag should be some Java code, except for the one being present between <xsp:content> tags.

See the correction inlined if I was not clear enough !

Simon.

Wermus Fernando wrote:

I have a client class that it has its own names and values� attributes in a
Properties class. I need to convert this in a xml with the tags
<field><name>blabla</name><value>blabla</value></field> for each class
attribute. I get some errors and I don't know what�s up. Some
nullPointException.
 
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- CVS: $Id: simple.xsp,v 1.3 2002/02/09 06:21:57 vgritsenko Exp $ -->
<xsp:page language="java" xmlns:xsp="http://apache.org/xsp"
xmlns:xsp-request="http://apache.org/xsp/request/2.0"
xmlns:log="http://apache.org/xsp/log/2.0"
xmlns:capture="http://apache.org/cocoon/capture/1.0">
<page>
<content>
<registry>

<xsp:logic><![CDATA[

���������������� miCliente.Cliente cliente=new miCliente.Cliente(5);
���������������� java.util.Properties prop=cliente.getProperties();
���������������� java.util.Enumeration
propNames=prop.propertyNames();
������������������������������� 
���������������� String propName="hola";
���������������� String property="hola";
������������������������������� 
���������������� while (propNames.hasMoreElements() ){
��������������������������������������� 
������������������������ propName=(String) propNames.nextElement();
������������������������ property=prop.getProperty(propName);
��������������������������������������� 
���������������� 

]]>
<xsp:content>

������������������������ <field>
������������������������������� <name>
<xsp:expr>propName</xsp:expr>
������������������������������� </name>
������������������������������� <value>
<xsp:expr>property</xsp:expr>
������������������������������� </value>
������������������������ </field>
���������������� 
<![CDATA[
</xsp:content>
}
]]>
������������������������������� 
�������� </xsp:logic>
</registry>
</content>
</page>
</xsp:page>
 
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 

Reply via email to