Re: [Geoserver-users] Openlayers's resolutions and Geoserver's GWC not aligned

2013-07-12 Thread islanis
Sorry i forgot the Geoserver's log that show the error, here it is
//**
2013-07-12 15:11:36,203 INFO [geoserver.gwc] - Error dispatching tile  
request to GeoServer
org.geowebcache.grid.OutsideCoverageException: Coverage  
[minx,miny,maxx,maxy] is [18, 19, 18, 19, 5], index [x,y,z] is [17,  
20, 5]
at org.geowebcache.grid.GridSubset.checkCoverage(GridSubset.java:117)
at  
org.geoserver.gwc.layer.GeoServerTileLayer.getTile(GeoServerTileLayer.java:432)
at org.geoserver.gwc.GWC.dispatch(GWC.java:626)
at  
org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:82)
at  
org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:53)
at  
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
at  
org.geoserver.ows.util.RequestObjectLogger.invoke(RequestObjectLogger.java:54)
at  
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
at  
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
at $Proxy25.getMap(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.geoserver.ows.Dispatcher.execute(Dispatcher.java:774)
at 
org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:272)
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:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at  
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1093)
at  
org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:27)
at  
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
at  
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:74)
at  
org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:45)
at  
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
at  
org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:49)
at  
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
at  
org.vfny.geoserver.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
at  
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
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.FilterChainPr

[Geoserver-users] Openlayers's resolutions and Geoserver's GWC not aligned

2013-07-12 Thread islanis
Hello people, i got a problem, i have Geoserver and GWC that is into  
geoserver working together, but i think i have problems with  
resolutions that i use in openlayers, because without resolutions i  
can see the map great but the GWC dont work and with reolutions the  
GWC works but the maps apairs unaligned, and i dont know what to do,i  
need a way to construct the indicated reoslutions to my sistem, but i  
dont know how to do it,here are the codes.

//

bounds = new OpenLayers.Bounds(
  - 84.956, 19.825,
  - 74.132, 23.984
);

nav = new OpenLayers.Control.NavigationHistory(); var loadingpanel =  
new OpenLayers.Control.LoadingPanel();

controls = [
new OpenLayers.Control.Navigation(),
new OpenLayers.Control.PanZoom(),
new OpenLayers.Control.Attribution(),
new OpenLayers.Control.ScaleLine(),
new  
OpenLayers.Control.OverviewMap({mapOptions:{projection:"EPSG:4326",  
units:'degrees', maxExtent:bounds, numZoomLevels: 1}}),
new OpenLayers.Control.MousePosition(), loadingpanel,
nav
];
nav.activate();

options = {
  controls : controls,
  maxExtent : bounds,
  resolutions: [0.02197265625, 0.010986328125, 0.0054931640625,  
0.00274658203125, 0.001373291015625, 6.866455078125E-4,  
3.4332275390625E-4, 1.71661376953125E-4, 8.58306884765625E-5,  
4.291534423828125E-5, 2.1457672119140625E-5, 1.0728836059570312E-5,  
5.364418029785156E-6, 2.682209014892578E-6, 1.341104507446289E-6,  
6.705522537231445E-7, 3.3527612686157227E-7],

  //maxResolution : 0.02528125,
  projection : "EPSG:4326",
  units : 'degrees'
};

map = new OpenLayers.Map('map', options);


var capa = new OpenLayers.Layer.WMS(titulo, "http://"; + host +  
"/geoserver/une/wms",
{
   'layers' : nombCapa.replace('une:',''),
  transparent : true,
  format : 'image/png',
  STYLES : '',
  tiled : true,
  tilesOrigin : mapa.maxExtent.left + ',' + mapa.maxExtent.bottom
}
,
{
  buffer: 0,
   yx : {'EPSG:4326' : true},
   attribution : 'Facilitado por Geocuba',
   isBaseLayer : base,
   opacity : opacity,
   displayInLayerSwitcher : display,
  transitionEffect : 'resize',
  tileSize: new OpenLayers.Size(256,256)
}
);
mapa.addLayer(capa);
//--
i need help please, thanks to all


