Boot.scalaで、
LiftRules.encodeJSessionIdInUrl_? = trueしてやればOK。
Liftで携帯サイト作ってる人とかはアップデートの際に要注意!
ScalaとかObjective-Cとかforce.comとかで開発してます。
LiftRules.encodeJSessionIdInUrl_? = trueしてやればOK。
Note that when using an InputStream generator, chuncked encoding will be used with no Content-Length header
import dispatch._ import dispatch.Http._ import dispatch.mime.Mime._ import org.apache.http.entity.mime.content.ByteArrayBody var req = ... //普通にdispatchのRequest作る req = req next req.add(paramName, new ByteArrayBody(data, contentType, filename)) //ByteArrayBodyを指定
val httpmime = "org.apache.httpcomponents" % "httpmime" % "4.1-beta1"