Not valid XML, but are not we working with a flow of events?
Isn't hierarchy the last tabu?

String operator=null;

while( recordset.next() ) {
   if( operator == null ||
      !operator.equalsIgnoreCase( recordset.equipo() ) ) {
     if( operator != null ) {
        // trigger an 'operator' closing tag
     }

     // trigger an 'operator' opening tag
   }

   // trigger data events associated with this operator
}

if( operator != null ) {
   // trigger an operator closing tag
}

I understand the error serverpages generator's error.
I think the logic is ok, and common.
I can do this with sax.
There's a workaround to do it with xsp?

Don't get angry with me Vadim, I try to do my best.

Thanks,

Vadim Gritsenko wrote:

>>From: Ivan Rubin [mailto:[EMAIL PROTECTED]]
>>
>>Hello,
>>
>>I need to open and close tags arbitrarily while iterating through a
>>record set.
>>
>><xsp:content></operator></xsp:content> does not work, as
>><xsp:content><operator><xsp:content>,
>>
> 
> This is (obviously) not valid XML. Hence, the error.
> 
> 
> 
>>and I have to do that over the basis of conditionals, and in different
>>places.
>>
>>the logicsheet does not even generate the .java file. The log says
>>
> that
> 
>>xsp:content must be terminated with an /xsp:content tag, but thats
>>
> ok...
> 
>>I don't find a reason for the xsp generator not to process my
>>logicsheet. It's the logic that's going to put the things in order.
>>
> 
> Please elaborate why you think that you need this before I suggest
> workaround for you.
> 
> Vadim
> 
> 
>>Thanks,
>>
>>
> 
> 
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> 
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>
> 
> 



---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to