This message was sent using IMP, the Internet Messaging Program.


--

Este mensaje le ha llegado mediante el servicio de correo electronico que 
ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema 
Nacional de Salud. La persona que envia este correo asume el compromiso de usar 
el servicio a tales fines y cumplir con las regulaciones establecidas

Infomed: http://www.sld.cu/


--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Application schema and DWithin operator support ?

2013-07-12 Thread Rudy Commenge
Hi,

I would like to use "DWithin" operator on features built by the application
schema plugin.

Example :

http://www.opengis.net/wfs/2.0"; 
xmlns:gml="http://www.opengis.net/gml/3.2"; 
xmlns:fes="http://www.opengis.net/fes/2.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>



geometryProperty


-32.5 52 -31.5 53

200





So, "DWithin" operator is it fully supported by application schema plugin ?

Kind regards,

Rudy.
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] supported crs in wfs getCapabilities

2013-07-12 Thread Andrea Aime
On Fri, Jul 12, 2013 at 5:15 AM,  wrote:

>  Hi list,
>
> ** **
>
> Are we suppose to see the list of supported(others) crs in a wfs
> getcapabilities request cause I don’t see any on my.
>

The issue in WFS is that you have to list the supported projections on a
per feature type basis.
Clearly we cannot do like in WMS, we'd end up listing 5000 crs for every
feature type.
We'd need a list of crs to be advertised, either globally configured (like
the limited srs list in wms config)
or something specific to the layer

Both would require some work to be implemented

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

---
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Monitor plugin

2013-07-12 Thread carlo cancellieri
Mika,

Hi,
> Is the Geoserver monitor-plugin source code available? If it's, then
> where from?
>

Take a look here
https://github.com/geoserver/geoserver/tree/master/src/extension/monitor

Carlo Cancellieri

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

Dott. Carlo Cancellieri
@cancellieric
Software Engineer

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

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

---
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Monitor plugin

2013-07-12 Thread mika
Hi,
Is the Geoserver monitor-plugin source code available? If it's, then 
where from?

- mika -

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] supported crs in wfs getCapabilities

2013-07-12 Thread Rahkonen Jukka
Hi,

This has been asked and answered in February 
http://www.mail-archive.com/geoserver-users@lists.sourceforge.net/msg12938.html
You do not see the list of supported projections because Geoserver does not 
create such. However, all projections supported by Geoserver do work in 
GetFeature is reprojection from source to target system is possible.

http://www.mail-archive.com/geoserver-users@lists.sourceforge.net/msg12938.html

-Jukka Rahkonen-

Jonathan Moules wrote:

> Hi,
> I suspect it depends on the WFS version.
> For me:
> 1.0.0 doesn't have any CRS' at all listed in GetCapabiltiies.

> 1.1.0 and 2.0.0
> Every layer has a  and a  specified.

> Although I only have one CRS for all of our data though.

> Jonathan


On 12 July 2013 04:15, mailto:victor@csiro.au>> wrote:
Hi list,

Are we suppose to see the list of supported(others) crs in a wfs 
getcapabilities request cause I don’t see any on my.

Thanks

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users



This transmission is intended for the named addressee(s) only and may contain 
sensitive or protectively marked material up to RESTRICTED and should be 
handled accordingly. Unless you are the named addressee (or authorised to 
receive it for the addressee) you may not copy or use it, or disclose it to 
anyone else. If you have received this transmission in error please notify the 
sender immediately. All email traffic sent to or from us, including without 
limitation all GCSX traffic, may be subject to recording and/or monitoring in 
accordance with relevant legislation.

--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] supported crs in wfs getCapabilities

2013-07-12 Thread Jonathan Moules
Hi,
I suspect it depends on the WFS version.
For me:
1.0.0 doesn't have any CRS' at all listed in GetCapabiltiies.

