Where documents reference a resource with a query
part, the base URL is requested without the query. For
example, the relative href value below:
/servlets/Example?param1=value1¶m2=value2
Is trimmed to:
/servlets/Example
No URLs with query parts appear to be checked.
Logged In: NO
The query part is trimmed during URL normalizatin. You can fix this as follows:
- download the sources
- go to the class net.javacoding.jspider.core.util.URLUtil
- commend out line 32: //urlString = normalizeStripQuery(urlString) ;
- compile
- have fun!
Niko
Queyr removal has been made optional in the upcoming 1.0 release.