Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

XML files processing

0 views
Skip to first unread message

Louis Tremblay

unread,
Dec 23, 2003, 10:35:48 AM12/23/03
to
I'am new in this world, and my developpers team wants to put xml documents
on our site and it's not seem to work.

Is there some lines that i need to add on my httpd.conf ?

Thank you


AndersG

unread,
Dec 29, 2003, 11:38:58 AM12/29/03
to
Louis Tremblay,

> I'am new in this world, and my developpers team wants to put xml documents
> on our site and it's not seem to work.
>
What webserver are you running and what type of XML documents are we talking
about? Ie for what purpose?

- Anders Gustafsson, Engineer, CNE6, ASE
NSC Volunteer Sysop (http://support-forums.novell.com)
Pedago, The Aaland Islands (N60 E20)
Using VA 4.52 build 277 (32-bit) on Windows 2000 build 2195

Louis Tremblay

unread,
Dec 29, 2003, 2:57:48 PM12/29/03
to
I use nw6.5, apache 2.0.48 and the purpose is to display informations to
visitor that came from an outside source. That's what they told me. I don't
know if its enough information for you but if you need more informations, i
will have to wait until january 5 when i got back to the office.

"AndersG" <dal...@nomail.to.me> a écrit dans le message de
news:VA.000044b...@nomail.to.me...

AndersG

unread,
Dec 29, 2003, 4:33:22 PM12/29/03
to
Louis Tremblay,

> I use nw6.5, apache 2.0.48 and the purpose is to display informations to
> visitor that came from an outside source.

OK. I thnk we will need more info. XML is just a formatted bunch of data.
If you want it to look pretty, then you do so with stylesheets. (XLS).
Apache handles that very nice. FYI: All of Portal, which Virtual Office is
built upon is servlets, XML and stylesheets.

Louis Tremblay

unread,
Jan 5, 2004, 10:26:29 AM1/5/04
to
the dev team want's to do xslt to proceed rss information. One consultant
tell them that to do this ins windows environment they need expat and
sablotron to do this. Expat is already installed on apache. Did i need
Sablotron or there is already something installed to do this job ? did i
need special configuration to do to make this work ?

Thank you.

"AndersG" <dal...@nomail.to.me> a écrit dans le message de

news:VA.000044c...@nomail.to.me...

AndersG

unread,
Jan 5, 2004, 2:11:01 PM1/5/04
to
Louis Tremblay,

> Did i need
> Sablotron or there is already something installed to do this job ?
>
No idea frankly, Sablotron is written in C++ and should probably
compile on NW if you were really determined. I suggest asking in the
developer groups in case they have an idea.

Louis Tremblay

unread,
Jan 5, 2004, 4:11:56 PM1/5/04
to
Thank you , I will try there.

"AndersG" <dal...@nomail.to.me> a écrit dans le message de

news:VA.0000453...@nomail.to.me...

Nick Ciesinski

unread,
Jan 6, 2004, 11:51:37 PM1/6/04
to
Since NetWare supports Java and Tomcat4 you could use the following. I
think this should do what you want.

http://xml.apache.org/xalan-j/index.html
Xalan-Java is an XSLT processor for transforming XML documents into HTML,
text, or other XML document types. It implements XSL Transformations (XSLT)
Version 1.0 and XML Path Language (XPath) Version 1.0. It can be used from
the command line, in an applet or a servlet, or as a module in other
program.

Nick

"Louis Tremblay" <louis.t...@msss.gouv.qc.ca> wrote in message
news:FmfKb.5540$VM1....@prv-forum2.provo.novell.com...

Louis Tremblay

unread,
Jan 13, 2004, 7:47:09 PM1/13/04
to
Tahnk's I will try it and let you know


"Nick Ciesinski" <ciesin...@nospam.uww.edu> a écrit dans le message de
news:tfMKb.7357$VM1....@prv-forum2.provo.novell.com...

Francois-L Gilbert

unread,
Jan 14, 2004, 4:34:19 PM1/14/04
to
Hi,
I am part of the dev. team Mr. Tremblay talks about. We are trying to make
our news page dynamic by using an RSS feed as a data source. We have been
advised to use expat and sablotron to transform the feed using XSL
stylesheets.

The language we use to generate the news page is PHP. Can we call the Xalan
library from some PHP code to do the transformations? If so, is there any
documentation on this somewhere?

Thank you very much for all the info.
Francois-Leonard Gilbert

"Nick Ciesinski" <ciesin...@nospam.uww.edu> a écrit dans le message de
news:tfMKb.7357$VM1....@prv-forum2.provo.novell.com...

Nick Ciesisnki

unread,
Jan 14, 2004, 9:32:20 PM1/14/04
to
You can build-in support for XML/XSLT to PHP as well. I think that support
may already be built into the PHP version included with NetWare.

It looks like the nlm exists php_xslt.nlm. But you need to add it to the
php.ini file. Look for the NetWare extensions area of the php.ini and add
the php_xslt.nlm to the list of files then re-start apache.

Since the module is not pre-added to the php.ini file it may be still in
testing. You should be able to get a reason why it is left out in the PHP
development forum.

Nick

"Francois-L Gilbert" <francois-leo...@msss.gouv.qc.ca> wrote in
message news:vBiNb.1150$zt3...@prv-forum2.provo.novell.com...

Francois-L Gilbert

unread,
Jan 16, 2004, 11:09:16 AM1/16/04
to
I have found the reason why XSLT support is not enabled by default in the
module documentation for PHP
(http://developer.novell.com/ndk/readme/php2.txt):

=== begin quote ====
3.6 XSLT Extension

PHP for NetWare can use this extension to provide
a processor independent API to XSLT
transformations. This is an alpha version.
===end quote===

We will advise if we really want to do this. As for the developer forum, I
was not able to find it...

Thank you for helping!
Francois-Leonard Gilbert

"Nick Ciesisnki" <ciesin...@nospam.uww.edu> a écrit dans le message de
news:UYmNb.1364$zt3....@prv-forum2.provo.novell.com...


> You can build-in support for XML/XSLT to PHP as well. I think that
support
> may already be built into the PHP version included with NetWare.
>
> It looks like the nlm exists php_xslt.nlm. But you need to add it to the
> php.ini file. Look for the NetWare extensions area of the php.ini and add
> the php_xslt.nlm to the list of files then re-start apache.
>
> Since the module is not pre-added to the php.ini file it may be still in
> testing. You should be able to get a reason why it is left out in the PHP
> development forum.
>
> Nick
>

> "Francois-L Gilbert" <francois-leonar...@msss.gouv.qc.ca>

AndersG

unread,
Jan 16, 2004, 2:16:11 PM1/16/04
to
Francois-L Gilbert,

> As for the developer forum, I
> was not able to find it...
>
http://developer.novell.com/ndk/devforums.htm

Louis Tremblay

unread,
Feb 2, 2004, 10:12:07 PM2/2/04
to
I download the last version of php from the net and everething work fine
now.

"AndersG" <dal...@nomail.to.me> a écrit dans le message de
news:VA.0000460...@nomail.to.me...

0 new messages