× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I would not rely on the browser to do the transformation unless you can
control the version of browser used.  Yes you can do the transformation on
the iSeries in languages that support it such as Java.  Here is an example:


TransformerFactory tFactory = TransformerFactory.newInstance();

Source xmlSource = new SAXSource(new InputSource(new
StringReader(readIFSFile(in))));

Source xslSource = new StreamSource(new
java.net.URL("http://mycompany.com/Email.xsl";).openStream());

Transformer transformer = tFactory.newTransformer(new StreamSource(new
java.net.URL("http://icsm400.taylorcorp.com/EmailError.xsl";).openStream()));

transformer.transform(xmlSource, new StreamResult(System.out));


If you apply the style sheet programmatically then you can use style sheets
that reside anywhere.  If you apply stylesheets by imbedding it in the XML
document then the style sheet must reside on the same machine that the
request was done.

Hope that helps,
Aaron Bartell

-----Original Message-----
From: Metz, Zak [mailto:Zak_Metz@xxxxxx]
Sent: Friday, August 29, 2003 9:49 AM
To: Web Enabling the AS400 / iSeries
Subject: [WEB400] XML/XSL


I'm just starting to learn about XSL by way of W3Schools. There is some
discussion in the tutorial that the browser must support XML/XSL, but
that the transformation to XHTML could be done server-side and a Windows
based example is given. Can a server-side transformation also be done by
OS/400 so I can concern myself less with browser support? Or is this
even a concern anymore?
 
NOTICE: This E-mail may contain confidential information. If you are not
the addressee or the intended recipient please do not read this E-mail
and please immediately delete this e-mail message and any attachments
from your workstation or network mail system. If you are the addressee
or the intended recipient and you save or print a copy of this E-mail,
please place it in an appropriate file, depending on whether
confidential information is contained in the message.


_______________________________________________
This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/web400.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.