Re: [Geoserver-users] Publishing pyramid to geoserver

2013-11-19 Thread tog
Update:

Apparently even though the POST does not return on the client side ... the
pyramid gets published.
Nevertheless the log shows the following. Any comment ?

Guillaume

2013-11-20 03:19:12,830 ERROR [geoserver.rest] - No such workspace: 6c6cfbfc

2013-11-20 03:19:12,830 ERROR [geoserver.rest] -

org.geoserver.rest.RestletException

at
org.geoserver.catalog.rest.WorkspaceFinder.findTarget(WorkspaceFinder.java:33)

at org.restlet.Finder.handle(Finder.java:268)

at
org.geoserver.rest.BeanDelegatingRestlet.handle(BeanDelegatingRestlet.java:37)

at org.restlet.Filter.doHandle(Filter.java:105)

at org.restlet.Filter.handle(Filter.java:134)

at org.restlet.Router.handle(Router.java:444)

at
org.geoserver.rest.RESTDispatcher$1.handle(RESTDispatcher.java:204)

at
com.noelios.restlet.ext.servlet.ServletConverter.service(ServletConverter.java:129)

at
org.geoserver.rest.RESTDispatcher.handleRequestInternal(RESTDispatcher.java:86)

at
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)

at
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)

at
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)

at
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)

at
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)

at
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:621)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

at
org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:27)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

at
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:74)

at
org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:45)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

at
org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:49)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

at
org.vfny.geoserver.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:311)

at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:68)

at
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:116)

at
org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)

at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:72)

at
org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:91)

at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)

at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:68)

at
org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)

at
org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:72)

at
org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:91)

at
org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:323)

at
org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter.doFilter(GeoServerAnonymousAuthenticationFilter.java:53)

at
org.sprin

Re: [Geoserver-users] Oracle Data in Geoserver

2013-11-19 Thread Ben Caradoc-Davies
Unquoted Oracle identifiers are converted to uppercase; this may be 
significant in USER_SDO_GEOM_METADATA values, as lowercase string values 
(table and column names) will not match.

Kind regards,
Ben.

On 19/11/13 21:09, rkliao wrote:
> Thanks for the reply.
>
> I have figured out the problem.  It had to do with the creation of an entry
> in the ORACLE USER_SDO_GEOM_METADATA table in order to create the Spatial
> index.
>
> I originally set it to the ff (copied this off the web as I was not able to
> create spatial indexes without it):
>
> INSERT INTO USER_SDO_GEOM_METADATA
>VALUES (
>'Geoserver_Cem000',
>'the_geom',
>MDSYS.SDO_DIM_ARRAY(   -- 20X20 grid, virtually zero tolerance
>  MDSYS.SDO_DIM_ELEMENT('X', 0, 20, 0.005),
>  MDSYS.SDO_DIM_ELEMENT('Y', 0, 20, 0.005)
>   ),
>4326  -- SRID
> );
>
> and have changed it to
>
> INSERT INTO USER_SDO_GEOM_METADATA
>VALUES (
>'GEOSERVER_CEMDATA',
>'THE_GEOM',
>MDSYS.SDO_DIM_ARRAY(
>  MDSYS.SDO_DIM_ELEMENT('X', -180, 180, 0.005),
>  MDSYS.SDO_DIM_ELEMENT('Y', -90, 90, 0.005)
>   ),
>4326   -- SRID
> );
>
>
> I am very new to Oracle spatial and am learning as I go.  I am not even sure
> why the difference but it worked.
>
> Thank you for the reply.
>
>
>
> --
> View this message in context: 
> http://osgeo-org.1560.x6.nabble.com/Oracle-Data-in-Geoserver-tp5089732p5089877.html
> Sent from the GeoServer - User mailing list archive at Nabble.com.
>
> --
> Shape the Mobile Experience: Free Subscription
> Software experts and developers: Be at the forefront of tech innovation.
> Intel(R) Software Adrenaline delivers strategic insight and game-changing
> conversations that shape the rapidly evolving mobile landscape. Sign up now.
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>

-- 
Ben Caradoc-Davies 
Software Engineer
CSIRO Earth Science and Resource Engineering
Australian Resources Research Centre

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Publishing pyramid to geoserver

2013-11-19 Thread tog
Hi Simone

Thanks for the answer.
Yep I need to transfer my mosaic to the server ;-)

I was indeed contemplating 2 options:

option1: upload the file to the server using REST api
/file.imagepyramid

option2: as you suggest in 2 phases:
   - upload the file on an accessible filesystem
   - use the REST api that will use the local zip file
   - delete the uploaded file

I thought option 1 was simpler (for info an scp just take 6mn).
Any idea/explaination why option 1 is not that good ?

Regards
Guillaume




On Wed, Nov 20, 2013 at 8:25 AM, Simone Giannecchini <
simone.giannecch...@geo-solutions.it> wrote:

> Ciao Guillame.
> is it a requirement to upload a 11gb to the server?
> The best option would be to place the file somewhere where it is
> reachable and then use the "external" method
> which does not perform an upload.
>
> Check the REST docs for this.
>
> Regards,
> Simone Giannecchini
> ==
> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
> more information.
> ==
>
> Ing. Simone Giannecchini
> @simogeo
> Founder/Director
>
> GeoSolutions S.A.S.
> Via Poggio alle Viti 1187
> 55054  Massarosa (LU)
> Italy
> phone: +39 0584 962313
> fax: +39 0584 1660272
> mob:   +39 333 8128928
>
> http://www.geo-solutions.it
> http://twitter.com/geosolutions_it
>
> ---
>
>
> On Tue, Nov 19, 2013 at 5:00 PM, tog  wrote:
> > Dear all
> >
> > I want to publish programmatically a pyramid to geoserver. Once zipped
> the
> > file is about 11GB.
> >
> > For that I am using httpclient in groovy using the following code:
> >
> > method = new
> > PutMethod("
> http://myhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid?coverageName=129images
> ")
> >
> > requestEntity = new FileRequestEntity(new File(localUri),
> > "application/zip")
> >
> > method.setRequestEntity(requestEntity)
> >
> > status = client.executeMethod(method)
> >
> > this hangs. No message!
> >
> >
> > When I try using curl locally, I got this message:
> >
> > curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
> > --data-binary @/mnt/tmp/pyramids.zip
> >
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
> >
> > curl: option --data-binary: out of memory
> >
> > curl: try 'curl --help' or 'curl --manual' for more information
> >
> > I was suspecting that curl was trying to load the 11GB file (which is a
> bad
> > idea) therefore I tried this:
> >
> > curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
> --header
> > "Transfer-Encoding: chunked" --data-binary @/mnt/tmp/pyramids.zip
> >
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
> >
> > curl: option --data-binary: out of memory
> >
> > curl: try 'curl --help' or 'curl --manual' for more information
> >
> > but get the same error.
> >
> > Is there something I should do differently ?
> >
> >
> > Best Regards
> >
> > Guillaume
> >
> >
> >
> >
> > --
> > PGP KeyID: 2048R/EA31CFC9  subkeys.pgp.net
> >
> >
> --
> > Shape the Mobile Experience: Free Subscription
> > Software experts and developers: Be at the forefront of tech innovation.
> > Intel(R) Software Adrenaline delivers strategic insight and game-changing
> > conversations that shape the rapidly evolving mobile landscape. Sign up
> now.
> >
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> > ___
> > Geoserver-users mailing list
> > Geoserver-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/geoserver-users
> >
>



-- 
PGP KeyID: 2048R/EA31CFC9  subkeys.pgp.net
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Publishing pyramid to geoserver

2013-11-19 Thread Simone Giannecchini
Ciao Guillame.
is it a requirement to upload a 11gb to the server?
The best option would be to place the file somewhere where it is
reachable and then use the "external" method
which does not perform an upload.

Check the REST docs for this.

Regards,
Simone Giannecchini
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for
more information.
==

Ing. Simone Giannecchini
@simogeo
Founder/Director

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob:   +39  333 8128928

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---


On Tue, Nov 19, 2013 at 5:00 PM, tog  wrote:
> Dear all
>
> I want to publish programmatically a pyramid to geoserver. Once zipped the
> file is about 11GB.
>
> For that I am using httpclient in groovy using the following code:
>
> method = new
> PutMethod("http://myhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid?coverageName=129images";)
>
> requestEntity = new FileRequestEntity(new File(localUri),
> "application/zip")
>
> method.setRequestEntity(requestEntity)
>
> status = client.executeMethod(method)
>
> this hangs. No message!
>
>
> When I try using curl locally, I got this message:
>
> curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
> --data-binary @/mnt/tmp/pyramids.zip
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
>
> curl: option --data-binary: out of memory
>
> curl: try 'curl --help' or 'curl --manual' for more information
>
> I was suspecting that curl was trying to load the 11GB file (which is a bad
> idea) therefore I tried this:
>
> curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip" --header
> "Transfer-Encoding: chunked" --data-binary @/mnt/tmp/pyramids.zip
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
>
> curl: option --data-binary: out of memory
>
> curl: try 'curl --help' or 'curl --manual' for more information
>
> but get the same error.
>
> Is there something I should do differently ?
>
>
> Best Regards
>
> Guillaume
>
>
>
>
> --
> PGP KeyID: 2048R/EA31CFC9  subkeys.pgp.net
>
> --
> Shape the Mobile Experience: Free Subscription
> Software experts and developers: Be at the forefront of tech innovation.
> Intel(R) Software Adrenaline delivers strategic insight and game-changing
> conversations that shape the rapidly evolving mobile landscape. Sign up now.
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Publishing pyramid to geoserver

2013-11-19 Thread Lorenzo Natali
Hi,
Curl goes out of memory because it tries to load all the file in memory.

I didn' t tested it, but you can try to use the -T option ( this allows to
do this transfer in streaming.

Check the man page of curl for details .

Lorenzo
Il 19/nov/2013 18:07 "tog"  ha scritto:

> Dear all
>
> I want to publish programmatically a pyramid to geoserver. Once zipped the
> file is about 11GB.
>
> For that I am using httpclient in groovy using the following code:
>
> method = new PutMethod("
> http://myhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid?coverageName=129images
> ")
>
> requestEntity = new FileRequestEntity(new File(localUri),
> "application/zip")
>
> method.setRequestEntity(requestEntity)
>
> status = client.executeMethod(method)
> this hangs. No message!
>
>
> When I try using curl locally, I got this message:
>
> curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
> --data-binary @/mnt/tmp/pyramids.zip
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
>
> curl: option --data-binary: out of memory
>
> curl: try 'curl --help' or 'curl --manual' for more information
> I was suspecting that curl was trying to load the 11GB file (which is a
> bad idea) therefore I tried this:
>
> curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
> --header "Transfer-Encoding: chunked" --data-binary @/mnt/tmp/pyramids.zip
> http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid
>
> curl: option --data-binary: out of memory
>
> curl: try 'curl --help' or 'curl --manual' for more information
>
> but get the same error.
>
> Is there something I should do differently ?
>
>
> Best Regards
>
> Guillaume
>
>
>
>
> --
> PGP KeyID: 2048R/EA31CFC9  subkeys.pgp.net
>
>
> --
> Shape the Mobile Experience: Free Subscription
> Software experts and developers: Be at the forefront of tech innovation.
> Intel(R) Software Adrenaline delivers strategic insight and game-changing
> conversations that shape the rapidly evolving mobile landscape. Sign up
> now.
> http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Unable to create an ImagePyramid data store

2013-11-19 Thread Ballance, Melody (IS)
· Application: Geoserver 2.3.4
- gt-imagepyramid-9.4.jar (Digest SHA256: 
df06a6a46259b97069539b7d5f7138644c11fff99d2066e2cef3e8081a6a48ef)
OS Platform: Oracle Solaris 10 8/11
App Server: Weblogic Server 10.3.6
§  Creates Workspace
§  Create Raster Data Source Pyramid Image
§  Point it to the Image Pyramid Data on disk (Located in geoserver external 
data directory)
§  Save this configuration
§  ERROR Message " Could not list layers for this store, an error occurred 
retrieving them: This plugin accepts only File, URL and String pointing to a 
file"
1. .prj and .properties is NOT auto generated for the image 
pyramid directory

###
1. GEOSERVER.LOG INFORMATION
###
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,810 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,811 DEBUG [org.geoserver] - Thread 12 locking in mode WRITE
2013-11-05 14:34:36,811 DEBUG [org.geoserver] - Thread 12 got the lock in mode 
WRITE
2013-11-05 14:34:36,813 DEBUG [geoserver.web] - Store JNC is enabled, verifying 
factory availability before saving it...
2013-11-05 14:34:36,814 INFO [gce.imagepyramid] - Checking 
file:/h/data/global/GEOSRV/data/data/CADRG/
existstrue
isFilefalse
canRead:true
canWritetrue
canExecutetrue
isHidden:false
lastModified1383646992000

2013-11-05 14:34:36,814 INFO [gce.imagepyramid] - Checking 
file:/h/data/global/GEOSRV/data/data/CADRG/JNC/
existsfalse
isFilefalse
canRead:false
canWritefalse
canExecutefalse
isHidden:false
lastModified0

2013-11-05 14:34:36,815 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/1
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/6
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/2
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/8
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/5
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/7
2013-11-05 14:34:36,816 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/0
2013-11-05 14:34:36,817 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/4
2013-11-05 14:34:36,817 INFO [gce.imagepyramid] - Unable to build mosaic for 
the directory:/h/data/global/GEOSRV/data/data/CADRG/JNC/3
2013-11-05 14:34:36,823 DEBUG [org.geoserver] - Thread 12 releasing the lock in 
mode WRITE
2013-11-05 14:34:36,823 DEBUG 
[filter.GeoServerSecurityContextPersistenceFilter$1] - SecurityContextHolder 
now cleared, as request processing completed
2013-11-05 14:34:36,824 DEBUG [geoserver.filters] - Compressing output for 
mimetype: text/xml; charset=UTF-8
2013-11-05 14:34:36,996 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,997 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,997 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,997 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,997 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,997 TRACE [ows.OWSHandlerMapping] - No handler mapping 
found for [/web/]
2013-11-05 14:34:36,998 DEBUG [org.geoserver] - Thread 19 locking in mode READ
2013-11-05 14:34:36,998 DEBUG [org.geoserver] - Thread 19 got the lock in mode 
READ
2013-11-05 14:34:37,001 DEBUG [geoserver.web] - cannot convert url: 
zip:/h/data/local/BEAWLS/data/nodemanager/enclaveDefaultDomain/servers/enclaveDefDom_GEOSRVClusManSvr1/tmp/_WL_user/GeoServer/hriivl/war/WEB-INF/lib/web-core-2.3.4.jar!/org/geoserver/web/favicon.ico
 to file (URI scheme is not "file"), falling back to the inputstream for polling
2013-11-05 14:34:37,004 DEBUG [geoserver.web] - cannot convert url: 
zip:/h/data/local/BEAWLS/data/nodemanager/enclaveDefaultDomain/servers/enclaveDefDom_GEOSRVClusManSvr1/tmp/_WL_user/GeoServer/hriivl/war/WEB-INF/lib/web-core-2.3.4.jar!/org/geo

Re: [Geoserver-users] ERROR - Call MapContent dispose() to prevent memory leaks

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 9:26 AM, mbaga...@sardegnait.it <
maurobagazzilav...@gmail.com> wrote:

> Hello everybody,
> I get the following error:
> 18 Nov 10:12:40 ERROR [geotools.map] - Call MapContent dispose() to
> prevent memory leaks
>

Ah, this is an error GeoTools writes when we are not disposing the
MapContent, which I believe
can happen when the WMS request fails.

The thing is, it's not an error in GeoServer. In a Geotools Swing
application there are listeners
that can keep the map content up if not disposed, but GeoServer deos not
use them

Fixing this is thus low priority (it's just noise in the logs with no real
issues), but anyways,
can you open a  ticket about this on http://jira.codehaus.org/browse/GEOS?
Maybe attach full logs, they should help seeing in which conditions the log
message is
generated

Cheers
Andrea

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Publishing pyramid to geoserver

2013-11-19 Thread tog
Dear all

I want to publish programmatically a pyramid to geoserver. Once zipped the
file is about 11GB.

For that I am using httpclient in groovy using the following code:

method = new PutMethod("
http://myhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid?coverageName=129images
")

requestEntity = new FileRequestEntity(new File(localUri),
"application/zip")

method.setRequestEntity(requestEntity)

status = client.executeMethod(method)
this hangs. No message!


When I try using curl locally, I got this message:

curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
--data-binary @/mnt/tmp/pyramids.zip
http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid

curl: option --data-binary: out of memory

curl: try 'curl --help' or 'curl --manual' for more information
I was suspecting that curl was trying to load the 11GB file (which is a bad
idea) therefore I tried this:

curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip"
--header "Transfer-Encoding: chunked" --data-binary @/mnt/tmp/pyramids.zip
http://localhost:8080/geoserver/rest/workspaces/pf/coveragestores/129images/file.imagepyramid

curl: option --data-binary: out of memory

curl: try 'curl --help' or 'curl --manual' for more information

but get the same error.

Is there something I should do differently ?


Best Regards

Guillaume




-- 
PGP KeyID: 2048R/EA31CFC9  subkeys.pgp.net
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] WMS/SLD Pixelated Font

2013-11-19 Thread Cheryan
maw269 wrote
> I can confirm that switching back to JDK 6 has done the trick. Thanks
> Andrea!

Another confirmation here. Changed to JDK6, rendering is ok now. Feels like
a step backwards. Yet we have seen this before in our project. We have
solved that  in our code by adding this in our code:

//Fix ugly rendering in JDK 7:
 g2.setRenderingHint(
 RenderingHints.KEY_TEXT_ANTIALIASING,
 RenderingHints.VALUE_TEXT_ANTIALIAS_GASP);

We just found that GeoServer uses GeoTools for rendering, we are now
checking out GeoTools to see if we can add something like this or if we can
sent this somehow to the developers of GeoTools.

-- Gerjan Walrecht & Alexander Elias



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/WMS-SLD-Pixelated-Font-tp4980180p5089642.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] ERROR - Call MapContent dispose() to prevent memory leaks

2013-11-19 Thread mbaga...@sardegnait.it
Hello everybody,
I get the following error:
18 Nov 10:12:40 ERROR [geotools.map] - Call MapContent dispose() to prevent
memory leaks

in the catalina.out tomcat log.
Here is the java parameter:
JAVA_OPTS="$JAVA_OPTS  -Xms1536m -Xmx6144m -XX:MaxPermSize=256m"

The tomcat is executing with jdk 7 on a 64 bit platform with Ubuntu 12 LTS.


Build Information

   - Version2.4.1
   - Git Revision2bd0f71f9d0037e6f92a9fd639f0c93200f4b4f7
   - Build Date21-Oct-2013 01:44
   - GeoTools Version10.1 (rev 568b187de57623f5962225d965de67d070e9d941)
   - GeoWebCache Version1.5.0 (rev
   1.5.x/f981cafd349886bb2a1ef45067f26b1aa8e4aff4)

JVM VersionOracle Corporation: 1.7.0_17 (Java HotSpot(TM) 64-Bit Server VM)
Locks0
Free 
locks
Connections1Memory Usage1 GB



-- 
Mauro Bagazzi
SardegnaIT srl
Via dei giornalisti, 6, Cagliari
Telefono : +39-0706069017
E-mail: 
Skype: mauro.bagazzi
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread NORMAN MANN
Thanks.
 
This case isn't clustered, however I am still running another version of 
GeoServer within the instance.
I suspect this may be causing the issue?
 


 From: Andrea Aime 
To: NORMAN MANN ; Christian Mueller 
 
Cc: "geoserver-users@lists.sourceforge.net" 
 
Sent: Tuesday, 19 November 2013, 15:38
Subject: Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1
  


On Tue, Nov 19, 2013 at 4:36 PM, NORMAN MANN  wrote:

I have increased the PermGen space and it may have helped! Thanks. 
> 
>However, I now get the following issue.
> 
>java.lang.RuntimeException: java.io.FileNotFoundException: Source 
>'/servers/managed1_wlsswns01/stage/geoserver241/geoserver241/data/security/filter/formLogout/config.xml'
> does not exist
>    at 
>org.geoserver.security.GeoServerSecurityManager.onApplicationEvent(GeoServerSecurityManager.java:328)
>    at 
>org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:97)
>    at
 
