[Geoserver-users] WFS - T ENABLED FOR ONE AND ONLY DATASET

Hello to all,

please does anybody knoww if it is possible to enable wfs-t function only for a dataset and not for the entire server (all datasets) ?

Thanks in Advance

G. Tsolakis, http://www.mpe.gr

On Wed, May 13, 2009 at 7:01 PM, <geoserver-users-request@lists.sourceforge.net> wrote:

Send Geoserver-users mailing list submissions to
geoserver-users@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/geoserver-users
or, via email, send a message with subject or body ‘help’ to
geoserver-users-request@lists.sourceforge.net

You can reach the person managing the list at
geoserver-users-owner@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than “Re: Contents of Geoserver-users digest…”

Today’s Topics:

  1. Problems with GeoServer 1.7.4 and MySql (2StepForward)
  2. Custom GTRender (Valentin Erastov)
  3. Re: Custom GTRender (Andrea Aime)
  4. Re: gwc re generation (Joshua M. Thompson)
  5. Re: Problems with GeoServer 1.7.4 and MySql (2StepForward)
  6. Re: new shapefile datastore how do I connect to network drive
    data? (John Mitchell)
  7. Re: Custom GTRender (Valentin Yerastov)
  8. Custom GTRender (Valentin Yerastov)
  9. URL CoverageStore ArcSDE 9.2 (Geos 1.7.4)
    (Velarde Gutierrez, Victor)

Message: 1
Date: Wed, 13 May 2009 06:21:20 -0700 (PDT)
From: 2StepForward <kwegezeder@anonymised.com…157…>
Subject: [Geoserver-users] Problems with GeoServer 1.7.4 and MySql
To: geoserver-users@lists.sourceforge.net
Message-ID: <23521637.post@anonymised.com.381…>
Content-Type: text/plain; charset=us-ascii

Hello,

I have installed the new GeoServer 1.7.4 and MySql DataStore Plugin.
Now my currently used Mysql tables have no geometry column in the
FeatureEditor.

The Tables are created with thees statement:

