[Geoserver-users] Load WMS Layer from a Remote Server

2015-04-08 Thread Shadin
Is it possible to serve external WMS layers from remote server? I mean I have an application on offline laptop and I'd like to serve some WMS layers from a remote machine. I requested these layers via public IP of its machine and I could get getFeatureInfo successfully, but when it comes to load th

Re: [Geoserver-users] Caching with Response Headers Settings

2014-05-08 Thread Shadin
okay it works now. turn out i mixed up the two methods! Thanks all. -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Caching-with-Response-Headers-Settings-tp5138490p5139189.html Sent from the GeoServer - User mailing list archive at Nabble.com.

Re: [Geoserver-users] Caching with Response Headers Settings

2014-05-06 Thread Shadin
Thanks Jonathan! actually that load is high every 15 min. as you see the "expires" header is being set but the tiles don't get updated after they're expired. i thought i had to do something to activate that but still not sure what to do. -- View this message in context: http://osgeo-org.1560.x6

Re: [Geoserver-users] Caching with Response Headers Settings

2014-05-06 Thread Shadin
Thank you! I get it now. So do you think scheduling truncate request every 15 min (since I'll set the headers timeout to 15 min) will do the job? will it be expensive for the or something? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Caching-with-Response-Headers-Settin

[Geoserver-users] Caching with Response Headers Settings

2014-05-04 Thread Shadin
\in this post http://osgeo-org.1560.x6.nabble.com/Terminate-GeoWebCache-REST-API-Request-td5137944.html I was trying to find a method to cache one layer that its data is updated every 2 hours in the DB. What I've done is: 1. enable direct integration with GeoServer WMS. 2. ass tiled=true paramet

Re: [Geoserver-users] Terminate GeoWebCache REST API Request

2014-05-04 Thread Shadin
okay what happened is that the layer is cached like forever. id doesn't update each 2 hours. any idea? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Terminate-GeoWebCache-REST-API-Request-tp5137944p5138464.html Sent from the GeoServer - User mailing list archive at Nabble

Re: [Geoserver-users] Terminate GeoWebCache REST API Request

2014-05-04 Thread Shadin
defaults > > Do you think it will be useful in my case? > Hi Shadin, >If it is a layergroup then all layers within the group need to have > that > enabled and a value set, otherwise there are no headers set. > > This layer for example has a cache set for

Re: [Geoserver-users] Terminate GeoWebCache REST API Request

2014-04-30 Thread Shadin
Hi Kevin, Thank you I get it now. tho I'm considering using 'Response Cache Headers' as in Jonathan's suggestion. Have you used it before? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Terminate-GeoWebCache-REST-API-Request-tp5137944p5138060.html Sent from the GeoSer

Re: [Geoserver-users] Terminate GeoWebCache REST API Request

2014-04-30 Thread Shadin
Hi Jonathan, Thanks for this tip! yes I thought it would be massive bit didn't know there is another option. So I just simply sit the timeout to 2 hrs and serve the layers using WMS as usual? because i did that turning on ‘Response Cache Headers’ and look at the HTTP response header on the client

[Geoserver-users] Terminate GeoWebCache REST API Request

2014-04-30 Thread Shadin
In my web application, i wanted a service to cache updated data using geowebche. so i worked on seeding tiles automatically with GeoWebCache as in this post: http://gis.stackexchange.com/questions/87728/custom-time-interval-for-geowebcache/87804#87804 I see that the "Disk Used" of the layer in "Ti

Re: [Geoserver-users] Pink Tiles When Using WIFI Network

2013-06-25 Thread Shadin
You were right. The internet connection was flaky. Thank you -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Pink-Tiles-When-Using-WIFI-Network-tp5062032p5062220.html Sent from the GeoServer - User mailing list archive at Nabble.com. ---

[Geoserver-users] Pink Tiles When Using WIFI Network

2013-06-25 Thread Shadin
Hello all, I am loading my maps through GeoServer using WMS in openlayers. Everything is going well. However sometimes when I load the maps using wifi network i get pink tiles generated. Can anyone explain me why? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Pink-Tiles

[Geoserver-users] Staring issue with WMS and public IP

2013-05-20 Thread Shadin
I'm facing a strange problem with my application (Openlayers). It works with private IP but not with public IP !! Everything was fine when I was using WFS/Vector. but since I switch to WMS, problem showed up!! seems like it couldn't retrieve layers from Geoserver. Locally, it's okay but using pupli

[Geoserver-users] SLD based selection on WMS layers - How to set the new style of clicked point?

2013-05-05 Thread Shadin
I'm trying to follow this example: http://openlayers.org/dev/examples/SLDSelect.html When I click on the point, its color should be changed, here is a piece of my code: control = new OpenLayers.Control.SLDSelect( OpenLayers.Handler.Click, {

[Geoserver-users] Having map offline / Setup OSM Tile server in GeoServer

2013-01-19 Thread Shadin
I'm working to make my application running offline, and since I use Google maps as my base layer. I have to use something alternative. I've read that the best way is to setup my own OenStreetMap tile server. Is that right? if yes, then where can I find the best explanation to accomplish that with

Re: [Geoserver-users] GeoServer converting timestamp with time zone

2013-01-19 Thread Shadin
you can fix this bt adding a default timezone. For Tomcat it's the file [/etc/defaults/tomcat6] The default CATALINA_OPTS might look like this: JAVA_OPTS="-Djava.awt.headless=true -Xmx128M -server" you should add: JAVA_OPTS="-Djava.awt.headless=true -Xmx128M -server -Duser.timezone=GMT" or wh

Re: [Geoserver-users] How to export vector features to file?

2012-09-19 Thread Shadin
*Layer features are not being retrieved.. I got empty grid in window. would anyone take a look and let me know if I miss something ?* gridPanel = new Ext.grid.GridPanel({ title: "Feature Grid", store: new GeoExt.data.FeatureStore({ fields: [ {name: "id"

Re: [Geoserver-users] How to export vector features to file?

2012-09-18 Thread Shadin
Thanks a lot Imran & Cmaul. but I have another issue, I got this error: *undefined is not a function * when I use: *proxy: new GeoExt.data.ProtocolProxy* Is that because I use GeoExt 2 ? because I also tried: *proxy: new GeoExt.data.proxy.Protocol* following the documentation http://geoext.github

[Geoserver-users] How to export vector features to file?

2012-09-16 Thread Shadin
Hello everyone, Is there any way to export vector features (current view) as a grid to a list/file ? I found this: http://workshops.opengeo.org/geoext/wfs/grid.html but it will export all layer features, not only what in view -- View this message in context: http://osgeo-org.1560.n6.nabble.c

Re: [Geoserver-users] pass viewparams in vector layer + wfs protocol

2011-12-10 Thread Shadin
Thanks for the hint but unfortunately I'm using OpenLayers which do not support WPS yet -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/pass-viewparams-in-vector-layer-wfs-protocol-tp7080901p7081064.html Sent from the GeoServer - User mailing list archive at Nabble.com. -

[Geoserver-users] pass viewparams in vector layer + wfs protocol

2011-12-10 Thread Shadin
is there any way to pass view params in vector layer + wfs protocol ? am using GeoServer + OpenLayers -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/pass-viewparams-in-vector-layer-wfs-protocol-tp7080901p7080901.html Sent from the GeoServer - User mailing list archive at

Re: [Geoserver-users] GeoServer on Tomcat 7

2011-11-24 Thread Shadin
any response ? -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/GeoServer-on-Tomcat-7-tp7024387p7028464.html Sent from the GeoServer - User mailing list archive at Nabble.com. -- All the data conti

[Geoserver-users] GeoServer on Tomcat 7

2011-11-23 Thread Shadin
hi list just wanna be sure if this version is working fine with Tomcat 7 http://geoserver.org/display/GEOS/GeoServer+2.1-RC4 -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/GeoServer-on-Tomcat-7-tp7024387p7024387.html Sent from the GeoServer - User mailing list archive

[Geoserver-users] GeoExplorer

2011-10-27 Thread Shadin
Hi what do you think guys of using "GeoExplorer" to build my map application instead of writing the code ? -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/GeoExplorer-tp6937368p6937368.html Sent from the GeoServer - User mailing list archive at Nabble.com. -