org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:327)
>    at 
>org.geoserver.platform.GeoServerContextLoaderListener.contextInitialized(GeoServerContextLoaderListener.java:25)
>    at 
>weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)

Nope, I also had another independent report of this problem, which may be 
Weblogic specific (as in, 
the other report mentioned Weblogic too).

Christian (cc'ed) worked on the security subsystem changes, maybe he can 
comment.
The case is clustered install, with N instances pointing at the same data 
directory. 

Cheers
Andrea

-- 

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it/ for more 
information. 
==

Ing. Andrea Aime 

@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU) 
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it/ 
http://twitter.com/geosolutions_it

---  --
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 4:36 PM, NORMAN MANN wrote:

> I have increased the PermGen space and it may have helped! Thanks.
>
> However, I now get the following issue.
>
> java.lang.RuntimeException: java.io.FileNotFoundException: Source
> '/servers/managed1_wlsswns01/stage/geoserver241/geoserver241/data/security/filter/formLogout/config.xml'
> does not exist
> at
> org.geoserver.security.GeoServerSecurityManager.onApplicationEvent(GeoServerSecurityManager.java:328)
> at
> org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:97)
> at
> org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:327)
> at
> org.geoserver.platform.GeoServerContextLoaderListener.contextInitialized(GeoServerContextLoaderListener.java:25)
> at
> weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
>

Nope, I also had another independent report of this problem, which may be
Weblogic specific (as in,
the other report mentioned Weblogic too).

Christian (cc'ed) worked on the security subsystem changes, maybe he can
comment.
The case is clustered install, with N instances pointing at the same data
directory.

Cheers
Andrea


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread NORMAN MANN
I have increased the PermGen space and it may have helped! Thanks.
 
However, I now get the following issue.
 
java.lang.RuntimeException: java.io.FileNotFoundException: Source 
'/servers/managed1_wlsswns01/stage/geoserver241/geoserver241/data/security/filter/formLogout/config.xml'
 does not exist
    at 
org.geoserver.security.GeoServerSecurityManager.onApplicationEvent(GeoServerSecurityManager.java:328)
    at 
org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:97)
    at 
org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:327)
    at 
org.geoserver.platform.GeoServerContextLoaderListener.contextInitialized(GeoServerContextLoaderListener.java:25)
    at 
weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    Truncated. see log file for complete stacktrace

Is this something to do with maybe using a version of Spring within Weblogic?
I can confirm the file, or parent directory doesn't exist on the disk.
 
I have looked in the archives for the 10.2 discussions you mentioned, but can't 
find anything.
Do you have any links to these discussions? Or an archive where I can search?
 
Thanks again
 
Norman
  


 From: Andrea Aime 
To: NORMAN MANN  
Cc: "geoserver-users@lists.sourceforge.net" 
 
Sent: Tuesday, 19 November 2013, 13:40
Subject: Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1
  


On Tue, Nov 19, 2013 at 2:37 PM, NORMAN MANN  wrote:

Hi Andrea, 
> 
>Thanks for that.
>I don't believe the PermGen issue is normal. I have had an earlier version 2.1 
>running in the same instance before.
>I think the PermGen issue is in response to my change to the weblogic.xml, 
>which I assume is causing some class loading loop to go on. 

I'm pretty sure GeoServer 2.4.x uses more permanent generation than the 2.1 
series, we had to increase the settings
around 2.3.x to make it start in the windows installer and bin package 

Cheers
Andrea
-- 

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it/ for more 
information. 
==

Ing. Andrea Aime 

@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU) 
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it/ 
http://twitter.com/geosolutions_it

---  --
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Seeding fails with "Alpha images must have the same sample size as the sources"

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 3:55 PM, Nachtigall, Jens (init) <
jens.nachtig...@init.de> wrote:

>  HI Andrea,
>
>
>
> Thanks for your reply. No, actually I am seeding a WMS layer. Quoting form
> first mail:
>
>
>
> The WMS request is like this:
>
>
> https://security.geobasis-bb.de:443/wss/service/WMS-ALKIS/httpauth?SERVICE=WMS&LAYERS=adv_alkis_gebaeude&FORMAT=image%2Fpng&HEIGHT=1134&TRANSPARENT=TRUE&REQUEST=GetMap&WIDTH=1234&BBOX=241422.08804878494,5682813.523432538,242292.88804878492,5683614.323432538&STYLES=&SRS=EPSG:25833&VERSION=1.1.1
>
> (Sorry, the service is password protected as it’s an official service and
> I cannot paste it here :-/ but I attached the retrieved image. It’s just a
> plain transparent PNG, 1234x1134px with 455 Bytes).
>
>
>
> It works all well for seeding the first 3.5 GB of tiles (expecting about
> 50 GB in total), then it seems like a certain “mal-functioning” image is
> hit and tile processing is aborted.
>

