Problems with SLD generation using the <> operator
--------------------------------------------------

                 Key: GEOS-4464
                 URL: http://jira.codehaus.org/browse/GEOS-4464
             Project: GeoServer
          Issue Type: Bug
          Components: CSS
    Affects Versions: 2.1-RC2
            Reporter: Charles Galpin
            Assignee: Andrea Aime


If I just use the <> operator on it's own, it works fine. The SLD looks good 
and the layers display

[data_type <> 4] {
  stroke: #000000;
  stroke-width: 2;
}

But if I use the following SLD It generates odd looking SLD and the wms 
rendering fails with an exception

[data_type <> 4] {
  stroke: #000000;
  stroke-width: 2;
}

[data_type = 4] {
  stroke: #008000;
  stroke-width: 2;
}

The SLD generated is

<?xml version="1.0" encoding="UTF-8"?> <sld:UserStyle 
xmlns="http://www.opengis.net/sld"; xmlns:sld="http://www.opengis.net/sld"; 
xmlns:ogc="http://www.opengis.net/ogc"; xmlns:gml="http://www.opengis.net/gml";> 
<sld:Name>Default Styler</sld:Name> <sld:Title/> <sld:FeatureTypeStyle> 
<sld:Name>name</sld:Name> <sld:Rule> <ogc:Filter> <ogc:Or> 
<ogc:PropertyIsNotEqualTo> <ogc:PropertyName>data_type</ogc:PropertyName> 
<ogc:Literal>4</ogc:Literal> </ogc:PropertyIsNotEqualTo> <ogc:PropertyIsNull> 
<ogc:PropertyName>data_type</ogc:PropertyName> </ogc:PropertyIsNull> </ogc:Or> 
</ogc:Filter> <sld:LineSymbolizer> <sld:Stroke> <sld:CssParameter 
name="stroke-width">2</sld:CssParameter> </sld:Stroke> </sld:LineSymbolizer> 
</sld:Rule> <sld:Rule> <ogc:Filter> <ogc:And> <ogc:PropertyIsEqualTo> 
<ogc:PropertyName>data_type</ogc:PropertyName> <ogc:Literal>4</ogc:Literal> 
</ogc:PropertyIsEqualTo> <ogc:Or> <ogc:Equals> 
<ogc:PropertyName>data_type</ogc:PropertyName> <ogc:Literal>4</ogc:Literal> 
</ogc:Equals> <ogc:PropertyIsNull> 
<ogc:PropertyName>data_type</ogc:PropertyName> </ogc:PropertyIsNull> </ogc:Or> 
</ogc:And> </ogc:Filter> <sld:LineSymbolizer> <sld:Stroke> <sld:CssParameter 
name="stroke">#008000</sld:CssParameter> <sld:CssParameter 
name="stroke-width">2</sld:CssParameter> </sld:Stroke> </sld:LineSymbolizer> 
</sld:Rule> </sld:FeatureTypeStyle> </sld:UserStyle> 


And the rendering exception is

