Re: [jetty-users] SslContextFactory, setKeyManagerPassword and a StringIndexOutOfBoundsException

2017-02-03 Thread west suhanic
password a StringIndexOutOfBoundsException gets thrown. I was hoping for an exception that indicates an incorrect password. What am I doing wrong? thank you, west suhanic ___ jetty-users mailing list jetty-users@eclipse.org To change your delivery

Re: [jetty-users] calling setHost under jetty v9.4.7.v20170914 causes embeded jetty application to hang

2017-12-12 Thread west suhanic
eout(3); When setHost is included the application hangs. By hang I mean when I try to access the URL http://aaa.bbb.ccc:8080/index.html the embedded jetty application does not respond. If I comment out the call to setHost everything works as expected. Can someone offer some guidance on this? thank

Re: [jetty-users] calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-12 Thread west suhanic
eout(3); When setHost is included the application hangs. By hang I mean when I try to access the URL http://aaa.bbb.ccc:8080/index.html the embedded jetty application does not respond. If I comment out the call to setHost everything works as expected. Can someone offer some guidance on this? thank

[jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-12 Thread west suhanic
( "192.168.20.9" ); http.setIdleTimeout(3); works as expected when contacted using the following URL: http://aaa.bbb.ccc:8080/index.html thank you, west suhanic ___ jetty-users mailing list jetty-users@eclipse.org To change your delivery options

Re: [jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-12 Thread west suhanic
192.168.20.9. My /etc/hosts file is configured this way because of another application. So the work around I have is to populate InetAddress array and use the non-local host IP address in the setHost call. This solves my problem and maintains my non-standard configuration. thanks, west suhanic

Re: [jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-13 Thread west suhanic
jetty with jdk-8u152 running under gentoo on an X86-64 PC. My network setup is fine with the machine being accessible to all machines on my internal network. I am OK with using setHost(null) but I was wondering if you have any suggestions? thank you, west suhanic On Tue, Dec 12, 2017 at 2:25 PM

Re: [jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-14 Thread west suhanic
network interface to assist in the acquisition of the IP address to listen to. I think Jetty is great and you guys do a great job. If you need more information please ask. thank you, west suhanic On Wed, Dec 13, 2017 at 6:11 PM, Greg Wilkins wrote: > Suhanic, > > we need to know m

Re: [jetty-users] UPDATE: calling setHost under jetty v9.4.8.v20171121 causes embeded jetty application to hang

2017-12-15 Thread west suhanic
tunity to open by interface. > > Why don't you open a ServerSocketChannel yourself after resolving the > address however you want and pass it into the connector with > open(ServerSocketChannel)? > > cheers > > > > > > > > On 14 December 2017 at 18:02, west suha

[jetty-users] Executable jar file for embedded jetty application

2018-03-06 Thread west suhanic
something in the documentation? 1)Is building an executable jar file without maven or ant possible? 2)If so, how? Do I need to add some code to my embedded server? thank you, west suhanic ___ jetty-users mailing list jetty-users@eclipse.org To change your

Re: [jetty-users] Executable jar file for embedded jetty application

2018-03-07 Thread west suhanic
wenty elements. The jar file statement for the executable jar is: jar cvfm x.jar ./manifest.mf -C g/m . Then to use the executable jar do: java -jar x.jar thanks, west suhanic On Tue, Mar 6, 2018 at 12:28 PM, Joakim Erdfelt wrote: > Using makefile you'll have a lot of extra wor