[Geoserver-users] geoserver-wcs: connection parameters are invalid error for every CoverageStore

As quoted from Alexander Petkov <greenkov@anonymised.com>:

6. Defined GEOSERVER_DATA_DIR variable in geoserver's web.xml as described here:
http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory
(for some reason exporting the env. variable did not work, maybe
catalina.sh needs to be modified).

No need to modify catalina.sh; just add a file called setenv.sh to the
Tomcat bin/ directory (it will be sourced by catalina.sh if it exists)
and add the lines:

  CATALINA_OPTS="-DGEOSERVER_DATA_DIR=/path/to/my/geoserver/data/directory"
  export CATALINA_OPTS

to it. Other useful options that I routinely add are:

  CATALINA_OPTS=" \
  -Xms64m -Xmx1024m \
  -XX:PermSize=32m -XX:MaxPermSize=128m \
  -server \
  -Djava.awt.headless=true \
  -DGEOSERVER_DATA_DIR=/path/to/my/geoserver/data/directory"
  export CATALINA_OPTS

Regards,
--
-- Gertjan van Oosten, gertjan@anonymised.com, West Consulting B.V., +31 15 2191 600

Is the GEOSERVER_DATA_DIR enabled and correctly setted up in the web.xml ?

On 10/18/06, Fabio Da Soghe <fabio.dasoghe@anonymised.com > wrote:

Hello again.

I did some other tests.

I tried the same war file (from geoserver-1.4.0-M2-WCS-war.zip) on windows.

This is my config:

  • windows xp SP2 with all system updates
  • Java 1.5.0_06
  • Tomcat 5.5.16
  • JAI 1.1.4 daily (jai-1_1_4-pre-dr-b03-lib-windows-i586-18_Oct_2006)
  • ImageIO 1.1

The result is the same: geoserver loads only two raster plugins (ArcGrid
/ 1.0 and ImagePyramid / 1.0).

Then, I tried to set the GEOSERVER_DATA_DIR parameter, in the web.xml
file. The whole web application stopped to start correctly. I get this
on the tomcat log:

18-ott-2006 15.11.05 org.springframework.web.context.ContextLoader
initWebApplicationContext
GRAVE: Context initialization failed
org.springframework.beans.factory.BeanCreationException : Error creating
bean with name ‘applicationState’ defined in URL
[file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/classes/applicationContext.xml]:
Can’t resolve reference to bean ‘data’ while setting property
‘constructor argument’; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating
bean with name ‘data’ defined in URL
[jar:file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/lib/main- 1.4.0-M2-WCS.jar!/applicationContext.xml]:
Can’t resolve reference to bean ‘config’ while setting property
‘constructor argument’; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating
bean with name ‘config’ defined in URL
[jar:file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/lib/main-1.4.0-M2-WCS.jar!/applicationContext.xml]:
Initialization of bean failed; nested exception is
org.springframework.beans.factory.BeanInitializationException: Error
creating xml config reader; nested exception is
org.vfny.geoserver.global.ConfigurationException:
java.lang.NullPointerException
org.springframework.beans.factory.BeanCreationException : Error creating
bean with name ‘data’ defined in URL
[jar:file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/lib/main-1.4.0-M2-WCS.jar!/applicationContext.xml]:
Can’t resolve reference to bean ‘config’ while setting property
‘constructor argument’; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating
bean with name ‘config’ defined in URL
[jar:file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/lib/main- 1.4.0-M2-WCS.jar!/applicationContext.xml]:
Initialization of bean failed; nested exception is
org.springframework.beans.factory.BeanInitializationException: Error
creating xml config reader; nested exception is
org.vfny.geoserver.global.ConfigurationException:
java.lang.NullPointerException
org.springframework.beans.factory.BeanCreationException: Error creating
bean with name ‘config’ defined in URL
[jar:file:/D:/Programmi/Apache%20Software%20Foundation/Tomcat%205.5/webapps/geoserver/WEB-INF/lib/main- 1.4.0-M2-WCS.jar!/applicationContext.xml]:
Initialization of bean failed; nested exception is
org.springframework.beans.factory.BeanInitializationException: Error
creating xml config reader; nested exception is
org.vfny.geoserver.global.ConfigurationException:
java.lang.NullPointerException
org.springframework.beans.factory.BeanInitializationException: Error
creating xml config reader; nested exception is
org.vfny.geoserver.global.ConfigurationException :
java.lang.NullPointerException
org.vfny.geoserver.global.ConfigurationException:
java.lang.NullPointerException
at
org.vfny.geoserver.global.xml.XMLConfigReader.loadCatalog(XMLConfigReader.java:338)
[…]

I configured the data dir as described in the online wiki
(http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory), in
a directory external to the tomcat installation, copying the whole
geoserver\data (and moving geoserver\data\data content one dir up).
I’m really sure JAI and ImageIO are correctly installed in my JRE (the
same used by tomcat). At this point I’m starting guessing the war
distribution I’m using has something wrong? It seems all successful
installations described in mailing list are based on the latest svn
version. Does that mean I can use only the self-built war?

