Thank you so much. Is there any good way to save cookies for the 4.0.1 branch?
I tried per instructions here http://www.innovation.ch/java/HTTPClient/advanced_info.html System.setProperty("HTTPClient.cookies.save","true") System.setProperty("HTTPClient.cookies.jar","/home/misha/.httpclient_cookies") but it did not seem to create a file: ~/.httpclient_cookies Thank you! Misha p.s. I am using HTTPBuilder as a backend. Thank you! http://groovy.codehaus.org/modules/http-builder/ On Wed, 2010-06-09 at 23:34 +0200, Oleg Kalnichevski wrote: > On Wed, 2010-06-09 at 14:20 -0500, Misha Koshelev wrote: > > Dear All: > > > > I am quite confused... I am reading here and BasicClientCookie _clearly_ > > implements Serializable per JavaDoc: > > http://hc.apache.org/httpcomponents-client/httpclient/apidocs/org/apache/http/impl/cookie/BasicClientCookie.html > > You are looking at the javadocs for the 4.1 branch of HttpClient > > Oleg > > > > > However, my simple Groovy script: > > > > #!/usr/bin/env groovy > > @Grapes( > > @Grab(group='org.apache.httpcomponents', module='httpclient', > > version='4.0.1') > > ) > > import org.apache.http.impl.cookie.BasicClientCookie > > import java.io.File > > > > def cookie=new BasicClientCookie("name","value") > > println cookie instanceof Serializable > > def f=new File("/tmp/test") > > f.withObjectOutputStream() { oos-> > > oos.writeObject(cookie) > > } > > > > outputs: > > > > false > > Caught: java.io.NotSerializableException: > > org.apache.http.impl.cookie.BasicClientCookie > > at t$_run_closure1.doCall(t.groovy:12) > > at t.run(t.groovy:11) > > > > I have checked and I have no other versions of HttpClient anywhere in > > classpath (if I take Grapes statement out it cannot find file). > > > > Thank you! > > Misha Koshelev > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
