Folks

I am planning to use the following XSLTInputHandler constructor in an
applet downloaded on  the client side. Before I use it I have the following
questions.

public XSLTInputHandler(File xmlfile, File xsltfile) throws FOPException
{ }
  public XSLTInputHandler(String xmlURL, String xsltURL) throws
FOPException { }
  public XSLTInputHandler(InputSource xmlSource, InputSource xsltSource)
throws FOPException { }

1) Would a URL constructor passed as string like
new XSLTInputHandler (new String(http://host:7011/web/myXML.xml";), new
String(http://host:7011/web/myXSL.xsl";))
work ?

2) I read on some websites that
org.apache.fop.apps.XSLTInputHandler(InputSource ,InputSource ) constructor
doesnt work for InputSource and can only be used for String and File
arguments? Have anyone made it work with InputSource  arguments?

3) As the XSLTInputHandler is called on client side I want to read the XSL
and XML files from app server. How should I go about reading the XSL,XML
files from server? as inputstreams?


Thanks
Manoj








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

Reply via email to