I've been through the tutorial from behind a corporate firewall so had to add proxy support. In case anyone else wants/needs to do this I had to:
in SampleTarget.java
import org.apache.http.HttpHost
add viaproxy line in Request.Post (before the bodyString) e.g.
.viaProxy(new HttpHost("my.proxy.host", 8080))
in sdc-security.policy
change sdc permission to my proxy host rather than requestb.in
I've been through the tutorial from behind a corporate firewall so had to add proxy support. In case anyone else wants/needs to do this I had to:
in SampleTarget.java import org.apache.http.HttpHost add viaproxy line in Request.Post (before the bodyString) e.g. .viaProxy(new HttpHost("my.proxy.host", 8080))
in sdc-security.policy change sdc permission to my proxy host rather than requestb.in