| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 11 months |
| seen | 19 hours ago | |
| stats | profile views | 13 |
|
Nov 21 |
comment |
cannot get the right output of a recursive function also as pepsi says, this won't work with exponents not being a power of 2... |
|
Nov 21 |
comment |
XML Schema: keyref to some subelements of a specific element yes, i already saw the question you linked. Actually in the end i decided to change my XML format in order to have process elements ant their actionStatus inside the workflows. i'd have preferred keeping workflows and processes separated, but i guess this is a good solution too. Thanks a lot anyway for your answers! |
|
Nov 19 |
comment |
XML Schema: keyref to some subelements of a specific element thanks for the answer. unfortunately, i cannot use schematron because this is a university assignment and i'm supposed to strictly use W3C XML Schema only. anyway, thanks for the advice, i will surely take a look at Schematron for personal knowledge! |
|
Jul 27 |
comment |
Odd Clipboard behaviour with FileDrop format yeah, you're right XD |
|
Jul 27 |
comment |
Odd Clipboard behaviour with FileDrop format yeah, actually i managed to resolve the problem. The code above was executed in different threads, one per client. I thought the clipboard methods were completely thread-safe, as they state in the documentation, but apparently they are not. Anyway, i solved this problem by invoking the code above in a single thread. |
|
Jul 13 |
comment |
C# SocketException doesn't get caught yes, but as soon as the connection gets closed it returns null, i tested that |
|
Jul 13 |
comment |
C# SocketException doesn't get caught Ok, thanks for the help. I will try to do this. Anyway, i almost solved this by also checking if the readline returns a null string in the reading loop. if that happensa i break the loop. I also added a "finally" block which gets executed if i get an exception or the loop ends, so in any case i am now able to end the client program when the conneciton i closed by the server. |
|
Jul 13 |
comment |
C# SocketException doesn't get caught no, actually i'm closing the tcpclient returned by the listener on the accept method. connClient.Close(). Is this the right way to close a connection? From the documentation in visual studio, it says that the close method frees any resource of the TcpClient and asks for the underlying conneciton to be closed. Am i wrong? anyway, i will surely try to shutdown the socket and see if that works, thanks for the advice |
|
Jul 13 |
comment |
C# SocketException doesn't get caught What do you mean? |
|
Jul 12 |
comment |
C# SocketException doesn't get caught Im' running this inside VS in debug mode. I already tried using catch(Exception e) but that doesn't work either. |