On Thursday 25 April 2002 13:18, Matt Sergeant wrote:
> On Thu, 25 Apr 2002, Markus Jais wrote:
> > no, nothing is printed to the apache error log??
>
> You need to set AxDebugLevel 10
thanks!
now I get this output in the log file:
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] handler called
for /xml/login.xml
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] checking if we
process this resource
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] media: screen,
preferred style: #default
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] Cache: key =
b9c4d6d740dad6fae761ff19d455a9b8
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] getting styles
and external entities from the XML
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] styles not cached
- calling $provider->get_styles()
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] using XS
get_styles (libxml2)
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] calling
xs_get_styles_fh()
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] calling
xs_get_styles_str()
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] parse_pi: href =
.
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] parse_pi: type =
application/x-xsp
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] parse_pi: href =
login.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] parse_pi: type =
text/xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] xs_get_styles
returned: , , {http://apache.org/xsp/core/v1}page
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] Calling
GetMatchingProcessors with (screen, , , ,
{http://apache.org/xsp/core/v1}page)
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] get_styles:
loading style modules
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] get_styles:
looking for mapping for style type: 'application/x-xsp'
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] get_styles:
looking for mapping for style type: 'text/xsl'
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] cache doesn't
exist
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] some condition
failed. recreating output
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] styles:
Apache::AxKit::Language::XSP(.)
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] styles:
Apache::AxKit::Language::LibXSLT(login.xsl)
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider looking up uri .
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider set filename to /usr/local/httpd/htdocs/xml
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] about to execute:
Apache::AxKit::Language::XSP::handler
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] XSP: parsing fh
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] Recompiling XSP
script
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] package
Apache::AxKit::Language::XSP::ROOT::usr::local::httpd::htdocs::xml::login_2exml;
@Apache::AxKit::Language::XSP::ROOT::usr::local::httpd::htdocs::xml::login_2exml::ISA
= ('Apache::AxKit::Language::XSP::Page');
use Apache;
use Apache::Constants qw(:common);
use XML::LibXML;#initialize xsp namespace
#initialize xsp namespace
use Apache::AxKit::Gmx;
sub handler {
my ($r, $cgi, $document) = @_;
my ($parent);
{ my $elem =
$document->createElement(q|page|);$document->setDocumentElement($elem);
$parent = $elem; }
{ my $elem = $document->createElement(q|title|);$parent->appendChild($elem);
$parent = $elem; }
{ my $text = $document->createTextNode(q|Login|);$parent->appendChild($text);
}
$parent = $parent->getParentNode;
{ my $elem =
$document->createElement(q|formular|);$parent->appendChild($elem); $parent =
$elem; }
{ my $elem = $document->createElement(q|action|);$parent->appendChild($elem);
$parent = $elem; }
{ my $text =
$document->createTextNode(q|startpage.xml|);$parent->appendChild($text); }
$parent = $parent->getParentNode;
{ my $elem = $document->createElement(q|input|);$parent->appendChild($elem);
$parent = $elem; }
$parent->setAttribute(q|type|,q|text|);
{ my $text =
$document->createTextNode(q|customerno|);$parent->appendChild($text); }
$parent = $parent->getParentNode;
{ my $elem = $document->createElement(q|input|);$parent->appendChild($elem);
$parent = $elem; }
$parent->setAttribute(q|type|,q|text|);
{ my $text =
$document->createTextNode(q|password|);$parent->appendChild($text); }
$parent = $parent->getParentNode;
{ my $elem = $document->createElement(q|input|);$parent->appendChild($elem);
$parent = $elem; }
$parent->setAttribute(q|type|,q|submit|);
{ my $text = $document->createTextNode(q|login|);$parent->appendChild($text);
}
$parent = $parent->getParentNode;
$parent = $parent->getParentNode;
$parent = $parent->getParentNode;
return OK;
}
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] XSP Compilation
finished
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] Turning off
cache!
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] Cache: key =
d943d80a5882617803eaa9df8787ea84
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [Cache] writing
cache file
/usr/local/httpd/htdocs/xml/.xmlstyle_cache/d9/43/d80a5882617803eaa9df8787ea84
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] execution of:
Apache::AxKit::Language::XSP::handler finished
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider looking up uri login.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider set filename to /usr/local/httpd/htdocs/xml/login.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] about to execute:
Apache::AxKit::Language::LibXSLT::handler
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting
the XML
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing
stylesheet
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing
stylesheet /xml/login.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] LibXSLT
match_uri: /xml/navigation.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] LibXSLT open_uri:
/xml/navigation.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider looking up uri /xml/navigation.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [uri] File
Provider set filename to /usr/local/httpd/htdocs/xml/navigation.xsl
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] [LibXSLT]
performing transformation
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] execution of:
Apache::AxKit::Language::LibXSLT::handler finished
[Thu Apr 25 14:00:41 2002] [warn] [client 127.0.0.1] [AxKit] writing xml
string to browser
markus
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]