Cheers,

Fabio

Vincent Schut ha scritto:

OK, so I think I found the culprit.

For coverageStores, the file url handler does not handle absolute
filenames correctly, or at least not as I understood it should.
What I thought it should do is: for file url’s that don’t start with a
slash (relative filenames), append them to GEOSERVER_DATA_DIR, and for
those that do start with a slash, use them as absolute filenames.
This is at least the behaviour for FeatureStores. However, no matter
what, all file url’s for coveragestores are seen as relative to the
geoserver data dir, so files that reside outside this dir can never be
found.

Should I open a jira issue on this?

Vincent.

-------- Original Message --------
From: Vincent Schut <schut@anonymised.com >
To: Alessio Fabiani <alessio.fabiani@anonymised.com>
Subject: Re:[Geoserver-devel] [Geoserver-users] geoserver-wcs:
connection parameters are invalid error for every CoverageStore
Date: 10/18/2006 12:01 PM

Decided to try to deploy geoserver on another linux computer.
Surprisingly, on this pc all works fine (except for the gtopo
character case thingy of course, see previous email). So the problem
has something to do with the local linux install probably… Don’t
ask me what, however. Main differences that I can think of are: amd64
(working), i586 (not working correctly) and utf8 (working) non-utf8
system (not working). Java versions are the same, distro’s are the
same. Let’s close the issue for the time being (the previous test pc
was not our main server, so I have hopes to be able to deploy to our
main web server later without problems…). When the problem arises
again, of course I’ll mail the list.

This however stresses the importance of informational error messages.
The only message I got, even after enabling the most verbose logging,
was “Unable to get an ImageInputStream”. That’s pretty hard to debug
for a non geoserver core developer…

Anyways, glad things seem to work now. Keep up the good work!

Vincent.

-------- Original Message --------
From: “Alessio Fabiani” < alessio.fabiani@anonymised.com>
To: “Alexander Petkov” <greenkov@anonymised.com>
Subject: Re:[Geoserver-users] [Geoserver-devel] geoserver-wcs:
connection parameters are invalid error for every CoverageStore
Date: 10/17/2006 09:21 PM

Thanks Alex, I’m going to do some testing too very soon!

On 10/17/06, Alexander Petkov <greenkov@anonymised.com
mailto:[greenkov@anonymised.com](mailto:greenkov@anonymised.com)> wrote:

It seems to work on Linux OS.

  1. I downloaded and installed jdk1.5.0_06, JAI and jai-imageIO
  2. I downloaded and extracted tomcat 5.5.20
  3. I built a geoserver war with “mvn - Dmaven.test.skip clean
    install”
    from today’s SVN.
  4. Moved geoserver.war to tomcat’s webapps subdirectory
  5. Started and stopped tomcat.
  6. Deleted geoserver/data subdirectory
  7. Defined GEOSERVER_DATA_DIR variable in geoserver’s web.xml as
    described here:
    http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory
    <http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory >
    (for some reason exporting the env. variable did not work, maybe
    catalina.sh needs to be modified).
  8. Started tomcat.

Configuring new coverageStores and coverages seemed to work (I got
a map).

The only thing I see as not working so far is using the exported
GEOSERVER_DATA_DIR from the shell, but I might be wrong on that
one.
Other than that, geoserver WCS seems to behave as expected under
tomcat in a Linux environment.

Alex

On 10/17/06, Simone Giannecchini <simboss1@anonymised.com
mailto:[simboss1@anonymised.com](mailto:simboss1@anonymised.com)> wrote:

That would be great!

Simone.

On 10/17/06, Alexander Petkov < greenkov@anonymised.com
mailto:[greenkov@anonymised.com](mailto:greenkov@anonymised.com)> wrote:

I cna start doing some of this testing in a Linux OS, since
that is
all I have and use in production. So far I don’t think I have
seen the
behaviour described in this thread, and if I have, I probably
changed
the startup scripts :-).

For some reason I prefer using jetty, but I can try with
tomcat too.

Alex

On 10/17/06, Fabio Da Soghe <fabio.dasoghe@anonymised.com
mailto:[fabio.dasoghe@anonymised.com](mailto:fabio.dasoghe@anonymised.com)> wrote:

Thank you for your work!

I’ll wait for your tests on linux environment. In the
meanwhile I’ll do a
try on windows, just to verify I’m able to correctly install
geoserver-wcs
and all its dependecies.

Hope to read from you soon.

Cheers,

Fabio

Simone Giannecchini ha scritto:
Ciao all,
as Alessio correctly pointed out, we spend most part of our
time
working in a windows-only environment. We had a linux box
doing builds
for us but in the last couple of month we have fried
already two
machines. It is exactly 3 weeks that we are not testing on
linux, but
this weekend we will set up a new linux box for testing
purposes.

Anyway, thanks everybody for testing and reporting issues.

