| task telnet | task telnet 2003-02-07 - By Haroldo Pereira Nascimento
Hi
I am using this xml for connecting into the server. I need see the result of command "ls". It didnt works.
<target name="telnet_arq"> <telnet server="${host.name}" timeout="20"> <read>ogin:</read> <write>"${host.user}"</write> <read>assword:</read> <write>"${host.pass}"</write> <read>/export/home/smartmail/har</read> <write>ls</write> <read>/export/home/smartmail/har</read> </telnet> </target>
What is the error ?
Haroldo Pereira Nascimento hnascimento@(protected) Avenida Marginal Pinheiros, 5200 05693-000 S?o Paulo - SP - Brazil Phone: +5511 3759-8426 Fax: +5511 3759-8005 ----- Original Message ----- From: "Cox, Charlie" <ccox@(protected)> To: "'Ant Users List'" <ant-user@(protected)> Sent: Friday, February 07, 2003 1:03 PM Subject: RE: xslt task with foreach
> yes, but I couldn't get it to translate my property instead of passing the > propertname in: > > <xslt in="html/${baseName}" out="xsl/${baseName}" style="myxsl.xsl" > processor="trax"> > > this causes the filename to be passed as "$(baseName)" instead of resolving > the property. > > Can I use a property for 'in' and 'out'? > > thanks, > Charlie > > > -----Original Message----- > > From: Java Burre [mailto:javaburre@(protected)] > > Sent: Friday, February 07, 2003 9:52 AM > > To: ant-user@(protected) > > Subject: Re: xslt task with foreach > > > > > > already tried with in and out attributes of xslt task ? > > Did not test it. > > > > > > > > >From: "Cox, Charlie" <ccox@(protected)> > > >Reply-To: "Ant Users List" <ant-user@(protected)> > > >To: "'ant-user@(protected)'" <ant-user@(protected)> > > >Subject: xslt task with foreach > > >Date: Fri, 7 Feb 2003 08:25:19 -0500 > > > > > >I'm having trouble getting this task to work. What I need is > > to run an xslt > > >task for each file in the directory and I need the filename > > to be passed as > > >a parameter to the xslt. > > > > > >This is what I have so far and it works for one file, but > > when I have many > > >files, the xslt task processes all the files passing in the > > name of the > > >first file to each one, then it tries to complete the > > foreach by running > > >the > > >xslt task for the rest, which does nothing since it already > > did them all. > > > > > ><target name="all"> > > > <foreach param="htmlFileName" target="convertXsl"> > > > <fileset dir="html" includes="*.htm"/> > > > </foreach> > > ></target> > > > > > ><!-- process a given file. called by the 'all' target --> > > ><target name="convertXsl"> > > > <!-- get the name of the document without the path --> > > > <basename file="${htmlFileName}" property="baseName"/> > > > <echo message="processing....${baseName}"/> > > > <!-- convert the style first --> > > > <xslt basedir="html" destdir="xsl" extension=".xsl" > > >style="myxsl.xsl" processor="trax" > > > > <param name="myFormName" expression="${baseName}"/> > > > <xmlcatalog> > > > <dtd publicId="-//W3C//DTD XHTML 1.0 > > >Transitional//EN" location="xhtml.dtd"/> > > > </xmlcatalog> > > > </xslt> > > ></target> > > > > > >I tried adding includes="$(baseName)" for the xslt task, > > which caused it to > > >not process any files. Likewise for includes="$(htmlFileName)". > > > > > >how can I get the foreach to go through the list of files > > and the xslt to > > >process only the given file? > > > > > >thanks, > > >Charlie > > > > > >--------------------------------------------------------------------- > > >To unsubscribe, e-mail: ant-user-unsubscribe@(protected) > > >For additional commands, e-mail: ant-user-help@(protected) > > > > > > _________________________________________________________________ > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: ant-user-unsubscribe@(protected) > > For additional commands, e-mail: ant-user-help@(protected) > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: ant-user-unsubscribe@(protected) > For additional commands, e-mail: ant-user-help@(protected) > >
|
|
 |