java.lang.IllegalArgumentException: [https://localhost/pcap/search?stime=20110930%2E000000&etime=20110930%2E235959&bpf=tcp
Here is the call I made using Spring RestFul Template:
final PcapSearchResponse pcapSearchResult = restTemplate.postForObject(
nPulseApiUris.get(2), null, PcapSearchResponse.class, sTime, eTime, bpf);
I don't understand why that is a bad URL? I used UTF-8 to encode the "." character but I am not sure why my URL is still invalid.
Your help is greatly appreciated!
Thank you for your help!!!