CREATE TABLE IF NOT EXISTS POLYGONS (
ID int(11) NOT NULL auto_increment,
NAME varchar(255) default NULL,
THE_GEOM polygon NOT NULL,
PRIMARY KEY (ID),
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

The field Name was shown in FeatureEditor, ID is primary and not listed, but
the THE_GEOM field is missed.
I have took the new geoserver-1.7.4-mysql-plugin installed end configured.
The connection is done, only the geometry column is missed.

Has anybody the same problem or a solution for that problem.

Thx 2StepForward

View this message in context: http://www.nabble.com/Problems-with-GeoServer-1.7.4-and-MySql-tp23521637p23521637.html
Sent from the GeoServer - User mailing list archive at Nabble.com.


Message: 2
Date: Wed, 13 May 2009 22:42:15 +0800
From: Valentin Erastov <xibyte@anonymised.com…>
Subject: [Geoserver-users] Custom GTRender
To: geoserver-users@lists.sourceforge.net
Message-ID:
<be23fa2a0905130742l5b31f723t434a26c12ee099d7@anonymised.com>
Content-Type: text/plain; charset=ISO-8859-1

Hello,

Can I configure Geoserver to use custom GTRender implementation class?


Message: 3
Date: Wed, 13 May 2009 16:46:09 +0200
From: Andrea Aime <aaime@anonymised.com>
Subject: Re: [Geoserver-users] Custom GTRender
To: Valentin Erastov <xibyte@anonymised.com>
Cc: geoserver-users@lists.sourceforge.net
Message-ID: <4A0ADD31.4070001@anonymised.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Valentin Erastov ha scritto:

Hello,

Can I configure Geoserver to use custom GTRender implementation class?

Nope, you cannot. But the modifications needed should not be that
many, provided your renderer can really do whatever the streaming
renderer does.
Can you share more information about your custom rendering code?

Cheers
Andrea


Andrea Aime
OpenGeo - http://opengeo.org
Expert service straight from the developers.


Message: 4
Date: Wed, 13 May 2009 10:55:58 -0400
From: “Joshua M. Thompson” <joshua.thompson@anonymised.com>
Subject: Re: [Geoserver-users] gwc re generation
To: geoserver-users@lists.sourceforge.net
Message-ID:
<3833332e0905130755w30205927u59249ef7724d1db9@anonymised.com>
Content-Type: text/plain; charset=ISO-8859-1

On Wed, May 13, 2009 at 6:18 AM, Arne Kepp <ak@anonymised.com> wrote:

if you have a chance, could you please try replacing geowebcache*.jar in
WEB-INF/lib ?with this one ? (Be sure to move the old copy out of lib)

http://repo.opengeo.org/org/opengeo/geowebcache/1.1-SNAPSHOT/geowebcache-1.1-20090512.120147-8.jar

Note that it does perform an upgrade on the H2 database, so if the tiles are
valuable then please move them temporarily and start with an empty tree.

Let me know if you have a chance to test it, your help would be greatly
appreciated.

I just installed this here and tried it by starting a seed on a
somewhat complex layer and then trying to view it from the demo page.
Previously this would trigger the bug almost immediately, but despite
my best attempts at tripping it up I can’t make it fail anymore. I
think you nailed the bug!


This message brought to you by Speed of Light Beer
When you’re approaching infinite mass
It’s Speed of Light time!


Message: 5
Date: Wed, 13 May 2009 08:05:51 -0700 (PDT)
From: 2StepForward <kwegezeder@anonymised.com…157…>
Subject: Re: [Geoserver-users] Problems with GeoServer 1.7.4 and MySql
To: geoserver-users@lists.sourceforge.net
Message-ID: <23523704.post@anonymised.com.381…>
Content-Type: text/plain; charset=us-ascii

Hi,

I have test some diverent CREATE TABLES with a spatial column extention but
nothing works.

Has anyone experiences with GeoServer 1.7.4 and MySql or could anyone test
the create definition of mine to exclude a failure of table creation or
spatial definition.

It would be a greate thing,

Cheers 2StepForward

2StepForward wrote:

Hello,

I have installed the new GeoServer 1.7.4 and MySql DataStore Plugin.
Now my currently used Mysql tables have no geometry column in the
FeatureEditor.

The Tables are created with thees statement:

CREATE TABLE IF NOT EXISTS POLYGONS (
ID int(11) NOT NULL auto_increment,
NAME varchar(255) default NULL,
THE_GEOM polygon NOT NULL,
PRIMARY KEY (ID),
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

The field Name was shown in FeatureEditor, ID is primary and not listed,
but the THE_GEOM field is missed.
I have took the new geoserver-1.7.4-mysql-plugin installed end configured.
The connection is done, only the geometry column is missed.

Has anybody the same problem or a solution for that problem.

Thx 2StepForward


View this message in context: http://www.nabble.com/Problems-with-GeoServer-1.7.4-and-MySql-tp23521637p23523704.html
Sent from the GeoServer - User mailing list archive at Nabble.com.


Message: 6
Date: Wed, 13 May 2009 11:13:08 -0400
From: John Mitchell <mitchelljj98@anonymised.com>
Subject: Re: [Geoserver-users] new shapefile datastore how do I
connect to network drive data?
To: Andrea Aime <aaime@anonymised.com>
Cc: Daniel Buckley <dbuckley@anonymised.com186…>,
mitchelljj98@anonymised.com…, geoserver-users@lists.sourceforge.net
Message-ID:
<fa2ac0580905130813l298e2cfatf43b7ba2cd58f51c@anonymised.com>
Content-Type: text/plain; charset=“iso-8859-1”

Andrea,

Regarding your comment:

  • I remember there was an issue with the Windows services design
    itself, like the inability to set a startup order, and the
    fact Java cannot deal with UNC path directly (which would have
    allowed to dodge the service startup order issue), but I cannot
    find the thread in the archives with a quick search.

*Is their a plan for future versions of Geoserver to allow connection to
files via UNC paths instead of via a mapped network drive?

Thanks,

John Mitchell

On Wed, May 13, 2009 at 3:14 AM, Andrea Aime <aaime@anonymised.com> wrote:

John Mitchell ha scritto:

Hi,

When creating a new shapefile datastore I filled in for the url field a
reference to a mapped network drive on the server (i.e.
file://j:/canada.shp) and I get an error “Could not find file:
J:\canada.shp”. When I try to reference the same file on the c drive it
finds with no error (i.e. file://c:/canada.shp)

I just tried with a file on a remote drive on my XP VM and it
worked fine. In my case the path I specified was
file://z:/gisdata/roads.shp

A difference that might be significant is that I have write access
on the remote drive.

I also know that people in the past successfully connected
to shapefiles on remote drives, but then they found out they
could not go in production that way using GeoServer as a service
because the remote drives are mounted after the other services
are started.

I remember there was an issue with the Windows services design
itself, like the inability to set a startup order, and the
fact Java cannot deal with UNC path directly (which would have
allowed to dodge the service startup order issue), but I cannot
find the thread in the archives with a quick search.

Cheers
Andrea


Andrea Aime
OpenGeo - http://opengeo.org
Expert service straight from the developers.


John J. Mitchell
-------------- next part --------------
An HTML attachment was scrubbed…


Message: 7
Date: Wed, 13 May 2009 08:18:40 -0700 (PDT)
From: Valentin Yerastov <xibyte@anonymised.com…>
Subject: Re: [Geoserver-users] Custom GTRender
To: geoserver-users@lists.sourceforge.net
Message-ID: <23523937.post@anonymised.com.381…>
Content-Type: text/plain; charset=us-ascii

I need to make the realization of a pseudo-3D buildings. Something
similar to this
http://maps.google.com/maps?f=q&source=s_q&hl=ru&geocode=&q=New+York&sll=37.0625,-95.677068&sspn=48.240201,79.101563&ie=UTF8&ll=40.730202,-73.975502&spn=0.002837,0.004828&z=18&iwloc=A

Andrea Aime-4 wrote:

Valentin Erastov ha scritto:

Hello,

Can I configure Geoserver to use custom GTRender implementation class?

Nope, you cannot. But the modifications needed should not be that
many, provided your renderer can really do whatever the streaming
renderer does.
Can you share more information about your custom rendering code?

Cheers
Andrea


Andrea Aime
OpenGeo - http://opengeo.org
Expert service straight from the developers.

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


View this message in context: http://www.nabble.com/Custom-GTRender-tp23523268p23523937.html
Sent from the GeoServer - User mailing list archive at Nabble.com.


Message: 8
Date: Wed, 13 May 2009 05:27:57 -0700 (PDT)
From: Valentin Yerastov <xibyte@anonymised.com…>
Subject: [Geoserver-users] Custom GTRender
To: geoserver-users@lists.sourceforge.net
Message-ID: <23520788.post@anonymised.com.381…>
Content-Type: text/plain; charset=us-ascii

Hello!

Can I configure geoserver to use custom GTRender implementation class?

View this message in context: http://www.nabble.com/Custom-GTRender-tp23520788p23520788.html
Sent from the GeoServer - User mailing list archive at Nabble.com.


Message: 9
Date: Wed, 13 May 2009 16:38:25 +0200
From: “Velarde Gutierrez, Victor” <victor.velarde@anonymised.com>
Subject: [Geoserver-users] URL CoverageStore ArcSDE 9.2 (Geos 1.7.4)
To: <geoserver-users@lists.sourceforge.net>
Message-ID:
<CF67985D0E48474B95C0939BC57A19C801866A6B@anonymised.com>
Content-Type: text/plain; charset=“us-ascii”

Hello everybody,

I’m writing this email to ask about URL syntax for SDE raster (new
CoverageStore).

I’m using the recommended way:

sde://user:pass@anonymised.com[:port]/[instance]#raster_table_name

But no matter how I write the slashes ("" or “/”), I always get the
message “Invalid url: ‘the_Url_I_Wrote’”.

[Note: The plugin and my parameters seems to be ok, as I can get a working Feature with them (and use it with WMS / WFS)]

If instead of using the web application I directly edit the catalog.xml
file as in here:

sdeRasterEjemplo

ArcSDE Raster

sde://myuser:mypassword@anonymised.com:5151/myGDB#MyRasterCatalog

and then I try to define a New Coverage with the web app, I get this
Exception:

The following exception was thrown:

  • class java.lang.IllegalArgumentException: ArcSDE Raster URL must
    be of the form sde://user:pass@anonymised.com:port/[dbname]#rasterTableName -

Got sde:\ myuser:mypassword @myHost:5151\myGDB#MyRasterCatalog

It seems that some Java operation inside has changed my slashes to an
incorrect form!!

I found a similar topic in this list [
http://www.nabble.com/What’s-url-syntax-for-SDE-raster-in-GeoServer-1.7.
0-beta2-tt19544049.html#a19544049 ]

This is my environment:

  • Windows Server 2003 Enterprise Edition SP2

  • Geoserver 1.7.4

  • Apache Tomcat/6.0.18 (JDK: 1.6.0_13-b03)

  • ArcSDE 9.2 SP6

Regards

-------------- next part --------------
An HTML attachment was scrubbed…



The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there’s a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you’ll get full speed at 300 dpi even with all image
processing features enabled. http://p.sf.net/sfu/kodak-com



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

End of Geoserver-users Digest, Vol 36, Issue 33


Γεώργιος Τσολάκης - Περιβαλλοντολόγος
Γραφείο Περιβαλλοντικών Μελετών
Ζήνωνος 57. Περιστέρι. Αθήνα
tel: +30 210 5727615
fax: +30 210 5727995
mobile: + 30 6977 158693
email: gtsolakis@anonymised.com
URL : www.mpe.gr

Yes, it is possible to do this with the security subsystem. Check out:

http://docs.geoserver.org/1.7.x/user/security/index.html

-Justin

George Tsolakis wrote:

Hello to all,

please does anybody knoww if it is possible to enable wfs-t function only for a dataset and not for the entire server (all datasets) ?

Thanks in Advance

G. Tsolakis, http://www.mpe.gr

On Wed, May 13, 2009 at 7:01 PM, <geoserver-users-request@lists.sourceforge.net <mailto:geoserver-users-request@lists.sourceforge.net>> wrote:

    Send Geoserver-users mailing list submissions to
           geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>

    To subscribe or unsubscribe via the World Wide Web, visit
           https://lists.sourceforge.net/lists/listinfo/geoserver-users
    or, via email, send a message with subject or body 'help' to
           geoserver-users-request@lists.sourceforge.net
    <mailto:geoserver-users-request@lists.sourceforge.net>

    You can reach the person managing the list at
           geoserver-users-owner@lists.sourceforge.net
    <mailto:geoserver-users-owner@lists.sourceforge.net>

    When replying, please edit your Subject line so it is more specific
    than "Re: Contents of Geoserver-users digest..."

    Today's Topics:

      1. Problems with GeoServer 1.7.4 and MySql (2StepForward)
      2. Custom GTRender (Valentin Erastov)
      3. Re: Custom GTRender (Andrea Aime)
      4. Re: gwc re generation (Joshua M. Thompson)
      5. Re: Problems with GeoServer 1.7.4 and MySql (2StepForward)
      6. Re: new shapefile datastore how do I connect to network drive
         data? (John Mitchell)
      7. Re: Custom GTRender (Valentin Yerastov)
      8. Custom GTRender (Valentin Yerastov)
      9. URL CoverageStore ArcSDE 9.2 (Geos 1.7.4)
         (Velarde Gutierrez, Victor)

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

    Message: 1
    Date: Wed, 13 May 2009 06:21:20 -0700 (PDT)
    From: 2StepForward <kwegezeder@anonymised.com <mailto:kwegezeder@anonymised.com>>
    Subject: [Geoserver-users] Problems with GeoServer 1.7.4 and MySql
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID: <23521637.post@anonymised.com
    <mailto:23521637.post@anonymised.com>>
    Content-Type: text/plain; charset=us-ascii

    Hello,

    I have installed the new GeoServer 1.7.4 and MySql DataStore Plugin.
    Now my currently used Mysql tables have no geometry column in the
    FeatureEditor.

    The Tables are created with thees statement:

    CREATE TABLE IF NOT EXISTS `POLYGONS` (
     `ID` int(11) NOT NULL auto_increment,
     `NAME` varchar(255) default NULL,
     `THE_GEOM` polygon NOT NULL,
     PRIMARY KEY (`ID`),
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

    The field Name was shown in FeatureEditor, ID is primary and not
    listed, but
    the THE_GEOM field is missed.
    I have took the new geoserver-1.7.4-mysql-plugin installed end
    configured.
    The connection is done, only the geometry column is missed.

    Has anybody the same problem or a solution for that problem.

    Thx 2StepForward
    --
    View this message in context:
    http://www.nabble.com/Problems-with-GeoServer-1.7.4-and-MySql-tp23521637p23521637.html
    Sent from the GeoServer - User mailing list archive at Nabble.com.

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

    Message: 2
    Date: Wed, 13 May 2009 22:42:15 +0800
    From: Valentin Erastov <xibyte@anonymised.com <mailto:xibyte@anonymised.com>>
    Subject: [Geoserver-users] Custom GTRender
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID:
           <be23fa2a0905130742l5b31f723t434a26c12ee099d7@anonymised.com
    <mailto:be23fa2a0905130742l5b31f723t434a26c12ee099d7@anonymised.com>>
    Content-Type: text/plain; charset=ISO-8859-1

    Hello,

    Can I configure Geoserver to use custom GTRender implementation class?

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

    Message: 3
    Date: Wed, 13 May 2009 16:46:09 +0200
    From: Andrea Aime <aaime@anonymised.com <mailto:aaime@anonymised.com>>
    Subject: Re: [Geoserver-users] Custom GTRender
    To: Valentin Erastov <xibyte@anonymised.com <mailto:xibyte@anonymised.com>>
    Cc: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID: <4A0ADD31.4070001@anonymised.com
    <mailto:4A0ADD31.4070001@anonymised.com>>
    Content-Type: text/plain; charset=ISO-8859-1; format=flowed

    Valentin Erastov ha scritto:
     > Hello,
     >
     > Can I configure Geoserver to use custom GTRender implementation
    class?

    Nope, you cannot. But the modifications needed should not be that
    many, provided your renderer can really do whatever the streaming
    renderer does.
    Can you share more information about your custom rendering code?

    Cheers
    Andrea

    --
    Andrea Aime
    OpenGeo - http://opengeo.org
    Expert service straight from the developers.

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

    Message: 4
    Date: Wed, 13 May 2009 10:55:58 -0400
    From: "Joshua M. Thompson" <joshua.thompson@anonymised.com
    <mailto:joshua.thompson@anonymised.com>>
    Subject: Re: [Geoserver-users] gwc re generation
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID:
           <3833332e0905130755w30205927u59249ef7724d1db9@anonymised.com
    <mailto:3833332e0905130755w30205927u59249ef7724d1db9@anonymised.com>>
    Content-Type: text/plain; charset=ISO-8859-1

    On Wed, May 13, 2009 at 6:18 AM, Arne Kepp <ak@anonymised.com
    <mailto:ak@anonymised.com>> wrote:
     > if you have a chance, could you please try replacing
    geowebcache*.jar in
     > WEB-INF/lib ?with this one ? (Be sure to move the old copy out of
    lib)
     >
    http://repo.opengeo.org/org/opengeo/geowebcache/1.1-SNAPSHOT/geowebcache-1.1-20090512.120147-8.jar
     >
     > Note that it does perform an upgrade on the H2 database, so if
    the tiles are
     > valuable then please move them temporarily and start with an
    empty tree.
     >
     > Let me know if you have a chance to test it, your help would be
    greatly
     > appreciated.

    I just installed this here and tried it by starting a seed on a
    somewhat complex layer and then trying to view it from the demo page.
    Previously this would trigger the bug almost immediately, but despite
    my best attempts at tripping it up I can't make it fail anymore. I
    think you nailed the bug!

    --
    This message brought to you by Speed of Light Beer
    When you're approaching infinite mass
    It's Speed of Light time!

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

    Message: 5
    Date: Wed, 13 May 2009 08:05:51 -0700 (PDT)
    From: 2StepForward <kwegezeder@anonymised.com <mailto:kwegezeder@anonymised.com>>
    Subject: Re: [Geoserver-users] Problems with GeoServer 1.7.4 and MySql
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID: <23523704.post@anonymised.com
    <mailto:23523704.post@anonymised.com>>
    Content-Type: text/plain; charset=us-ascii

    Hi,

    I have test some diverent CREATE TABLES with a spatial column
    extention but
    nothing works.

    Has anyone experiences with GeoServer 1.7.4 and MySql or could
    anyone test
    the create definition of mine to exclude a failure of table creation or
    spatial definition.

    It would be a greate thing,

    Cheers 2StepForward

    2StepForward wrote:
     >
     > Hello,
     >
     > I have installed the new GeoServer 1.7.4 and MySql DataStore Plugin.
     > Now my currently used Mysql tables have no geometry column in the
     > FeatureEditor.
     >
     > The Tables are created with thees statement:
     >
     > CREATE TABLE IF NOT EXISTS `POLYGONS` (
     > `ID` int(11) NOT NULL auto_increment,
     > `NAME` varchar(255) default NULL,
     > `THE_GEOM` polygon NOT NULL,
     > PRIMARY KEY (`ID`),
     > ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
     >
     > The field Name was shown in FeatureEditor, ID is primary and not
    listed,
     > but the THE_GEOM field is missed.
     > I have took the new geoserver-1.7.4-mysql-plugin installed end
    configured.
     > The connection is done, only the geometry column is missed.
     >
     > Has anybody the same problem or a solution for that problem.
     >
     > Thx 2StepForward
     >

    --
    View this message in context:
    http://www.nabble.com/Problems-with-GeoServer-1.7.4-and-MySql-tp23521637p23523704.html
    Sent from the GeoServer - User mailing list archive at Nabble.com.

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

    Message: 6
    Date: Wed, 13 May 2009 11:13:08 -0400
    From: John Mitchell <mitchelljj98@anonymised.com
    <mailto:mitchelljj98@anonymised.com>>
    Subject: Re: [Geoserver-users] new shapefile datastore how do I
           connect to network drive data?
    To: Andrea Aime <aaime@anonymised.com <mailto:aaime@anonymised.com>>
    Cc: Daniel Buckley <dbuckley@anonymised.com
    <mailto:dbuckley@anonymised.com>>,
           mitchelljj98@anonymised.com <mailto:mitchelljj98@anonymised.com>,
    geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID:
           <fa2ac0580905130813l298e2cfatf43b7ba2cd58f51c@anonymised.com
    <mailto:fa2ac0580905130813l298e2cfatf43b7ba2cd58f51c@anonymised.com>>
    Content-Type: text/plain; charset="iso-8859-1"

    Andrea,

    Regarding your comment:

    * I remember there was an issue with the Windows services design
    itself, like the inability to set a startup order, and the
    fact Java cannot deal with UNC path directly (which would have
    allowed to dodge the service startup order issue), but I cannot
    find the thread in the archives with a quick search.

    *Is their a plan for future versions of Geoserver to allow connection to
    files via UNC paths instead of via a mapped network drive?

    Thanks,

    John Mitchell

    On Wed, May 13, 2009 at 3:14 AM, Andrea Aime <aaime@anonymised.com
    <mailto:aaime@anonymised.com>> wrote:

     > John Mitchell ha scritto:
     >
     >> Hi,
     >>
     >> When creating a new shapefile datastore I filled in for the url
    field a
     >> reference to a mapped network drive on the server (i.e.
     >> file://j:/canada.shp) and I get an error "Could not find file:
     >> J:\canada.shp". When I try to reference the same file on the c
    drive it
     >> finds with no error (i.e. file://c:/canada.shp)
     >>
     >
     > I just tried with a file on a remote drive on my XP VM and it
     > worked fine. In my case the path I specified was
     > file://z:/gisdata/roads.shp
     >
     > A difference that might be significant is that I have write access
     > on the remote drive.
     >
     > I also know that people in the past successfully connected
     > to shapefiles on remote drives, but then they found out they
     > could not go in production that way using GeoServer as a service
     > because the remote drives are mounted after the other services
     > are started.
     >
     > I remember there was an issue with the Windows services design
     > itself, like the inability to set a startup order, and the
     > fact Java cannot deal with UNC path directly (which would have
     > allowed to dodge the service startup order issue), but I cannot
     > find the thread in the archives with a quick search.
     >
     > Cheers
     > Andrea
     >
     > --
     > Andrea Aime
     > OpenGeo - http://opengeo.org
     > Expert service straight from the developers.
     >

    --
    John J. Mitchell
    -------------- next part --------------
    An HTML attachment was scrubbed...

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

    Message: 7
    Date: Wed, 13 May 2009 08:18:40 -0700 (PDT)
    From: Valentin Yerastov <xibyte@anonymised.com <mailto:xibyte@anonymised.com>>
    Subject: Re: [Geoserver-users] Custom GTRender
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID: <23523937.post@anonymised.com
    <mailto:23523937.post@anonymised.com>>
    Content-Type: text/plain; charset=us-ascii

    I need to make the realization of a pseudo-3D buildings. Something
    similar to this
    http://maps.google.com/maps?f=q&source=s_q&hl=ru&geocode=&q=New+York&sll=37.0625,-95.677068&sspn=48.240201,79.101563&ie=UTF8&ll=40.730202,-73.975502&spn=0.002837,0.004828&z=18&iwloc=A
    <http://maps.google.com/maps?f=q&source=s_q&hl=ru&geocode=&q=New+York&sll=37.0625,-95.677068&sspn=48.240201,79.101563&ie=UTF8&ll=40.730202,-73.975502&spn=0.002837,0.004828&z=18&iwloc=A&gt;

    Andrea Aime-4 wrote:
     >
     > Valentin Erastov ha scritto:
     >> Hello,
     >>
     >> Can I configure Geoserver to use custom GTRender implementation
    class?
     >
     > Nope, you cannot. But the modifications needed should not be that
     > many, provided your renderer can really do whatever the streaming
     > renderer does.
     > Can you share more information about your custom rendering code?
     >
     > Cheers
     > Andrea
     >
     > --
     > Andrea Aime
     > OpenGeo - http://opengeo.org
     > Expert service straight from the developers.
     >
     > Geoserver-users mailing list
     > Geoserver-users@lists.sourceforge.net
    <mailto:Geoserver-users@lists.sourceforge.net>
     > https://lists.sourceforge.net/lists/listinfo/geoserver-users
     >

    --
    View this message in context:
    http://www.nabble.com/Custom-GTRender-tp23523268p23523937.html
    Sent from the GeoServer - User mailing list archive at Nabble.com.

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

    Message: 8
    Date: Wed, 13 May 2009 05:27:57 -0700 (PDT)
    From: Valentin Yerastov <xibyte@anonymised.com <mailto:xibyte@anonymised.com>>
    Subject: [Geoserver-users] Custom GTRender
    To: geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>
    Message-ID: <23520788.post@anonymised.com
    <mailto:23520788.post@anonymised.com>>
    Content-Type: text/plain; charset=us-ascii

    Hello!

    Can I configure geoserver to use custom GTRender implementation class?
    --
    View this message in context:
    http://www.nabble.com/Custom-GTRender-tp23520788p23520788.html
    Sent from the GeoServer - User mailing list archive at Nabble.com.

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

    Message: 9
    Date: Wed, 13 May 2009 16:38:25 +0200
    From: "Velarde Gutierrez, Victor" <victor.velarde@anonymised.com
    <mailto:victor.velarde@anonymised.com>>
    Subject: [Geoserver-users] URL CoverageStore ArcSDE 9.2 (Geos 1.7.4)
    To: <geoserver-users@lists.sourceforge.net
    <mailto:geoserver-users@lists.sourceforge.net>>
    Message-ID:
           <CF67985D0E48474B95C0939BC57A19C801866A6B@anonymised.com
    <mailto:CF67985D0E48474B95C0939BC57A19C801866A6B@anonymised.com>>
    Content-Type: text/plain; charset="us-ascii"

    Hello everybody,

    I'm writing this email to ask about URL syntax for SDE raster (new
    CoverageStore).

    I'm using the recommended way:

    sde://user:pass@anonymised.com[:port]/[instance]#raster_table_name

    But no matter how I write the slashes ("\" or "/"), I always get the
    message "Invalid url: 'the_Url_I_Wrote'".

    [Note: The plugin and my parameters seems to be ok, as I can get a
    working Feature with them (and use it with WMS / WFS)]

    If instead of using the web application I directly edit the catalog.xml
    file as in here:

       <format id = "sdeRasterEjemplo" enabled = "true" namespace = "ihc" >

         <title>sdeRasterEjemplo</title>

         <type>ArcSDE Raster</type>

    <url>sde://myuser:mypassword@anonymised.com:5151/myGDB#MyRasterCatalog</url>

       </format>

    and then I try to define a New Coverage with the web app, I get this
    Exception:

    The following exception was thrown:

    * class java.lang.IllegalArgumentException: ArcSDE Raster URL must
    be of the form sde://user:pass@anonymised.com:port/[dbname]#rasterTableName -

    Got sde:\ myuser:mypassword @myHost:5151\myGDB#MyRasterCatalog

    It seems that some Java operation inside has changed my slashes to an
    incorrect form!!

    I found a similar topic in this list [
    http://www.nabble.com/What’s-url-syntax-for-SDE-raster-in-GeoServer-1.7.
    0-beta2-tt19544049.html#a19544049
    <http://www.nabble.com/What’s-url-syntax-for-SDE-raster-in-GeoServer-1.7.
    0-beta2-tt19544049.html#a19544049> ]

    This is my environment:

    - Windows Server 2003 Enterprise Edition SP2

    - Geoserver 1.7.4

    - Apache Tomcat/6.0.18 (JDK: 1.6.0_13-b03)

    - ArcSDE 9.2 SP6

    Regards

    -------------- next part --------------
    An HTML attachment was scrubbed...

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

    ------------------------------------------------------------------------------
    The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
    production scanning environment may not be a perfect world - but
    thanks to
    Kodak, there's a perfect scanner to get the job done! With the NEW
    KODAK i700
    Series Scanner you'll get full speed at 300 dpi even with all image
    processing features enabled. http://p.sf.net/sfu/kodak-com

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

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

    End of Geoserver-users Digest, Vol 36, Issue 33
    ***********************************************

--
------------------------------------------------------
Γεώργιος Τσολάκης - Περιβαλλοντολόγος
Γραφείο Περιβαλλοντικών Μελετών
Ζήνωνος 57. Περιστέρι. Αθήνα
tel: +30 210 5727615 fax: +30 210 5727995
mobile: + 30 6977 158693
email: gtsolakis@anonymised.com <mailto:gtsolakis@anonymised.com>
URL : www.mpe.gr <http://www.mpe.gr>

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

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image processing features enabled. http://p.sf.net/sfu/kodak-com

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

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

--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.