Ouch, this makes it very difficult to debug, we have no way of reproducing
it.
You may want to open a ticket, but I'm afraid that without a direct
investigation on your servers (with full access and enough time
to spend on it) we'll have to wait for someone to stumble into the same
problem, but with an environment that makes
this easier to pinpoint and reproduce the issue.

Cheers
Andrea


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Seeding fails with "Alpha images must have the same sample size as the sources"

2013-11-19 Thread Nachtigall, Jens (init)
HI Andrea,

Thanks for your reply. No, actually I am seeding a WMS layer. Quoting form 
first mail:

The WMS request is like this:
https://security.geobasis-bb.de:443/wss/service/WMS-ALKIS/httpauth?SERVICE=WMS&LAYERS=adv_alkis_gebaeude&FORMAT=image%2Fpng&HEIGHT=1134&TRANSPARENT=TRUE&REQUEST=GetMap&WIDTH=1234&BBOX=241422.08804878494,5682813.523432538,242292.88804878492,5683614.323432538&STYLES=&SRS=EPSG:25833&VERSION=1.1.1
(Sorry, the service is password protected as it's an official service and I 
cannot paste it here :-/ but I attached the retrieved image. It's just a plain 
transparent PNG, 1234x1134px with 455 Bytes).

It works all well for seeding the first 3.5 GB of tiles (expecting about 50 GB 
in total), then it seems like a certain "mal-functioning" image is hit and tile 
processing is aborted.

Best, Jens



Von: andrea.a...@gmail.com [mailto:andrea.a...@gmail.com] Im Auftrag von Andrea 
Aime
Gesendet: Dienstag, 19. November 2013 15:43
An: Nachtigall, Jens (init)
Cc: geoserver-users@lists.sourceforge.net
Betreff: Re: [Geoserver-users] Seeding fails with "Alpha images must have the 
same sample size as the sources"

On Tue, Nov 19, 2013 at 3:32 PM, Nachtigall, Jens (init) 
mailto:jens.nachtig...@init.de>> wrote:
FYI: Just upgraded to GeoServer 2.4.2, but the problem still prevails.

By the looks of it, you're trying to seed a image mosaic layer, right?

One possible cause to the error message could be that the mosaic is made of 
images that
are not uniform from the point of view of the color mode, for example, some 
RGB, some
RGBA.
I don't believe we support this scenario.

Cheers
Andrea

--
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more 
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Seeding fails with "Alpha images must have the same sample size as the sources"

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 3:32 PM, Nachtigall, Jens (init) <
jens.nachtig...@init.de> wrote:

>  FYI: Just upgraded to GeoServer 2.4.2, but the problem still prevails.
>

By the looks of it, you're trying to seed a image mosaic layer, right?

One possible cause to the error message could be that the mosaic is made of
images that
are not uniform from the point of view of the color mode, for example, some
RGB, some
RGBA.
I don't believe we support this scenario.

Cheers
Andrea

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] GeoServer 2.4.2 released

2013-11-19 Thread Andrea Aime
The GeoServer team is pleased to announce the release of GeoServer 2.4.2:
http://geoserver.org/display/GEOS/GeoServer+2.4.2

This is a stable release containing bug fixes and incremental improvements,
including:
* Total matched feature count available in JSON output (contributed by Paul
Biskup)
* Ability to control how scale hints are computed in WMS 1.1 (contributed
by Roy Braam and Mauricio Pazos)
* Support for randomized symbol fills in both SLD and CSS (thanks to New
South Wales Geological survey for sponsoring it)
* Better support for data with 3D coordinates using GML3/GeoJSON, and
associated improvements in the SQL Server backend
* WCS 1.0 can be disabled
* Several translation updates and improvements, thanks to the translation
team. In no particular order: Polish, Korean, German, Lithuanian, Spanish,
Romanian, French
* Several small fixes in the docs (thanks to all the good people that
contributed them!)

More informations and links in the blog post:
http://blog.geoserver.org/2013/11/19/geoserver-2-4-2-released/

Cheers
The GeoServer community
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 2:37 PM, NORMAN MANN wrote:

> Hi Andrea,
>
> Thanks for that.
> I don't believe the PermGen issue is normal. I have had an earlier version
> 2.1 running in the same instance before.
> I think the PermGen issue is in response to my change to the weblogic.xml,
> which I assume is causing some class loading loop to go on.
>

I'm pretty sure GeoServer 2.4.x uses more permanent generation than the 2.1
series, we had to increase the settings
around 2.3.x to make it start in the windows installer and bin package

Cheers
Andrea

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread NORMAN MANN
Hi Andrea, 
 
Thanks for that.
I don't believe the PermGen issue is normal. I have had an earlier version 2.1 
running in the same instance before.
I think the PermGen issue is in response to my change to the weblogic.xml, 
which I assume is causing some class loading loop to go on.
 
I will take a look through the archives.
 
Thanks again
 
Norman
 
 


 From: Andrea Aime 
To: NORMAN MANN  
Cc: "geoserver-users@lists.sourceforge.net" 
 
Sent: Tuesday, 19 November 2013, 12:58
Subject: Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1
  


On Tue, Nov 19, 2013 at 12:56 PM, NORMAN MANN  wrote:

Hi,
>
>Has anybody managed to get GeoServer 2.4.1 working on Weblogic 10.3? 

Have you searched the maiiing list archives? Believe there was some discussion 
about 10.2,
maybe what was found is applicable to 10.3 too.

About the permgen error, GeoServer depends on a lot of external libraries, it's 
almost guaranteed 
it won't start with the default settings in a container that uses a lot of 
permgen
for itself such as Weblogic, you should try to increase it.

Cheers
Andrea

-- 

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it/ for more 
information. 
==

Ing. Andrea Aime 

@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU) 
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it/ 
http://twitter.com/geosolutions_it

---  --
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Oracle Data in Geoserver

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 2:09 PM, rkliao wrote:

> Thanks for the reply.
>
> I have figured out the problem.  It had to do with the creation of an entry
> in the ORACLE USER_SDO_GEOM_METADATA table in order to create the Spatial
> index.
>
> I originally set it to the ff (copied this off the web as I was not able to
> create spatial indexes without it):
>
> INSERT INTO USER_SDO_GEOM_METADATA
>   VALUES (
>   'Geoserver_Cem000',
>   'the_geom',
>   MDSYS.SDO_DIM_ARRAY(   -- 20X20 grid, virtually zero tolerance
> MDSYS.SDO_DIM_ELEMENT('X', 0, 20, 0.005),
> MDSYS.SDO_DIM_ELEMENT('Y', 0, 20, 0.005)
>  ),
>   4326  -- SRID
> );
>
> and have changed it to
>
> INSERT INTO USER_SDO_GEOM_METADATA
>   VALUES (
>   'GEOSERVER_CEMDATA',
>   'THE_GEOM',
>   MDSYS.SDO_DIM_ARRAY(
> MDSYS.SDO_DIM_ELEMENT('X', -180, 180, 0.005),
> MDSYS.SDO_DIM_ELEMENT('Y', -90, 90, 0.005)
>  ),
>   4326   -- SRID
> );
>
>
> I am very new to Oracle spatial and am learning as I go.  I am not even
> sure
> why the difference but it worked.
>

The issue is that Oracle cannot run the spatial filters used by GeoServer
(SDO_FILTER)
without a spatial index

Cheers
Andrea

-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Oracle Data in Geoserver

2013-11-19 Thread rkliao
Thanks for the reply.

I have figured out the problem.  It had to do with the creation of an entry
in the ORACLE USER_SDO_GEOM_METADATA table in order to create the Spatial
index.  

I originally set it to the ff (copied this off the web as I was not able to
create spatial indexes without it):

INSERT INTO USER_SDO_GEOM_METADATA 
  VALUES (
  'Geoserver_Cem000',
  'the_geom',
  MDSYS.SDO_DIM_ARRAY(   -- 20X20 grid, virtually zero tolerance
MDSYS.SDO_DIM_ELEMENT('X', 0, 20, 0.005),
MDSYS.SDO_DIM_ELEMENT('Y', 0, 20, 0.005)
 ),
  4326  -- SRID 
);

