Revision 40281 branches/v2_0_0_prep/libraries/libRemoteServices/src/org/gvsig/remoteclient/wfs/wfs_1_0_0/request/WFSGetFeatureRequest1_0_0.java

View differences:

WFSGetFeatureRequest1_0_0.java
91 91
		String[] fields = status.getFields();
92 92
		if (fields.length > 0){
93 93
			req.append("PROPERTYNAME=");
94
			
95
            // opening parenthesis (march 2013)
96
            req.append("(");
97

  
94 98
			req.append(fields[0]);
95 99
			for (int i=1 ; i<fields.length ; i++){
96 100
				req.append("," + fields[i]);
97 101
			}	
102
			
103
            // closing parenthesis (march 2013)
104
            req.append(")");
105

  
98 106
			req.append("&");
99 107
		}
100 108
	}

Also available in: Unified diff