I am trying to configure ZipTie client and server to use http and get the following error "Unable to connect to server: Unexpected end of file from server". I changed all the values in config.ini for both client and server that refer to http and https.
Can you confirm the settings to use and is config.ini the only two files to change?
config.ini
Change the server config.ini to look like this:
org.osgi.service.http.enabled=true
org.osgi.service.http.port=8080
org.osgi.service.http.port.secure=8080
org.osgi.service.http.secure.enabled=false
The second line (org.osgi.service.http.port) is new. I just tested it, that works for me.
-Brett
The Properties
For the server:
Change these three:
org.ziptie.nil.remoteScheme=http
org.osgi.service.http.enabled=true
org.osgi.service.http.secure.enabled=false
And add:
org.osgi.service.http.port=8080
For the client change just the one:
org.ziptie.client.connection.scheme=http
That should be it,
- Leo