and have changed it to

INSERT INTO USER_SDO_GEOM_METADATA 
  VALUES (
  'GEOSERVER_CEMDATA',
  'THE_GEOM',
  MDSYS.SDO_DIM_ARRAY(   
MDSYS.SDO_DIM_ELEMENT('X', -180, 180, 0.005),
MDSYS.SDO_DIM_ELEMENT('Y', -90, 90, 0.005)
 ),
  4326   -- SRID 
);


I am very new to Oracle spatial and am learning as I go.  I am not even sure
why the difference but it worked.

Thank you for the reply.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Oracle-Data-in-Geoserver-tp5089732p5089877.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread Andrea Aime
On Tue, Nov 19, 2013 at 12:56 PM, NORMAN MANN wrote:

> Hi,
>
> Has anybody managed to get GeoServer 2.4.1 working on Weblogic 10.3?
>

Have you searched the maiiing list archives? Believe there was some
discussion about 10.2,
maybe what was found is applicable to 10.3 too.

About the permgen error, GeoServer depends on a lot of external libraries,
it's almost guaranteed
it won't start with the default settings in a container that uses a lot of
permgen
for itself such as Weblogic, you should try to increase it.

Cheers
Andrea


-- 
==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==

Ing. Andrea Aime
@geowolf
Technical Lead

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
mob: +39  339 8844549

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---
--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Geoweb cache error

2013-11-19 Thread Kelepe
Hello 

I'm using GeoWeb Cache 1.5 and getting this error while I try to use tile
layers. 

 

Please let me know how to run GeoWeb Cache 

Regards




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Geoweb-cache-error-tp5089875.html
Sent from the GeoServer - User mailing list archive at Nabble.com.

--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Geoserver WFS version

