Revision 101 org.gvsig.wfs.app/trunk/org.gvsig.wfs.app/org.gvsig.wfs.app.mainplugin/src/main/java/org/gvsig/fmap/dal/serverexplorer/wfs/WFSServerExplorer.java

View differences:

WFSServerExplorer.java
79 79
        this.url = parameters.getUrl();
80 80
        if (wfsClient == null){
81 81
            try {
82
                wfsClient = new WFSClient(url);
82
                wfsClient = new WFSClient(url, parameters.getIgnoreChace());
83 83
                if (status == null){
84 84
                    status = new WFSStatus(null);					
85 85
                }
86 86
                
87
                wfsClient.getCapabilities(status, parameters.getReloadCapabilities(), null);
87
                wfsClient.getCapabilities(status, parameters.getIgnoreChace(), null);
88 88
            } catch (ConnectException e) {
89 89
                throw new InitializeException("Not possible to connect with " + url, e);
90 90
            } catch (IOException e) {
......
107 107
        status = new WFSStatus(layerName, nameSpace);
108 108
        WFSFeature feature = (WFSFeature) wfsClient.getFeature(nameSpace, layerName); 
109 109
        if (!feature.isCompleted()){
110
            File describeFeatureTypeFile = wfsClient.describeFeatureType(status, false, null);
110
            File describeFeatureTypeFile = wfsClient.describeFeatureType(status, parameters.getIgnoreChace(), null);
111 111

  
112 112
            WFSFeatureFiller featureFiller = new WFSFeatureFiller(feature);
113 113
            try {

Also available in: Unified diff