Changes between Initial Version and Version 1 of Ticket #470
- Timestamp:
- Sep 5, 2013, 9:12:54 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #470
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #470 – Description
initial v1 2 2 Query: http://kahlua.eecs.jacobs-university.de:8080/wcs-conformance-testing?service=WCS&VERSION=2.0.1&request=GetCoverage&coverageid=mean_summer_airtemp&subset=x(111.975,*)&subset=y(-44.525,*) 3 3 shall not return an exception 4 5 The log tells : 6 java.lang.NumberFormatException: For input string: '*' 7 may be the error happens when * is converted to numeric number 8 //support * in subset 9 if(stringLo.equals("*")){ 10 stringLo= low; 11 } 12 if(stringHi.equals("*")){ 13 stringHi= low; 14 } 15