2013-11-19 Thread Hakala Oiva (MTT)
I have also those experiences. I get everything to work ok with my test 
computer (32-bit Ubuntu 12.04, Geoserver 2.4, Java 1.7.0.25 (32.bit). But if I 
move the same app to our server, a wfs-layer will not load ok. I have to get 
back to WFS 1.0.0 and get various other problems. I think the reason may be a 
different Java (1.7.0_01 64-bit on the server) and maybe different Geoserver 
version (2.31) too.

I used Openlayers-only things in my WFS-T app. I have used Openlayers 2.12 
version on both computers, so that is not the reason for different 
WFS-behaviour.

So, I suggest that you use always the same configurations with different 
computers. I just asked  our sys admin to update the server's Java version to 
32-bit 1.7.0.25. It is ultimately frustrating to struggle with WFS-T problems 
caused by different server configurations! I have also tested behaviour with 
Tomcat1 and Jetty, and that is not the reason for a different WFS-behaviour.

Oiva




Lähettäjä: Rahkonen Jukka [jukka.rahko...@mmmtike.fi]
Lähetetty: 19. marraskuuta 2013 14:02
Vastaanottaja: 'geoserver-users@lists.sourceforge.net'
Aihe: Re: [Geoserver-users] Geoserver WFS version

Hi,

I believe that you could save a lot of time by installing first some well 
behaving WFS-T client and study how it is doing WSF-T.  Kosmo GIS 3.0 is great 
with its filter wizard but QGIS is usable as well and there are others.  
Install some logging http proxy server to record the traffic between the client 
and Geoserver.  I have been using Fiddler 2 but there must be others.  At least 
when you have that proxy running you will be able to capture the whole XML 
messages and use them as annexes and make detailed questions which can perhaps 
be answered on this list.

-Jukka Rahkonen-

adityakumar529 wrote:

Dear Users, I am working with WFS-T for transaction. I am passing a WFS layer 
with version 1.1.0 but unfortunately the layer is not coming on the map. When I 
change the version of the WFS from 1.1.0 to 1.0.0 we find the layer is properly 
coming on the map. Following is the XML request that I am getting with WFS 
1.1.0 -154.92658 -46.41947 177.98468 71.03329 77.05976 28.53481 77.13337 
28.58272 12513599 77.1215 28.56141 77.12175 28.56176 77.12207 28.56219 77.12212 
28.56226 77.12219 28.56234 77.12282 28.56316 77.12287 28.56322 77.12307 
28.56339 77.12287 28.5636 77.12284 28.56365 77.1228 28.56376 77.12233 28.56627 
77.12226 28.56627 77.1222 28.56628 77.12214 28.56631 77.1221 28.56634 77.12206 
28.56639 77.12204 28.56644 77.12203 28.56652 77.12206 28.56658 77.12212 
28.56662 77.12219 28.5 77.12226 28.56667 77.1218 28.56885 77.12151 28.57031 
77.12123 28.57168 77.12115 28.57209 77.12109 28.57244 77.12107 28.57264 
77.12106 28.57286 77.12108 28.57365 77.12095 28.57367 77.12004 28.5738 77.11988 
28.57384 77.1189 28.57414 77.1186 28.57422 77.11607 28.5749 77.11435 28.57538 
77.11281 28.57578 77.11264 28.57583 77.11218 28.57595 77.11142 28.57612 
77.11052 28.57635 77.10954 28.57661 77.10865 28.57688 77.10758 28.57721 
77.10677 28.57745 77.10638 28.57756 77.10624 28.57758 77.10611 28.57759 
77.10592 28.57758 77.10502 28.57748 77.10485 28.57748 77.10468 28.57749 
77.10452 28.57751 77.10347 28.57778 77.10314 28.57787 77.10214 28.57813 
77.10172 28.57825 77.10121 28.57838 77.10036 28.57862 77.09994 28.57875 77.0995 
28.57888 77.09914 28.57895 77.09893 28.57898 77.09815 28.57905 77.09797 
28.57908 77.09785 28.57911 77.09773 28.57915 77.09702 28.57949 77.09674 
28.57961 77.09646 28.5797 77.09428 28.58032 77.09383 28.58045 77.09365 28.58051 
77.09349 28.58057 77.09335 28.58065 77.09188 28.58173 77.09151 28.58201 
77.09107 28.58233 77.09064 28.58264 77.09053 28.58272 77.09035 28.58249 
77.09024 28.58231 77.08332 28.57421 77.07904 28.5692 77.07484 28.56428 77.0728 
28.56189 77.0727 28.56177 77.07287 28.56166 77.07192 28.56059 77.07182 28.56047 
77.07192 28.56011 77.07196 28.55998 77.07202 28.55979 77.07211 28.55966 
77.07224 28.55955 77.07247 28.55945 77.07282 28.55929 77.07366 28.55894 
77.07529 28.55827 77.07579 28.55806 77.0768 28.55764 77.07726 28.55739 77.07741 
28.55711 77.07742 28.55681 77.0771 28.55574 77.07665 28.55427 77.07662 28.55413 
77.07661 28.55397 77.07647 28.55398 77.07619 28.55325 77.0761 28.55312 77.07601 
28.55302 77.0759 28.55294 77.0758 28.55288 77.0757 28.55284 77.07558 28.55282 
77.07545 28.55282 77.07532 28.55284 77.0719 28.55354 77.07059 28.55379 77.07043 
28.55381 77.06918 28.55397 77.06855 28.55404 77.06836 28.55408 77.06821 
28.55412 77.06778 28.55429 77.06754 28.55439 77.06734 28.55448 77.06724 28.5545 
77.06713 28.5545 77.06702 28.55446 77.06693 28.55441 77.06681 28.5543 77.0666 
28.55405 77.06653 28.55396 77.06609 28.55351 77.06508 28.55233 77.06446 
28.55161 77.06369 28.55069 77.06271 28.54953 77.06202 28.54874 77.05995 
28.54635 77.05976 28.54614 77.06068 28.54577 77.06161 28.54545 77.0625 28.5452 
77.06347 28.54496 77.06444 28.5447 77.0678 28.54388 77.06992 28.54338 77.07028 
28.54333 77.07133 28.54

Re: [Geoserver-users] Geoserver WFS version

2013-11-19 Thread Rahkonen Jukka
Hi,

I believe that you could save a lot of time by installing first some well 
behaving WFS-T client and study how it is doing WSF-T.  Kosmo GIS 3.0 is great 
with its filter wizard but QGIS is usable as well and there are others.  
Install some logging http proxy server to record the traffic between the client 
and Geoserver.  I have been using Fiddler 2 but there must be others.  At least 
when you have that proxy running you will be able to capture the whole XML 
messages and use them as annexes and make detailed questions which can perhaps 
be answered on this list.

-Jukka Rahkonen-

adityakumar529 wrote:

Dear Users, I am working with WFS-T for transaction. I am passing a WFS layer 
with version 1.1.0 but unfortunately the layer is not coming on the map. When I 
change the version of the WFS from 1.1.0 to 1.0.0 we find the layer is properly 
coming on the map. Following is the XML request that I am getting with WFS 
1.1.0 -154.92658 -46.41947 177.98468 71.03329 77.05976 28.53481 77.13337 
28.58272 12513599 77.1215 28.56141 77.12175 28.56176 77.12207 28.56219 77.12212 
28.56226 77.12219 28.56234 77.12282 28.56316 77.12287 28.56322 77.12307 
28.56339 77.12287 28.5636 77.12284 28.56365 77.1228 28.56376 77.12233 28.56627 
77.12226 28.56627 77.1222 28.56628 77.12214 28.56631 77.1221 28.56634 77.12206 
28.56639 77.12204 28.56644 77.12203 28.56652 77.12206 28.56658 77.12212 
28.56662 77.12219 28.5 77.12226 28.56667 77.1218 28.56885 77.12151 28.57031 
77.12123 28.57168 77.12115 28.57209 77.12109 28.57244 77.12107 28.57264 
77.12106 28.57286 77.12108 28.57365 77.12095 28.57367 77.12004 28.5738 77.11988 
28.57384 77.1189 28.57414 77.1186 28.57422 77.11607 28.5749 77.11435 28.57538 
77.11281 28.57578 77.11264 28.57583 77.11218 28.57595 77.11142 28.57612 
77.11052 28.57635 77.10954 28.57661 77.10865 28.57688 77.10758 28.57721 
77.10677 28.57745 77.10638 28.57756 77.10624 28.57758 77.10611 28.57759 
77.10592 28.57758 77.10502 28.57748 77.10485 28.57748 77.10468 28.57749 
77.10452 28.57751 77.10347 28.57778 77.10314 28.57787 77.10214 28.57813 
77.10172 28.57825 77.10121 28.57838 77.10036 28.57862 77.09994 28.57875 77.0995 
28.57888 77.09914 28.57895 77.09893 28.57898 77.09815 28.57905 77.09797 
28.57908 77.09785 28.57911 77.09773 28.57915 77.09702 28.57949 77.09674 
28.57961 77.09646 28.5797 77.09428 28.58032 77.09383 28.58045 77.09365 28.58051 
77.09349 28.58057 77.09335 28.58065 77.09188 28.58173 77.09151 28.58201 
77.09107 28.58233 77.09064 28.58264 77.09053 28.58272 77.09035 28.58249 
77.09024 28.58231 77.08332 28.57421 77.07904 28.5692 77.07484 28.56428 77.0728 
28.56189 77.0727 28.56177 77.07287 28.56166 77.07192 28.56059 77.07182 28.56047 
77.07192 28.56011 77.07196 28.55998 77.07202 28.55979 77.07211 28.55966 
77.07224 28.55955 77.07247 28.55945 77.07282 28.55929 77.07366 28.55894 
77.07529 28.55827 77.07579 28.55806 77.0768 28.55764 77.07726 28.55739 77.07741 
28.55711 77.07742 28.55681 77.0771 28.55574 77.07665 28.55427 77.07662 28.55413 
77.07661 28.55397 77.07647 28.55398 77.07619 28.55325 77.0761 28.55312 77.07601 
28.55302 77.0759 28.55294 77.0758 28.55288 77.0757 28.55284 77.07558 28.55282 
77.07545 28.55282 77.07532 28.55284 77.0719 28.55354 77.07059 28.55379 77.07043 
28.55381 77.06918 28.55397 77.06855 28.55404 77.06836 28.55408 77.06821 
28.55412 77.06778 28.55429 77.06754 28.55439 77.06734 28.55448 77.06724 28.5545 
77.06713 28.5545 77.06702 28.55446 77.06693 28.55441 77.06681 28.5543 77.0666 
28.55405 77.06653 28.55396 77.06609 28.55351 77.06508 28.55233 77.06446 
28.55161 77.06369 28.55069 77.06271 28.54953 77.06202 28.54874 77.05995 
28.54635 77.05976 28.54614 77.06068 28.54577 77.06161 28.54545 77.0625 28.5452 
77.06347 28.54496 77.06444 28.5447 77.0678 28.54388 77.06992 28.54338 77.07028 
28.54333 77.07133 28.54319 77.07164 28.54313 77.07705 28.54191 77.07848 
28.54163 77.07884 28.54156 77.07961 28.54139 77.08006 28.54127 77.08053 
28.54113 77.08122 28.54088 77.08194 28.5406 77.08308 28.54017 77.084 28.53987 
77.08498 28.5396 77.08564 28.53944 77.08739 28.53911 77.08848 28.53889 77.08867 
28.53885 77.08887 28.53882 77.09005 28.53872 77.09037 28.53871 77.09078 
28.53867 77.09121 28.53859 77.09214 28.5384 77.09218 28.53837 77.09221 28.53834 
77.09223 28.53831 77.09234 28.53808 77.09268 28.53802 77.0997 28.53674 77.10239 
28.53626 77.10443 28.53594 77.10507 28.5358 77.10658 28.53544 77.1073 28.53527 
77.10899 28.53481 77.10946 28.53481 77.10967 28.53482 77.10988 28.53487 
77.11029 28.53494 77.11047 28.53498 77.11464 28.53713 77.1151 28.53741 77.11529 
28.53754 77.11543 28.53765 77.11556 28.53774 77.11566 28.53784 77.11585 
28.53803 77.11599 28.53821 77.11613 28.5384 77.11618 28.53847 77.11631 28.53872 
77.11658 28.53928 77.11663 28.53956 77.1168 28.54003 77.1169 28.54029 77.11733 
28.54125 77.1177 28.54209 77.11793 28.54262 77.11796 28.54297 77.11789 28.54318 
77.11776 28.54333 77.11767 28.54344 77.11755 28.54359 77.11748 28.54369 
77.11703 28.54378 77.11629 28.54393 77.11594 28.54402 77

[Geoserver-users] Weblogic 10.3 / GeoServer 2.4.1

2013-11-19 Thread NORMAN MANN
Hi,
 
Has anybody managed to get GeoServer 2.4.1 working on Weblogic 10.3?
 
I think there are various classloading conflicts going on, and would appreciate 
some help resolving them.
 
For example, out of the box I get errors similar to the following.
 
Constructor threw exception; nested exception is java.lang.NoSuchMethodError: 
org.apache.commons.io.FileUtils.write(Ljava/io/File;Ljava/lang/CharSequence;)V
    at 
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275)
    at 
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:104)
    at 
org.springframework.beans.factory.support.ConstructorResolver.resolveConstructorArguments(ConstructorResolver.java:495)
    at 
org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:162)
    at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:925)
    Truncated. see log file for complete stacktrace
 
If I configure weblogic to "prefer" web-inf/lib classes (by adding 
true into weblogic.xml) I get 
errors simiar to the following.
 
Caused By: java.lang.ClassCastException: 
weblogic.xml.jaxp.RegistryDocumentBuilderFactory cannot be cast to 
javax.xml.parsers.DocumentBuilderFactory
    at javax.xml.parsers.DocumentBuilderFactory.newInstance(Unknown Source)
    at 
org.springframework.beans.factory.xml.DefaultDocumentLoader.createDocumentBuilderFactory(DefaultDocumentLoader.java:89)
    at 
org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:70)
    at 
org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:388)
    at 
org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)
    Truncated. see log file for complete stacktrace
 
If I try to only prefer certain packages by doing something like this in 
Weblogic XML
 
   
    org.apache.*
    org.springframework.*
    
 
Then starting the geoserver application within weblogic takes a long time (10 
minutes?) then eventually runs out of memory.
 
 
weblogic.application.ModuleException: PermGen space
    at 
weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1522)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
    at 
weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at 
weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at 
weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    Truncated. see log file for complete stacktrace