1.1.0 and 2.0.0
Every layer has a  and a  specified.

Although I only have one CRS for all of our data though.

Jonathan


On 12 July 2013 04:15,  wrote:

>  Hi list,
>
> ** **
>
> Are we suppose to see the list of supported(others) crs in a wfs
> getcapabilities request cause I don’t see any on my.
>
> ** **
>
> Thanks
>
>
> --
> See everything from the browser to the database with AppDynamics
> Get end-to-end visibility with application monitoring from AppDynamics
> Isolate bottlenecks and diagnose root cause in seconds.
> Start your free trial of AppDynamics Pro today!
> http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
> ___
> Geoserver-users mailing list
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
>

-- 
This transmission is intended for the named addressee(s) only and may 
contain sensitive or protectively marked material up to RESTRICTED and 
should be handled accordingly. Unless you are the named addressee (or 
authorised to receive it for the addressee) you may not copy or use it, or 
disclose it to anyone else. If you have received this transmission in error 
please notify the sender immediately. All email traffic sent to or from us, 
including without limitation all GCSX traffic, may be subject to recording 
and/or monitoring in accordance with relevant legislation.
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Oddity - gwc GetCapabilties

2013-07-12 Thread Jonathan Moules
Thanks Michele,
Jira issue opened - http://jira.codehaus.org/browse/GEOS-5886
Jonathan


On 11 July 2013 08:50, Michele Beneventi  wrote:

> Hi Jonathan,
> I have observed the same behaviour with the gwc capabilities, while the
> others capabilities (WMTS,WMS-C,TMS) work fine.
> I tested this with a  clean installation of geoserver 2.3.3 under Apache
> Tomcat 7.0.37 (ubuntu 12.04 LTS)
>
> Cheers
> Michele
>
>
>
>
>
> On Tue, Jul 9, 2013 at 6:32 PM, Jonathan Moules <
> jonathanmou...@warwickshire.gov.uk> wrote:
>
>> Hi list,
>> On my "Service capabilities" list provided on the GeoServer homepage, the
>> top one is "GWC" which links to:
>>
>>
>> http://wppgeog3:8082/geoserver/ows?service=gwc&version=1.0.0&request=GetCapabilities
>>
>> However when I click it I get:
>> 
>> No such operation gwc 1.0.0 GetCapabilities
>> 
>>
>> Does anyone else have it, and does it work for them? What's it supposed
>> to do? I'm suspect it's a bug, but figured it's worth asking first.
>>
>> Cheers,
>> Jonathan
>>
>> This transmission is intended for the named addressee(s) only and may
>> contain sensitive or protectively marked material up to RESTRICTED and
>> should be handled accordingly. Unless you are the named addressee (or
>> authorised to receive it for the addressee) you may not copy or use it, or
>> disclose it to anyone else. If you have received this transmission in error
>> please notify the sender immediately. All email traffic sent to or from us,
>> including without limitation all GCSX traffic, may be subject to recording
>> and/or monitoring in accordance with relevant legislation.
>>
>> --
>> See everything from the browser to the database with AppDynamics
>> Get end-to-end visibility with application monitoring from AppDynamics
>> Isolate bottlenecks and diagnose root cause in seconds.
>> Start your free trial of AppDynamics Pro today!
>>
>> http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
>> ___
>> Geoserver-users mailing list
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>>
>

-- 
This transmission is intended for the named addressee(s) only and may 
contain sensitive or protectively marked material up to RESTRICTED and 
should be handled accordingly. Unless you are the named addressee (or 
authorised to receive it for the addressee) you may not copy or use it, or 
disclose it to anyone else. If you have received this transmission in error 
please notify the sender immediately. All email traffic sent to or from us, 
including without limitation all GCSX traffic, may be subject to recording 
and/or monitoring in accordance with relevant legislation.
--
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk___
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users