xsocket-develop Mailing List for xsocket (Page 20)
Status: Inactive
Brought to you by:
grro
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(12) |
Oct
(9) |
Nov
(11) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(8) |
Feb
(9) |
Mar
(9) |
Apr
(22) |
May
(28) |
Jun
(17) |
Jul
(10) |
Aug
(19) |
Sep
(4) |
Oct
(14) |
Nov
(26) |
Dec
(25) |
| 2009 |
Jan
(13) |
Feb
(17) |
Mar
(12) |
Apr
(4) |
May
(16) |
Jun
(6) |
Jul
(10) |
Aug
(24) |
Sep
(6) |
Oct
(5) |
Nov
(13) |
Dec
(10) |
| 2010 |
Jan
(17) |
Feb
(21) |
Mar
(10) |
Apr
(8) |
May
(2) |
Jun
(14) |
Jul
(7) |
Aug
(10) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
(2) |
| 2011 |
Jan
(1) |
Feb
(5) |
Mar
(1) |
Apr
|
May
(5) |
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(3) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|
From: Gregor R. <gre...@go...> - 2007-09-17 08:53:36
|
Hi, I just found a reported FreeBSD bug, which seems to describe problem which have been occurred. See http://www.freebsd.org/cgi/query-pr.cgi?pr=105482&cat=<https://freemailng9906.web.de/jump.htm?goto=http%3A%2F%2Fwww%2Efreebsd%2Eorg%2Fcgi%2Fquery%2Dpr%2Ecgi%3Fpr%3D105482%26cat%3D> Does the described environment match with our environment? Gregor |
|
From: Gregor R. <gre...@go...> - 2007-09-12 10:29:17
|
Hi, it seems that your log config hasn't been set to log finest level. To do this see http://www.exampledepot.com/egs/java.util.logging/Props.html or se= t the log level programmatically like: Handler[] hdl =3D Logger.getLogger("").getHandlers(); for (Handler handler : hdl) { if (handler instanceof ConsoleHandler) { handler.setFormatter(new LogFormatter()); handler.setLevel(FINEST); } } Logger logger =3D Logger.getLogger("org.xsocket"); logger.setLevel(FINEST); The log output would help very much. Gregor 2007/9/12, teran <ter...@ma...>: > > Both Winxp and FreeBSD output the same log: > > 11.09.2007 18:10:33 > org.xsocket.stream.MultithreadedServer$AcceptorCallback onConnected > INFO: server listening on /0.0.0.0:6666 () > > thats all > > > Hi, > > > this behaviour hasn't been reported yet. Could you send the log > > report (level FINEST, namespace "org.xsocket") for both, FreeBSD and > WinXP. > > > Gregor > > > > >> -----Urspr=FCngliche Nachricht----- > >> Von: teran <ter...@ma...> > >> Gesendet: 11.09.07 14:43:07 > >> An: xso...@li... > >> Betreff: [xSocket-develop] Bug with IConnection.write function on > FreeBSD > > > > >> Hello! > >> I try to run MultithreadedServer application on the FreeBSD, but when > >> connection.write(blablabla) happends the program is blocked on this > line > >> about one minute and then return from this function without sending > >> data. In the Windows Xp all ok. Is it my bug or something else? > > >> Thank you. > > > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> xSocket-develop mailing list > >> xSo...@li... > >> https://lists.sourceforge.net/lists/listinfo/xsocket-develop > > > > -- > Tertichnikov Andrey > > |
|
From: Christopher H. <ch...@wa...> - 2007-09-11 19:57:19
|
subscribe |
|
From: Gregor R. <gre...@go...> - 2007-09-11 13:01:06
|
Hi, this behaviour hasn't been reported yet. Could you send the log report (level FINEST, namespace "org.xsocket") for both, FreeBSD and WinXP. Gregor > -----Urspr=FCngliche Nachricht----- > Von: teran <ter...@ma...> > Gesendet: 11.09.07 14:43:07 > An: xso...@li... > Betreff: [xSocket-develop] Bug with IConnection.write function on FreeBSD > > Hello! > I try to run MultithreadedServer application on the FreeBSD, but when > connection.write(blablabla) happends the program is blocked on this line > about one minute and then return from this function without sending > data. In the Windows Xp all ok. Is it my bug or something else? > > Thank you. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > xSocket-develop mailing list > xSo...@li... > https://lists.sourceforge.net/lists/listinfo/xsocket-develop > --=20 Gregor Roth |
|
From: teran <ter...@ma...> - 2007-09-11 12:17:02
|
Hello! I try to run MultithreadedServer application on the FreeBSD, but when connection.write(blablabla) happends the program is blocked on this line about one minute and then return from this function without sending data. In the Windows Xp all ok. Is it my bug or something else? Thank you. |
|
From: <gre...@we...> - 2007-09-04 11:36:28
|
Hi Yan, I've updated the trunk based on your patch. Now, additional constructors exits to pass over a connect timeout within the connect procedure. Thank you very much. Your contribution is very welcome Gregor |
|
From: Yan J. <jef...@gm...> - 2007-09-03 03:28:17
|
Dear XSocket developers, Is there a way to set the socket timeout for creating a new socket connection? I found that ioProvider.openSocket(...) calls socketChannel.socket().connect(destSocketAddress), but it doesn't pass on a timeout parameter. Thank you Yan |