> > > Maybe the problem is the way i call the servlets. With the
> configuration I have in the next files (in the zones files I only show
> those parts I had changed) and the class Hello.class being in the project1
> > > folder How I must call in the browser to see Hello class working ?
> > >
> > > servlet.zone:
> > > # List of servlet zones Apache JServ manages
> > > zones=production,development
> > >
> > > # Configuration file for each servlet zone (one per servlet zone)
> > > production.properties=/servlets/production/production.properties
> > > development.properties=/servlets/development/development.properties
> > >
> > >
> > > //////////////////////////////*************************
> > >
> > > production.zone
> > >
> >
> ##########################################################################
> > > #####
> > >
> > > # List of Repositories
> > > #######################
> > >
> > > # The list of servlet repositories controlled by this servlet zone
> > > # Syntax: repositories=[repository],[repository]...
> > > # Default: NONE
> > > # Note: The classes you want to be reloaded upon modification should
> be
> > > put
> > > # here.
> > >
> > > repositories=/servlets/production/project1/
> > >
> > > # Aliased Servlet Init Parameters
> > > ##################################
> > >
> > > # These properties define init parameters for each servlet that is
> > invoked
> > >
> > > # by its alias.
> > > # Syntax: servlet.[alias].initArgs=[name]=[value],[name]=[value],...
> > > # Default: NONE
> > > # servlet.snoop.initArgs=message=I'm a snoop servlet
> > > # servlet.hello.initArgs=message=I say hello world to everyone
> > >
> > >
> > > servlet.hello.code=org.dummy.project1.Hello
> > >
> > >
> > > /////////////////////////////////************************************
> > > httpd.conf
> > >
> > >
> > > ServerType standalone
> > >
> >
> > >
> > > PidFile logs/httpd.pid
> > >
> > >
> > > ScoreBoardFile logs/apache_status
> > >
> > >
> > > Timeout 300
> > >
> > >
> > > KeepAlive On
> > >
> > >
> > > MaxKeepAliveRequests 100
> > >
> > >
> > > KeepAliveTimeout 15
> > >
> > >
> > > #
> > > MaxRequestsPerChild 0
> > >
> > > #
> > > ThreadsPerChild 50
> > >
> > > # Port: The port to which the standalone server listens.
> > > #
> > > Port 80
> > >
> > >
> > > #
> > > ServerAdmin [EMAIL PROTECTED]
> > >
> > > #
> > > # symbolic links and aliases may be used to point to other locations.
> > > #
> > > DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"
> > >
> > >
> > > <Directory />
> > > Options FollowSymLinks
> > > AllowOverride None
> > > </Directory>
> > >
> > > #
> > > <Directory "C:/Program Files/Apache Group/Apache/htdocs">
> > >
> > > #
> > > Options Indexes FollowSymLinks MultiViews
> > >
> > > #
> > > AllowOverride None
> > >
> > >
> > > </Directory>
> > >
> > >
> > > #
> > > UserDir "C:/Program Files/Apache Group/Apache/users/"
> > >
> > >
> > > #
> > > DirectoryIndex index.html
> > >
> > > #
> > > AccessFileName .htaccess
> > >
> > >
> > > #
> > > <Files .htaccess>
> > > Order allow,deny
> > > Deny from all
> > > </Files>
> > >
> > > #
> > > UseCanonicalName On
> > >
> > > #
> > > TypesConfig conf/mime.types
> > >
> > > #
> > > DefaultType text/plain
> > >
> > >
> > > #
> > > <IfModule mod_mime_magic.c>
> > > MIMEMagicFile conf/magic
> > > </IfModule>
> > >
> > > #
> > > HostnameLookups Off
> > >
> > > #
> > > ErrorLog logs/error.log
> > >
> > >
> > > #
> > > LogLevel warn
> > >
> > > #
> > > LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
> \"%{User-Agent}i\""
> > > combined
> > > LogFormat "%h %l %u %t \"%r\" %>s %b" common
> > > LogFormat "%{Referer}i -> %U" referer
> > > LogFormat "%{User-agent}i" agent
> > >
> > > #
> > > CustomLog logs/access.log common
> > >
> > > #
> > > ServerSignature On
> > >
> > >
> > > Alias /icons/ "C:/Program Files/Apache Group/Apache/icons/"
> > >
> > > # Alias.
> > > #
> > > ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache/cgi-bin/"
> > >
> > >
> > > <Directory "C:/Program Files/Apache Group/Apache/cgi-bin">
> > > AllowOverride None
> > > Options None
> > > </Directory>
> > >
> > > #
> > > IndexOptions FancyIndexing
> > >
> > > #
> > > AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
> > >
> > > AddIconByType (TXT,/icons/text.gif) text/*
> > > AddIconByType (IMG,/icons/image2.gif) image/*
> > > AddIconByType (SND,/icons/sound2.gif) audio/*
> > > AddIconByType (VID,/icons/movie.gif) video/*
> > >
> > > AddIcon /icons/binary.gif .bin .exe
> > > AddIcon /icons/binhex.gif .hqx
> > > AddIcon /icons/tar.gif .tar
> > > AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
> > > AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
> > > AddIcon /icons/a.gif .ps .ai .eps
> > > AddIcon /icons/layout.gif .html .shtml .htm .pdf
> > > AddIcon /icons/text.gif .txt
> > > AddIcon /icons/c.gif .c
> > > AddIcon /icons/p.gif .pl .py
> > > AddIcon /icons/f.gif .for
> > > AddIcon /icons/dvi.gif .dvi
> > > AddIcon /icons/uuencoded.gif .uu
> > > AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
> > > AddIcon /icons/tex.gif .tex
> > > AddIcon /icons/bomb.gif core
> > >
> > > AddIcon /icons/back.gif ..
> > > AddIcon /icons/hand.right.gif README
> > > AddIcon /icons/folder.gif ^^DIRECTORY^^
> > > AddIcon /icons/blank.gif ^^BLANKICON^^
> > >
> > >
> > > DefaultIcon /icons/unknown.gif
> > >
> > > #
> > > ReadmeName README
> > > HeaderName HEADER
> > >
> > >
> > > IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
> > >
> > >
> > > AddEncoding x-compress Z
> > > AddEncoding x-gzip gz tgz
> > >
> > >
> > > AddLanguage da .dk
> > > AddLanguage nl .nl
> > > AddLanguage en .en
> > > AddLanguage et .ee
> > > AddLanguage fr .fr
> > > AddLanguage de .de
> > > AddLanguage el .el
> > > AddLanguage it .it
> > > AddLanguage pt .pt
> > > AddLanguage ltz .lu
> > > AddLanguage ca .ca
> > > AddLanguage es .es
> > > AddLanguage sv .se
> > > AddLanguage cz .cz
> > >
> > > #
> > > LanguagePriority en da nl et fr de el it pt ltz ca es sv
> > >
> > >
> > >
> > > AddType application/x-tar .tgz
> > >
> > >
> > >
> > > BrowserMatch "Mozilla/2" nokeepalive
> > > BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0
> force-response-1.0
> > >
> > >
> > > #
> > > BrowserMatch "RealPlayer 4\.0" force-response-1.0
> > > BrowserMatch "Java/1\.0" force-response-1.0
> > > BrowserMatch "JDK/1\.0" force-response-1.0
> > >
> >
> > > > >
> > > Include "C:\Program Files\Apache JServ 1.1.2\conf\jserv.conf"
> > >
> > > In this file I delete the this in commentary because of the limite of
> lines imposed.
> > >
>
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html