Simone.

On 10/17/06, Alessio Fabiani <alessio.fabiani@anonymised.com
<mailto:alessio.fabiani@anonymised.com >> wrote:

Hi all guys,
GeoServer WCS actually isn’t tested deeply on a Linux
environment, so I’m
not surprised of strange behaviors … however we are
working on setting up
last WCS changes on a Fedora server.
As soon we succeded with the configuration we will post a
detailed tutorial
on how to install and configure GeoServer WCS on linux OS.

Any help, comment and whatever is appreciated, of course.

On 10/17/06, Vincent Schut <schut@anonymised.com
<mailto: schut@anonymised.com>> wrote:

Thanks Fabio for your reaction. See inline for my
comments.

-------- Original Message --------
From: Fabio Da Soghe < fabio.dasoghe@anonymised.com
<mailto: fabio.dasoghe@anonymised.com>>
To: geoserver-users@lists.sourceforge.net
mailto:[geoserver-users@lists.sourceforge.net](mailto:geoserver-users@lists.sourceforge.net),
Geoserver-devel
< geoserver-devel@lists.sourceforge.net
<mailto:geoserver-devel@lists.sourceforge.net >>
Subject: Re:[Geoserver-users] [Geoserver-devel]
geoserver-wcs:
connection parameters are invalid error for every
CoverageStore
Date: 10/17/2006 03:59 PM

Hi Vincent.

I had a very similar problem (I posted yesterday on the
user list about
that).
The message error I got was:

Internal error : unable to get reader for this coverage
layer

Then I followed Alessio Fabiani’s hint to update JAI
and ImageIO to the
very last version (JAI 1.1.4 and imageio 1.1): after
this GeoServer
didn’t load correctly the raster plugins at startup.

Hmm. I’m using pretty recent cvs versions of JAI and
JAI-IO. I thought
that was more or less a prerequisite for geoserver-wcs
instead of a
blocker… :slight_smile:
I’ll look further into it tomorrow, have to go now.
Strange thing is I
succeed with some coverages to configure them, but for
some I get the
error.
OK, any hints apreciated, especially about how to get a
bit more useful
error info from geoserver… More new (hopefully)
tomorrow.

Cheers for now,
Vincent.

My configuration is:

  • linux fedora core 4
  • Java 1.5.0_06 (Sun)
  • JAI 1.1.4 pre-dr-b03
  • ImageIO 1.1 beta
  • Tomcat 5.5

I used the geoserver-1.4.0-M2-WCS binary build. What
version of JAI and
ImageIO do you have? Maybe you could be more fortunate
then me with an
update…

Hope this helps.

Cheers,

Fabio

Vincent Schut ha scritto:

Hi list, dev’s,

I’m trying to set up geoserver-1.4.x-merge-wcs (svn
from today). For
feature data (shape, postgis) all is OK, but if I want
to define a new
CoverageStore I get an “Connection Parameters are
invalid” message on
submitting, no matter if I use an abolute or a
relative url for the
data. I get this message even with the demo coverages
(Gtopo30,
sample_geotiff, etc), so I guess it is not me entering
wrong
filenames,
but something inside geoserver is not entirely right.
Nothing is
logged
(I have enabled the logs/geoserver.log, and the file
has been
created),
so I have no idea where to start resolving this…

Btw I am using a GEOSERVER_DATA_DIR outside of the
exploded war
(tomcat). It is defined as a environment variable, and
is picked up
alright, proven with shapefiles, config (catalog.xml,
services.xml)
and
the log file.

Environment: gentoo linux, java sun jdk 1.5, jai and
jai-imageio
correctly installed.

Vincent.


Using Tomcat but need to do more? Need to support web
services,
security?
Get stuff done quickly with pre-integrated technology
to make your job
easier
Download IBM WebSphere Application Server v.1.0.1
based on Apache
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

< http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>


Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
<mailto: Geoserver-devel@lists.sourceforge.net>

https://lists.sourceforge.net/lists/listinfo/geoserver-devel
<https://lists.sourceforge.net/lists/listinfo/geoserver-devel>


Using Tomcat but need to do more? Need to support web
services,
security?
Get stuff done quickly with pre-integrated technology
to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based
on Apache
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

<http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >


Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
<mailto:Geoserver-users@lists.sourceforge.net >

https://lists.sourceforge.net/lists/listinfo/geoserver-users


Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based
on Apache
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

< http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>


Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
<mailto: Geoserver-devel@lists.sourceforge.net>

https://lists.sourceforge.net/lists/listinfo/geoserver-devel
<https://lists.sourceforge.net/lists/listinfo/geoserver-devel>

Eng. Alessio Fabiani
Vice President/CTO GeoSolutions

http://www.geo-solutions.it



Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

<http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>


Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
<mailto:Geoserver-users@lists.sourceforge.net >
https://lists.sourceforge.net/lists/listinfo/geoserver-users
< https://lists.sourceforge.net/lists/listinfo/geoserver-users>


Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to
make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