The reason I am trying to upgrade GeoServer is because version 2.1.1 security 
doesn't seem to work. I have tried various things, but seem to get a 404 
returned because there is no geoserver/accessDenied.jsp. This seems to happen 
consistently. On each application start, I get one 401 returned, then from then 
on (even if correct credentials are supplied) I get a 404. No more 401's are 
returned on any browser, on my desktop! Just a constant 404 . Any pointers on 
that would be appreciated too.
 
Thanks in advance,
 
Norman--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Geoserver WFS version

2013-11-19 Thread adityakumar529
Dear Users,I am working with WFS-T for transaction. I am passing a WFS
layer with version 1.1.0 but unfortunately the layer is not coming on the
map. When I change the version of the WFS from 1.1.0 to 1.0.0 we find the
layer is properly coming on the map.Following is the XML request that  I am
getting with WFS 1.1.0-154.92658 -46.41947177.98468 71.0332977.05976
28.5348177.13337 28.582721251359977.1215 28.56141 77.12175 28.56176 77.12207
28.56219 77.12212 28.56226 77.12219 28.56234 77.12282 28.56316 77.12287
28.56322 77.12307 28.56339 77.12287 28.5636 77.12284 28.56365 77.1228
28.56376 77.12233 28.56627 77.12226 28.56627 77.1222 28.56628 77.12214
28.56631 77.1221 28.56634 77.12206 28.56639 77.12204 28.56644 77.12203
28.56652 77.12206 28.56658 77.12212 28.56662 77.12219 28.5 77.12226
28.56667 77.1218 28.56885 77.12151 28.57031 77.12123 28.57168 77.12115
28.57209 77.12109 28.57244 77.12107 28.57264 77.12106 28.57286 77.12108
28.57365 77.12095 28.57367 77.12004 28.5738 77.11988 28.57384 77.1189
28.57414 77.1186 28.57422 77.11607 28.5749 77.11435 28.57538 77.11281
28.57578 77.11264 28.57583 77.11218 28.57595 77.11142 28.57612 77.11052
28.57635 77.10954 28.57661 77.10865 28.57688 77.10758 28.57721 77.10677
28.57745 77.10638 28.57756 77.10624 28.57758 77.10611 28.57759 77.10592
28.57758 77.10502 28.57748 77.10485 28.57748 77.10468 28.57749 77.10452
28.57751 77.10347 28.57778 77.10314 28.57787 77.10214 28.57813 77.10172
28.57825 77.10121 28.57838 77.10036 28.57862 77.09994 28.57875 77.0995
28.57888 77.09914 28.57895 77.09893 28.57898 77.09815 28.57905 77.09797
28.57908 77.09785 28.57911 77.09773 28.57915 77.09702 28.57949 77.09674
28.57961 77.09646 28.5797 77.09428 28.58032 77.09383 28.58045 77.09365
28.58051 77.09349 28.58057 77.09335 28.58065 77.09188 28.58173 77.09151
28.58201 77.09107 28.58233 77.09064 28.58264 77.09053 28.58272 77.09035
28.58249 77.09024 28.58231 77.08332 28.57421 77.07904 28.5692 77.07484
28.56428 77.0728 28.56189 77.0727 28.56177 77.07287 28.56166 77.07192
28.56059 77.07182 28.56047 77.07192 28.56011 77.07196 28.55998 77.07202
28.55979 77.07211 28.55966 77.07224 28.55955 77.07247 28.55945 77.07282
28.55929 77.07366 28.55894 77.07529 28.55827 77.07579 28.55806 77.0768
28.55764 77.07726 28.55739 77.07741 28.55711 77.07742 28.55681 77.0771
28.55574 77.07665 28.55427 77.07662 28.55413 77.07661 28.55397 77.07647
28.55398 77.07619 28.55325 77.0761 28.55312 77.07601 28.55302 77.0759
28.55294 77.0758 28.55288 77.0757 28.55284 77.07558 28.55282 77.07545
28.55282 77.07532 28.55284 77.0719 28.55354 77.07059 28.55379 77.07043
28.55381 77.06918 28.55397 77.06855 28.55404 77.06836 28.55408 77.06821
28.55412 77.06778 28.55429 77.06754 28.55439 77.06734 28.55448 77.06724
28.5545 77.06713 28.5545 77.06702 28.55446 77.06693 28.55441 77.06681
28.5543 77.0666 28.55405 77.06653 28.55396 77.06609 28.55351 77.06508
28.55233 77.06446 28.55161 77.06369 28.55069 77.06271 28.54953 77.06202
28.54874 77.05995 28.54635 77.05976 28.54614 77.06068 28.54577 77.06161
28.54545 77.0625 28.5452 77.06347 28.54496 77.06444 28.5447 77.0678 28.54388
77.06992 28.54338 77.07028 28.54333 77.07133 28.54319 77.07164 28.54313
77.07705 28.54191 77.07848 28.54163 77.07884 28.54156 77.07961 28.54139
77.08006 28.54127 77.08053 28.54113 77.08122 28.54088 77.08194 28.5406
77.08308 28.54017 77.084 28.53987 77.08498 28.5396 77.08564 28.53944
77.08739 28.53911 77.08848 28.53889 77.08867 28.53885 77.08887 28.53882
77.09005 28.53872 77.09037 28.53871 77.09078 28.53867 77.09121 28.53859
77.09214 28.5384 77.09218 28.53837 77.09221 28.53834 77.09223 28.53831
77.09234 28.53808 77.09268 28.53802 77.0997 28.53674 77.10239 28.53626
77.10443 28.53594 77.10507 28.5358 77.10658 28.53544 77.1073 28.53527
77.10899 28.53481 77.10946 28.53481 77.10967 28.53482 77.10988 28.53487
77.11029 28.53494 77.11047 28.53498 77.11464 28.53713 77.1151 28.53741
77.11529 28.53754 77.11543 28.53765 77.11556 28.53774 77.11566 28.53784
77.11585 28.53803 77.11599 28.53821 77.11613 28.5384 77.11618 28.53847
77.11631 28.53872 77.11658 28.53928 77.11663 28.53956 77.1168 28.54003
77.1169 28.54029 77.11733 28.54125 77.1177 28.54209 77.11793 28.54262
77.11796 28.54297 77.11789 28.54318 77.11776 28.54333 77.11767 28.54344
77.11755 28.54359 77.11748 28.54369 77.11703 28.54378 77.11629 28.54393
77.11594 28.54402 77.11572 28.54407 77.11439 28.54439 77.11413 28.54445
77.11388 28.5445 77.1137 28.54408 77.11305 28.54206 77.11062 28.54266
77.11127 28.54476 77.1115 28.54507 77.10834 28.54579 77.10802 28.54587
77.10771 28.54592 77.10736 28.54611 77.1071 28.54626 77.10676 28.54647
77.10656 28.5466 77.10633 28.54678 77.10606 28.54704 77.10578 28.54736
77.10553 28.5477 77.10529 28.5482 77.10512 28.54846 77.10486 28.54893
77.10469 28.54933 77.10458 28.54958 77.10375 28.55149 77.10348 28.55209
77.10312 28.55291 77.10302 28.55312 77.1029 28.55333 77.10272 28.55358
77.10256 28.55379 77.1023 28.55407 77.10214 28.55422 77.10211 28.55443
77.1021 28.55456 77.10213 28.55472 77.10441 28.55421 77.1052

Re: [Geoserver-users] Possible Image Mosaic time bug

2013-11-19 Thread Daniele Romagnoli
I'll take a look on it.
Thanks

==
Our support, Your Success! Visit http://opensdi.geo-solutions.it for more
information.
==
Ing. Daniele Romagnoli
Senior Software Engineer

GeoSolutions S.A.S.
Via Poggio alle Viti 1187
55054  Massarosa (LU)
Italy
phone: +39 0584 962313
fax:  +39 0584 1660272

http://www.geo-solutions.it
http://twitter.com/geosolutions_it

---


On Tue, Nov 19, 2013 at 10:03 AM, Ian Turton  wrote:

> Documentation PR at https://github.com/geoserver/geoserver/pull/402 if
> some one wants to review it.
>
> Ian
>
>
> On 18 November 2013 14:23, Ian Turton  wrote:
>
>> Thanks for your help guys - I knew this had to be possible. For anyone
>> who stumbles on this thread latter the correct syntax for the sorting param
>> is varname (ingestion) D (that is space D) - I'll try to update the docs
>> later as there is currently no mention of the sorting param.
>>
>> [image: Inline images 1]
>>
>> Thanks
>>
>> Ian
>>
>>
>> On 18 November 2013 13:50, Daniele Romagnoli <
>> daniele.romagn...@geo-solutions.it> wrote:
>>
>>> Hi guys,
>>> There is a SORTING parameter in the MosaicConfiguration exposed by the
>>> GS GUI which should do that.
>>>
>>> Cheers,
>>> Daniele
>>>
>>> ==
>>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>>> more information.
>>> ==
>>> Ing. Daniele Romagnoli
>>> Senior Software Engineer
>>>
>>>
>>> GeoSolutions S.A.S.
>>> Via Poggio alle Viti 1187
>>> 55054  Massarosa (LU)
>>> Italy
>>> phone: +39 0584 962313
>>> fax:  +39 0584 1660272
>>>
>>> http://www.geo-solutions.it
>>> http://twitter.com/geosolutions_it
>>>
>>> ---
>>>
>>>
>>> On Mon, Nov 18, 2013 at 2:41 PM, Andrea Aime <
>>> andrea.a...@geo-solutions.it> wrote:
>>>
 On Mon, Nov 18, 2013 at 2:25 PM, Ian Turton  wrote:

>
> On 18 Nov 2013 13:21, "Andrea Aime" 
> wrote:
> >
> > Hi Ian,
> > did you enable the time dimension in the "dimensions" tab of the
> layer configuration?
> >
>
> Yes and I've been experimenting with the presentation choice but it
> seems to make no difference.
>

 Sorry, trying to help but really doing something else, so I may be
 missing something.
 The black areas you have in the original images, are they really
 transparent?
 If so I guess the code it's working as expected, it's mosaicking on all
 the granules
 in the time range you specified, with no particular order.

 The notion of "give me the most recent in the range" is understandable,
 but I don't believe
 it's part of the standard, and maybe not always desirable either.
 That said, we have a variable to control how many granules are
 used, MAX_ALLOWED_TILES,
 which can be set to 1, and then you can use SORT_BY, where you can set
 the value
 "sortVariable" or "sortVariable,A", "sortVariable,D" to control the
 sorting order.

 I just don't remember if they are both exposed by the GeoServer UI

 Cheers
 Andrea

 --
 ==
 Our support, Your Success! Visit http://opensdi.geo-solutions.it for
 more information.
 ==

 Ing. Andrea Aime
 @geowolf
 Technical Lead

 GeoSolutions S.A.S.
 Via Poggio alle Viti 1187
 55054  Massarosa (LU)
 Italy
 phone: +39 0584 962313
 fax: +39 0584 1660272
 mob: +39  339 8844549

 http://www.geo-solutions.it
 http://twitter.com/geosolutions_it

 ---


 --
 DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
 OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
 Free app hosting. Or install the open source package on any LAMP server.
 Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!

 http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
 ___
 Geoserver-users mailing list
 Geoserver-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/geoserver-users


>>>
>>
>>
>> --
>> Ian Turton
>>
>
>
>
> --
> Ian Turton
>
<>--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Possible Image Mosaic time bug

2013-11-19 Thread Ian Turton
Documentation PR at https://github.com/geoserver/geoserver/pull/402 if some
one wants to review it.

Ian


On 18 November 2013 14:23, Ian Turton  wrote:

> Thanks for your help guys - I knew this had to be possible. For anyone who
> stumbles on this thread latter the correct syntax for the sorting param is
> varname (ingestion) D (that is space D) - I'll try to update the docs later
> as there is currently no mention of the sorting param.
>
> [image: Inline images 1]
>
> Thanks
>
> Ian
>
>
> On 18 November 2013 13:50, Daniele Romagnoli <
> daniele.romagn...@geo-solutions.it> wrote:
>
>> Hi guys,
>> There is a SORTING parameter in the MosaicConfiguration exposed by the GS
>> GUI which should do that.
>>
>> Cheers,
>> Daniele
>>
>> ==
>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>> more information.
>> ==
>> Ing. Daniele Romagnoli
>> Senior Software Engineer
>>
>>
>> GeoSolutions S.A.S.
>> Via Poggio alle Viti 1187
>> 55054  Massarosa (LU)
>> Italy
>> phone: +39 0584 962313
>> fax:  +39 0584 1660272
>>
>> http://www.geo-solutions.it
>> http://twitter.com/geosolutions_it
>>
>> ---
>>
>>
>> On Mon, Nov 18, 2013 at 2:41 PM, Andrea Aime <
>> andrea.a...@geo-solutions.it> wrote:
>>
>>> On Mon, Nov 18, 2013 at 2:25 PM, Ian Turton  wrote:
>>>

 On 18 Nov 2013 13:21, "Andrea Aime" 
 wrote:
 >
 > Hi Ian,
 > did you enable the time dimension in the "dimensions" tab of the
 layer configuration?
 >

 Yes and I've been experimenting with the presentation choice but it
 seems to make no difference.

>>>
>>> Sorry, trying to help but really doing something else, so I may be
>>> missing something.
>>> The black areas you have in the original images, are they really
>>> transparent?
>>> If so I guess the code it's working as expected, it's mosaicking on all
>>> the granules
>>> in the time range you specified, with no particular order.
>>>
>>> The notion of "give me the most recent in the range" is understandable,
>>> but I don't believe
>>> it's part of the standard, and maybe not always desirable either.
>>> That said, we have a variable to control how many granules are
>>> used, MAX_ALLOWED_TILES,
>>> which can be set to 1, and then you can use SORT_BY, where you can set
>>> the value
>>> "sortVariable" or "sortVariable,A", "sortVariable,D" to control the
>>> sorting order.
>>>
>>> I just don't remember if they are both exposed by the GeoServer UI
>>>
>>> Cheers
>>> Andrea
>>>
>>> --
>>> ==
>>> Our support, Your Success! Visit http://opensdi.geo-solutions.it for
>>> more information.
>>> ==
>>>
>>> Ing. Andrea Aime
>>> @geowolf
>>> Technical Lead
>>>
>>> GeoSolutions S.A.S.
>>> Via Poggio alle Viti 1187
>>> 55054  Massarosa (LU)
>>> Italy
>>> phone: +39 0584 962313
>>> fax: +39 0584 1660272
>>> mob: +39  339 8844549
>>>
>>> http://www.geo-solutions.it
>>> http://twitter.com/geosolutions_it
>>>
>>> ---
>>>
>>>
>>> --
>>> DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
>>> OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
>>> Free app hosting. Or install the open source package on any LAMP server.
>>> Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
>>>
>>> http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
>>> ___
>>> Geoserver-users mailing list
>>> Geoserver-users@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>>
>>>
>>
>
>
> --
> Ian Turton
>



-- 
Ian Turton
<>--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Fwd: WPS Implementation using GeoServer

2013-11-19 Thread Thomas.Wanderer
We're using Geoserver WPS as we wanted to reduce further dependencies on 3rd 
party projects and as we already used Geoserver the decision was easy. I 
believe you can do a lot of cool things when the writing processes in Java as 
they are tightly integrated. But we instead chose to use the Python scripting 
extension which opens a wide world of opportunities (for instance integrating 
our existing tools) in a very dynamic approach. Unfortunately the WPS/Python 
"bridge" still lacks some features.

I would say it all depends what you're planning to do and what you might 
already use...

Von: Anunay Sinha [mailto:anunay.sinh...@gmail.com]
Gesendet: Montag, 18. November 2013 15:55
An: geoserver-users@lists.sourceforge.net
Betreff: [Geoserver-users] Fwd: WPS Implementation using GeoServer


-- Forwarded message --
From: Anunay Sinha mailto:anunay.sinh...@gmail.com>>
Date: Mon, Nov 18, 2013 at 8:21 PM
Subject: WPS Implementation using GeoServer
To: 
geoserver-users@lists.sourceforge.net

We have a requirement where in we need to expose our analysis to a web based 
GIS system. We decided to do it using WPS. I used WPS extension to write a test 
code and it does fine.
However I have general question about WPS (This may not be the best platform 
but still.)
What is a difference between different WPS Frameworks out there
1. GeoServer
2. GeoTools
3. Deegree
4 52North
5 ZooWPS

I am not sure which one to choose and what are things I need to consider when 
making this choice.
Also if you can let me know where GeoServer WPS stands when compared with the 
rest (My thinking here is since they all provide OGC WPS Implementation they 
all should be doing pretty much the same thing, but that is a wild thought)

Looking for your help

Anunay



--
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users