INFO   | jvm 1    | 2011/04/06 09:45:02 | 06 Apr 09:45:02 DEBUG 
[org.geotools.jdbc] - SELECT "data_type",CAST("the_geom".STSrid as VARCHAR) + 
':' + "the_geom".STAsText() as "the_geom" FROM "links_congestion" WHERE 
("the_geom".Filter(geometry::STGeomFromText('POLYGON ((-79.26932943061874 
38.125392999999995, -79.26932943061874 41.957607, -69.95467056938125 41.957607, 
-69.95467056938125 38.125392999999995, -79.26932943061874 
38.125392999999995))', 4326)) = 1 AND (("data_type" != '4' OR "data_type" IS 
NULL ) OR ("data_type" = '4' AND ("data_type".Filter(4) = 1 AND 
"data_type".STEquals(4) = 1 OR "data_type" IS NULL ))))
INFO   | jvm 1    | 2011/04/06 09:45:02 | 06 Apr 09:45:02 DEBUG 
[org.geotools.jdbc] - CLOSE CONNECTION
INFO   | jvm 1    | 2011/04/06 09:45:02 | 06 Apr 09:45:02 ERROR 
[org.geotools.rendering] - java.io.IOException
INFO   | jvm 1    | 2011/04/06 09:45:02 | java.lang.RuntimeException: 
java.io.IOException
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.data.store.ContentFeatureCollection.iterator(ContentFeatureCollection.java:258)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.feature.RetypingFeatureCollection.iterator(RetypingFeatureCollection.java:44)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.renderer.lite.StreamingRenderer.drawPlain(StreamingRenderer.java:1996)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.renderer.lite.StreamingRenderer.processStylers(StreamingRenderer.java:1932)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.renderer.lite.StreamingRenderer.paint(StreamingRenderer.java:764)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.map.RenderedImageMapOutputFormat.produceMap(RenderedImageMapOutputFormat.java:447)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.map.RenderedImageMapOutputFormat.produceMap(RenderedImageMapOutputFormat.java:209)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.map.RenderedImageMapOutputFormat.produceMap(RenderedImageMapOutputFormat.java:124)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.GetMap.run(GetMap.java:461)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.GetMap.run(GetMap.java:110)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.wms.DefaultWebMapService.getMap(DefaultWebMapService.java:338)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
sun.reflect.GeneratedMethodAccessor213.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:51)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.gwc.wms.CachingWebMapService.invoke(CachingWebMapService.java:33)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.ows.util.RequestObjectLogger.invoke(RequestObjectLogger.java:51)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at $Proxy21.getMap(Unknown 
Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
sun.reflect.GeneratedMethodAccessor140.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
java.lang.reflect.Method.invoke(Unknown Source)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.ows.Dispatcher.execute(Dispatcher.java:624)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:229)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:809)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:501)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1093)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:23)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:68)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.basicauth.BasicProcessingFilter.doFilterHttp(BasicProcessingFilter.java:174)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.providers.anonymous.AnonymousProcessingFilter.doFilterHttp(AnonymousProcessingFilter.java:105)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.rememberme.RememberMeProcessingFilter.doFilterHttp(RememberMeProcessingFilter.java:116)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.wrapper.SecurityContextHolderAwareRequestFilter.doFilterHttp(SecurityContextHolderAwareRequestFilter.java:91)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:278)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.logout.LogoutFilter.doFilterHttp(LogoutFilter.java:89)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:192)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:192)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:99)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:99)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:394)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:99)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.providers.anonymous.AnonymousProcessingFilter.doFilterHttp(AnonymousProcessingFilter.java:105)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.basicauth.BasicProcessingFilter.doFilterHttp(BasicProcessingFilter.java:174)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:192)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy.doFilter(FilterChainProxy.java:185)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:64)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:39)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:48)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.vfny.geoserver.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:109)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:394)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.providers.anonymous.AnonymousProcessingFilter.doFilterHttp(AnonymousProcessingFilter.java:105)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.basicauth.BasicProcessingFilter.doFilterHttp(BasicProcessingFilter.java:174)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:406)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterChainProxy.doFilter(FilterChainProxy.java:185)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.springframework.security.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:99)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.LoggingFilter.doFilter(LoggingFilter.java:71)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.ReverseProxyFilter.doFilter(ReverseProxyFilter.java:183)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geoserver.filters.GZIPFilter.doFilter(GZIPFilter.java:41)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:726)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:206)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.Server.handle(Server.java:324)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:828)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:514)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:211)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)
INFO   | jvm 1    | 2011/04/06 09:45:02 | Caused by: java.io.IOException
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.jdbc.JDBCFeatureSource.getReaderInternal(JDBCFeatureSource.java:563)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.data.store.ContentFeatureSource.getReader(ContentFeatureSource.java:483)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.data.store.ContentFeatureCollection.iterator(ContentFeatureCollection.java:255)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       ... 142 more
INFO   | jvm 1    | 2011/04/06 09:45:02 | Caused by: 
com.microsoft.sqlserver.jdbc.SQLServerException: Cannot find either column 
"data_type" or the user-defined function or aggregate "data_type.Filter", or 
the name is ambiguous.
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:197)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1493)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:775)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:676)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:4575)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:1400)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:179)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:154)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQuery(SQLServerStatement.java:611)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.jdbc.JDBCFeatureReader.<init>(JDBCFeatureReader.java:147)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       at 
org.geotools.jdbc.JDBCFeatureSource.getReaderInternal(JDBCFeatureSource.java:557)
INFO   | jvm 1    | 2011/04/06 09:45:02 |       ... 144 more



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

------------------------------------------------------------------------------
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
_______________________________________________
Geoserver-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Reply via email to