<http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >


Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
<mailto:Geoserver-users@lists.sourceforge.net >
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Using Tomcat but need to do more? Need to support web
services, security?
Get stuff done quickly with pre-integrated technology to make
your job easier
Download IBM WebSphere Application Server v.1.0.1 based on
Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

< http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>


Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
<mailto:Geoserver-users@lists.sourceforge.net >
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Eng. Simone Giannecchini
President /CEO GeoSolutions

http://www.geo-solutions.it



Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your
job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

<http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >


Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
mailto:[Geoserver-users@lists.sourceforge.net](mailto:Geoserver-users@lists.sourceforge.net)
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Eng. Alessio Fabiani
Vice President/CTO GeoSolutions

http://www.geo-solutions.it




Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your
job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642



Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your
job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642


Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642


Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Eng. Alessio Fabiani
Vice President/CTO GeoSolutions

http://www.geo-solutions.it


Yes. I added this to the web.xml:

GEOSERVER_DATA_DIR D:\datastore\geoserver\wcs-data-dir

I followed strictly what is explained in the wiki documentation (copied services.xml and catalog.xml, etc.).

The data/data issue is something meaningful regards this issue? I mean, in the original war file there is a directory named “data” under “geoserver/data”, which contains 3 subdirs: nyc, shapefiles and taz_shapes. If I don’t move them one dir up geoserver isn’t able to load its configuration (someone else has already wrote about this in the mailing list).

Thanks for your support,

Fabio

Alessio Fabiani ha scritto:

Fabio,

You might try that path with forward-slashes (i.e.:

"D:/datastore/geoserver/wcs-data-dir"

Java tends to like those better than backslashes, and your error messages look like geoserver isn't finding your GEOSERVER_DATA_DIR.

--saul

Fabio Da Soghe wrote:

Yes. I added this to the web.xml:

<context-param>
    <param-name>GEOSERVER_DATA_DIR</param-name>
    <param-value>D:\datastore\geoserver\wcs-data-dir</param-value>
</context-param>

I thought the path separator was handled transparently by the JVM. Anyway I tried as you suggested but nothing changed :frowning:

Thanks for your interest.

Fabio

Saul Farber ha scritto:

Fabio,

You might try that path with forward-slashes (i.e.:

“D:/datastore/geoserver/wcs-data-dir”

Java tends to like those better than backslashes, and your error messages look like geoserver isn’t finding your GEOSERVER_DATA_DIR.

–saul

Fabio Da Soghe wrote:

Yes. I added this to the web.xml:

GEOSERVER_DATA_DIR D:\datastore\geoserver\wcs-data-dir

Hello Fabio:

Can you try adding a (backward/forward, I am not 100% sure) slash at
the end of your path?
Like in:

<context-param>
    <param-name>GEOSERVER_DATA_DIR</param-name>
      <param-value>D:\datastore\geoserver\wcs-data-dir\</param-value>
</context-param>

Alex

On 10/18/06, Fabio Da Soghe <fabio.dasoghe@anonymised.com> wrote:

I thought the path separator was handled transparently by the JVM. Anyway I
tried as you suggested but nothing changed :frowning:

Thanks for your interest.

Fabio

Saul Farber ha scritto:
Fabio,

You might try that path with forward-slashes (i.e.:

"D:/datastore/geoserver/wcs-data-dir"

Java tends to like those better than backslashes, and your error messages
look like geoserver isn't finding your GEOSERVER_DATA_DIR.

--saul

Fabio Da Soghe wrote:

Yes. I added this to the web.xml:

<context-param>
     <param-name>GEOSERVER_DATA_DIR</param-name>

<param-value>D:\datastore\geoserver\wcs-data-dir</param-value>
</context-param>

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Vincent Schut wrote:

Create jira task 746: http://jira.codehaus.org/browse/GEOS-746
Because there is no WCS component in jira I filed it under 'unknown'.

Ok, I just added a WCS component, and Simone as the lead (just means when people pick WCS it's automatically assigned to you, can switch to Alessio if you want).

And I also added 1.5 releases.

1.5.0-beta1
1.5.0-beat2
1.5.0-RC1
and
1.5.0

We can add more as appropriate, just let me/Brent know when you need them. Alessio/Simone, please try to make use of them as much as possible, even for work that's been more internal in the past. It makes it really easy to figure out what we've fixed for a release, people like to know even the small things. And if users email about stuff you may forget to get to get to it later, but with JIRA it will persist.

Chris

V.

Hi Alessio,

I think I would make sense to have similar behaviour for all file based stores, and I do like the behaviour of featureStore. I'll try to file a jira task on this (will be my first one ever for geoserver :)).

Hi Vincent,
thank you very much for your help and testing ... I built the WCS module thinking that all files should be relative to the GEOSERVER DATA DIR, so this is not a bug on the actual interface. However if people need to access coverages outside the DATA DIR too, I think should not be a problem to do this improvement. I think is a good idea to open a Jira task about that, however.

On 10/18/06, *Vincent Schut* <schut@anonymised.com <mailto:schut@anonymised.com>> wrote:

    OK, so I think I found the culprit.

    For coverageStores, the file url handler does *not* handle absolute
    filenames correctly, or at least not as I understood it should.
    What I thought it should do is: for file url's that don't start
    with a
    slash (relative filenames), append them to GEOSERVER_DATA_DIR, and for
    those that *do* start with a slash, use them as absolute
    filenames. This
    is at least the behaviour for FeatureStores. However, no matter what,
    all file url's for coveragestores are seen as relative to the
    geoserver
    data dir, so files that reside outside this dir can never be found.

    Should I open a jira issue on this?

    Vincent.

    -------- Original Message --------
    From: Vincent Schut <schut@anonymised.com <mailto:schut@anonymised.com>>
    To: Alessio Fabiani <alessio.fabiani@anonymised.com
    <mailto:alessio.fabiani@anonymised.com>>
    Subject: Re:[Geoserver-devel] [Geoserver-users] geoserver-wcs:
    connection parameters are invalid error for every CoverageStore
    Date: 10/18/2006 12:01 PM
    > Decided to try to deploy geoserver on another linux computer.
    > Surprisingly, on this pc all works fine (except for the gtopo
    character
    > case thingy of course, see previous email). So the problem has
    something
    > to do with the local linux install probably... Don't ask me what,
    > however. Main differences that I can think of are: amd64
    (working), i586
    > (not working correctly) and utf8 (working) non-utf8 system (not
    > working). Java versions are the same, distro's are the same.
    Let's close
    > the issue for the time being (the previous test pc was not our main
    > server, so I have hopes to be able to deploy to our main web server
    > later without problems...). When the problem arises again, of course
    > I'll mail the list.
    >
    > This however stresses the importance of informational error
    messages.
    > The only message I got, even after enabling the most verbose
    logging,
    > was "Unable to get an ImageInputStream". That's pretty hard to
    debug for
    > a non geoserver core developer...
    >
    > Anyways, glad things seem to work now. Keep up the good work!
    >
    > Vincent.
    >
    > -------- Original Message --------
    > From: "Alessio Fabiani" < alessio.fabiani@anonymised.com
    <mailto:alessio.fabiani@anonymised.com>>
    > To: "Alexander Petkov" <greenkov@anonymised.com
    <mailto:greenkov@anonymised.com>>
    > Subject: Re:[Geoserver-users] [Geoserver-devel] geoserver-wcs:
    > connection parameters are invalid error for every CoverageStore
    > Date: 10/17/2006 09:21 PM
    >
    >> Thanks Alex, I'm going to do some testing too very soon!
    >>
    >> On 10/17/06, *Alexander Petkov* <greenkov@anonymised.com
    <mailto:greenkov@anonymised.com>
    >> <mailto:greenkov@anonymised.com>> wrote:
    >>
    >> It seems to work on Linux OS.
    >>
    >> 1. I downloaded and installed jdk1.5.0_06 , JAI and jai-imageIO
    >> 2. I downloaded and extracted tomcat 5.5.20
    >> 3. I built a geoserver war with "mvn -Dmaven.test.skip
    clean install"
    >> from today's SVN.
    >> 4. Moved geoserver.war to tomcat's webapps subdirectory
    >> 5. Started and stopped tomcat.
    >> 5. Deleted geoserver/data subdirectory
    >> 6. Defined GEOSERVER_DATA_DIR variable in geoserver's
    web.xml as
    >> described here:
    >> http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory
    >> <
    http://docs.codehaus.org/display/GEOSDOC/GeoServer+Data+Directory&gt;
    >> (for some reason exporting the env. variable did not work,
    maybe
    >> catalina.sh needs to be modified).
    >> 7. Started tomcat.
    >>
    >> Configuring new coverageStores and coverages seemed to work
    (I got
    >> a map).
    >>
    >> The only thing I see as not working so far is using the
    exported
    >> GEOSERVER_DATA_DIR from the shell, but I might be wrong on
    that one.
    >> Other than that, geoserver WCS seems to behave as expected
    under
    >> tomcat in a Linux environment.
    >>
    >> Alex
    >>
    >> On 10/17/06, Simone Giannecchini < simboss1@anonymised.com
    <mailto:simboss1@anonymised.com>
    >> <mailto:simboss1@anonymised.com>> wrote:
    >> > That would be *great*!
    >> >
    >> > Simone.
    >> >
    >> > On 10/17/06, Alexander Petkov < greenkov@anonymised.com
    <mailto:greenkov@anonymised.com>
    >> <mailto: greenkov@anonymised.com <mailto:greenkov@anonymised.com>>>
    wrote:
    >> > > I cna start doing some of this testing in a Linux OS, since
    >> that is
    >> > > all I have and use in production. So far I don't think
    I have
    >> seen the
    >> > > behaviour described in this thread, and if I have, I
    probably
    >> changed
    >> > > the startup scripts :-).
    >> > >
    >> > > For some reason I prefer using jetty, but I can try with
    >> tomcat too.
    >> > >
    >> > > Alex
    >> > >
    >> > > On 10/17/06, Fabio Da Soghe <fabio.dasoghe@anonymised.com
    <mailto:fabio.dasoghe@anonymised.com>
    >> <mailto:fabio.dasoghe@anonymised.com
    <mailto:fabio.dasoghe@anonymised.com>>> wrote:
    >> > > >
    >> > > > Thank you for your work!
    >> > > >
    >> > > > I'll wait for your tests on linux environment. In the
    >> meanwhile I'll do a
    >> > > > try on windows, just to verify I'm able to correctly
    install
    >> geoserver-wcs
    >> > > > and all its dependecies.
    >> > > >
    >> > > > Hope to read from you soon.
    >> > > >
    >> > > > Cheers,
    >> > > >
    >> > > > Fabio
    >> > > >
    >> > > > Simone Giannecchini ha scritto:
    >> > > > Ciao all,
    >> > > > as Alessio correctly pointed out, we spend most part
    of our
    >> time
    >> > > > working in a windows-only environment. We had a
    linux box
    >> doing builds
    >> > > > for us but in the last couple of month we have fried
    >> already two
    >> > > > machines. It is exactly 3 weeks that we are not
    testing on
    >> linux, but
    >> > > > this weekend we will set up a new linux box for testing
    >> purposes.
    >> > > >
    >> > > > Anyway, thanks everybody for testing and reporting
    issues.
    >> > > >
    >> > > > Simone.
    >> > > >
    >> > > > On 10/17/06, Alessio Fabiani
    <alessio.fabiani@anonymised.com <mailto:alessio.fabiani@anonymised.com>
    >> <mailto: alessio.fabiani@anonymised.com
    <mailto:alessio.fabiani@anonymised.com>>> wrote:
    >> > > >
    >> > > > Hi all guys,
    >> > > > GeoServer WCS actually isn't tested deeply on a Linux
    >> environment, so I'm
    >> > > > not surprised of strange behaviors ... however we are
    >> working on setting up
    >> > > > last WCS changes on a Fedora server.
    >> > > > As soon we succeded with the configuration we will
    post a
    >> detailed tutorial
    >> > > > on how to install and configure GeoServer WCS on
    linux OS.
    >> > > >
    >> > > > Any help, comment and whatever is appreciated, of
    course.
    >> > > >
    >> > > > On 10/17/06, Vincent Schut < schut@anonymised.com
    <mailto:schut@anonymised.com>
    >> <mailto:schut@anonymised.com>> wrote:
    >> > > > > Thanks Fabio for your reaction. See inline for my
    comments.
    >> > > > >
    >> > > > > -------- Original Message --------
    >> > > > > From: Fabio Da Soghe < fabio.dasoghe@anonymised.com
    <mailto:fabio.dasoghe@anonymised.com>
    >> <mailto:fabio.dasoghe@anonymised.com
    <mailto:fabio.dasoghe@anonymised.com>>>
    >> > > > > To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    >> <mailto:geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>>,
    >> > > > Geoserver-devel
    >> > > > > < geoserver-devel@lists.sourceforge.net
    <mailto:geoserver-devel@lists.sourceforge.net>
    >> <mailto:geoserver-devel@lists.sourceforge.net
    <mailto:geoserver-devel@lists.sourceforge.net>>>
    >> > > > > Subject: Re:[Geoserver-users] [Geoserver-devel]
    >> geoserver-wcs:
    >> > > > > connection parameters are invalid error for every
    >> CoverageStore
    >> > > > > Date: 10/17/2006 03:59 PM
    >> > > > > > Hi Vincent.
    >> > > > > >
    >> > > > > > I had a very similar problem (I posted yesterday
    on the
    >> user list about
    >> > > > > > that).
    >> > > > > > The message error I got was:
    >> > > > > >
    >> > > > > > Internal error : unable to get reader for this
    coverage
    >> layer
    >> > > > > >
    >> > > > > > Then I followed Alessio Fabiani's hint to update JAI
    >> and ImageIO to the
    >> > > > > > very last version (JAI 1.1.4 and imageio 1.1): after
    >> this GeoServer
    >> > > > > > didn't load correctly the raster plugins at startup.
    >> > > > > >
    >> > > > > Hmm. I'm using pretty recent cvs versions of JAI and
    >> JAI-IO. I thought
    >> > > > > that was more or less a prerequisite for geoserver-wcs
    >> instead of a
    >> > > > > blocker... :slight_smile:
    >> > > > > I'll look further into it tomorrow, have to go now.
    >> Strange thing is I
    >> > > > > succeed with *some* coverages to configure them,
    but for
    >> some I get the
    >> > > > > error.
    >> > > > > OK, any hints apreciated, especially about how to
    get a
    >> bit more useful
    >> > > > > error info from geoserver... More new (hopefully)
    tomorrow.
    >> > > > >
    >> > > > > Cheers for now,
    >> > > > > Vincent.
    >> > > > > > My configuration is:
    >> > > > > >
    >> > > > > > - linux fedora core 4
    >> > > > > > - Java 1.5.0_06 (Sun)
    >> > > > > > - JAI 1.1.4 pre-dr-b03
    >> > > > > > - ImageIO 1.1 beta
    >> > > > > > - Tomcat 5.5
    >> > > > > >
    >> > > > > > I used the geoserver-1.4.0-M2-WCS binary build. What
    >> version of JAI and
    >> > > > > > ImageIO do you have? Maybe you could be more
    fortunate
    >> then me with an
    >> > > > > > update...
    >> > > > > >
    >> > > > > > Hope this helps.
    >> > > > > >
    >> > > > > > Cheers,
    >> > > > > >
    >> > > > > > Fabio
    >> > > > > >
    >> > > > > > Vincent Schut ha scritto:
    >> > > > > >
    >> > > > > >> Hi list, dev's,
    >> > > > > >>
    >> > > > > >> I'm trying to set up geoserver-1.4.x-merge-wcs (svn
    >> from today). For
    >> > > > > >> feature data (shape, postgis) all is OK, but if
    I want
    >> to define a new
    >> > > > > >> CoverageStore I get an "Connection Parameters are
    >> invalid" message on
    >> > > > > >> submitting, no matter if I use an abolute or a
    >> relative url for the
    >> > > > > >> data. I get this message even with the demo
    coverages
    >> (Gtopo30,
    >> > > > > >> sample_geotiff, etc), so I guess it is not me
    entering
    >> wrong
    >> > > > filenames,
    >> > > > > >> but something inside geoserver is not entirely
    right.
    >> Nothing is
    >> > > > logged
    >> > > > > >> (I have enabled the logs/geoserver.log, and the
    file
    >> has been
    >> > > > created),
    >> > > > > >> so I have no idea where to start resolving this...
    >> > > > > >>
    >> > > > > >> Btw I am using a GEOSERVER_DATA_DIR outside of the
    >> exploded war
    >> > > > > >> (tomcat). It is defined as a environment
    variable, and
    >> is picked up
    >> > > > > >> alright, proven with shapefiles, config
    (catalog.xml,
    >> services.xml)
    >> > > > and
    >> > > > > >> the log file.
    >> > > > > >>
    >> > > > > >> Environment: gentoo linux, java sun jdk 1.5,
    jai and
    >> jai-imageio
    >> > > > > >> correctly installed.
    >> > > > > >>
    >> > > > > >> Vincent.
    >> > > > > >>
    >> > > >
    >> -------------------------------------------------------------------------
    >> > > > > >> Using Tomcat but need to do more? Need to
    support web
    >> services,
    >> > > > security?
    >> > > > > >> Get stuff done quickly with pre-integrated
    technology
    >> to make your job
    >> > > > easier
    >> > > > > >> Download IBM WebSphere Application Server v.1.0.1
    >> based on Apache
    >> > > > Geronimo
    >> > > > > >>
    >> > > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <
    http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > > > >> _______________________________________________
    >> > > > > >> Geoserver-devel mailing list
    >> > > > > >> Geoserver-devel@lists.sourceforge.net
    <mailto:Geoserver-devel@lists.sourceforge.net>
    >> <mailto:Geoserver-devel@lists.sourceforge.net
    <mailto:Geoserver-devel@lists.sourceforge.net>>
    >> > > > > >>
    >> > > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-devel
    >> <https://lists.sourceforge.net/lists/listinfo/geoserver-devel&gt;
    >> > > > > >>
    >> > > > > >
    >> > > >
    >> -------------------------------------------------------------------------
    >>
    >> > > > > > Using Tomcat but need to do more? Need to
    support web
    >> services,
    >> > > > security?
    >> > > > > > Get stuff done quickly with pre-integrated
    technology
    >> to make your job
    >> > > > easier
    >> > > > > > Download IBM WebSphere Application Server
    v.1.0.1 based
    >> on Apache
    >> > > > Geronimo
    >> > > > > >
    >> > > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <
    http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > > > > _______________________________________________
    >> > > > > > Geoserver-users mailing list
    >> > > > > > Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> <mailto: Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>>
    >> > > > > >
    >> > > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >> > > > > >
    >> > > > >
    >> > > >
    >> -------------------------------------------------------------------------
    >>
    >> > > > > Using Tomcat but need to do more? Need to support web
    >> services, security?
    >> > > > > Get stuff done quickly with pre-integrated
    technology to
    >> make your job
    >> > > > easier
    >> > > > > Download IBM WebSphere Application Server v.1.0.1
    based
    >> on Apache
    >> > > > Geronimo
    >> > > > >
    >> > > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > > > _______________________________________________
    >> > > > > Geoserver-devel mailing list
    >> > > > > Geoserver-devel@lists.sourceforge.net
    <mailto:Geoserver-devel@lists.sourceforge.net>
    >> <mailto:Geoserver-devel@lists.sourceforge.net
    <mailto:Geoserver-devel@lists.sourceforge.net>>
    >> > > > >
    >> > > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-devel
    >> < https://lists.sourceforge.net/lists/listinfo/geoserver-devel&gt;
    >> > > > >
    >> > > >
    >> > > > --
    >> > > > -------------------------------------------------------
    >> > > > Eng. Alessio Fabiani
    >> > > > Vice President/CTO GeoSolutions
    >> > > >
    >> > > > http://www.geo-solutions.it
    >> > > >
    >> > >
    > ---------------------------------------------------------
    >> > > >
    >> -------------------------------------------------------------------------
    >> > > > Using Tomcat but need to do more? Need to support web
    >> services, security?
    >> > > > Get stuff done quickly with pre-integrated technology to
    >> make your job
    >> > > > easier
    >> > > > Download IBM WebSphere Application Server v.1.0.1
    based on
    >> Apache Geronimo
    >> > > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > >
    >> > > > _______________________________________________
    >> > > > Geoserver-users mailing list
    >> > > > Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> <mailto:Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>>
    >> > > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >> <https://lists.sourceforge.net/lists/listinfo/geoserver-users&gt;
    >> > > >
    >> -------------------------------------------------------------------------
    >> > > > Using Tomcat but need to do more? Need to support web
    >> services, security?
    >> > > > Get stuff done quickly with pre-integrated technology to
    >> make your job
    >> > > > easier
    >> > > > Download IBM WebSphere Application Server v.1.0.1
    based on
    >> Apache Geronimo
    >> > > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <
    http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > >
    >> > > > _______________________________________________
    >> > > > Geoserver-users mailing list
    >> > > > Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> <mailto:Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>>
    >> > > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >> > > >
    >> > >
    >> -------------------------------------------------------------------------

    >> > > Using Tomcat but need to do more? Need to support web
    >> services, security?
    >> > > Get stuff done quickly with pre-integrated technology
    to make
    >> your job easier
    >> > > Download IBM WebSphere Application Server v.1.0.1 based on
    >> Apache Geronimo
    >> > >
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >> <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> > > _______________________________________________
    >> > > Geoserver-users mailing list
    >> > > Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> <mailto:Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>>
    >> > >
    https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >> > >
    >> >
    >> > --
    >> > -------------------------------------------------------
    >> > Eng. Simone Giannecchini
    >> > President /CEO GeoSolutions
    >> >
    >> > http://www.geo-solutions.it
    >> >
    >> > -------------------------------------------------------
    >> >
    >>
    >> -------------------------------------------------------------------------
    >> Using Tomcat but need to do more? Need to support web
    services,
    >> security?
    >> Get stuff done quickly with pre-integrated technology to
    make your
    >> job easier
    >> Download IBM WebSphere Application Server v.1.0.1 based on
    Apache
    >> Geronimo
    >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;

    >> <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;&gt;
    >> _______________________________________________
    >> Geoserver-users mailing list
    >> Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> <mailto: Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>>
    >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >>
    >> --
    >> -------------------------------------------------------
    >> Eng. Alessio Fabiani
    >> Vice President/CTO GeoSolutions
    >>
    >> http://www.geo-solutions.it
    >>
    >> ---------------------------------------------------------
    >>
    ------------------------------------------------------------------------
    >>
    -------------------------------------------------------------------------

    >> Using Tomcat but need to do more? Need to support web services,
    security?
    >> Get stuff done quickly with pre-integrated technology to make
    your job easier
    >> Download IBM WebSphere Application Server v.1.0.1 based on
    Apache Geronimo
    >>
    http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    >>
    ------------------------------------------------------------------------
    >>
    >> _______________________________________________
    >> Geoserver-users mailing list
    >> Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
    >> https://lists.sourceforge.net/lists/listinfo/geoserver-users
    >>
    >
    -------------------------------------------------------------------------
    > Using Tomcat but need to do more? Need to support web services,
    security?
    > Get stuff done quickly with pre-integrated technology to make
    your job easier
    > Download IBM WebSphere Application Server v.1.0.1 based on
    Apache Geronimo
    >
    http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
    <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642&gt;
    > _______________________________________________
    > Geoserver-devel mailing list
    > Geoserver-devel@lists.sourceforge.net
    <mailto:Geoserver-devel@lists.sourceforge.net>
    > https://lists.sourceforge.net/lists/listinfo/geoserver-devel
    >

--
-------------------------------------------------------
Eng. Alessio Fabiani
Vice President/CTO GeoSolutions

http://www.geo-solutions.it

---------------------------------------------------------
------------------------------------------------------------------------

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
------------------------------------------------------------------------

_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
  
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel
  
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

!DSPAM:1003,45361a40175301527717022!

--
Chris Holmes
The Open Planning Project
http://topp.openplans.org