merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.Channels.Tcp / ChangeLog
1 2006-12-18  Lluis Sanchez Gual  <lluis@novell.com>
2
3         * TcpChannel.cs: The remoting infrastructure does not call
4           StartListening() anymore, so it has to be called by the channel.
5
6 2006-09-15  Lluis Sanchez Gual  <lluis@novell.com> 
7
8         * TcpServerTransportSink.cs, TcpServerChannel.cs: 
9         When sending an async call response, don't use the original request
10         stream because it may have been used by another call.
11
12 2006-05-31  Gert Driesen  <drieseng@users.sourceforge.net>
13
14         * TcpClientChannel.cs: Marked CreateMessageSink virtual.
15         * TcpServerChannel.cs: Marked GetUrlsForUri virtual.
16
17 2006-05-31  Gert Driesen  <drieseng@users.sourceforge.net>
18
19         * TcpClientChannel.cs: Set eol-style to native.
20         * TcpChannel.cs: Fixed line endings. Set eol-style to native.
21         * TcpServerTransportSink.cs: Fixed line endings. Set eol-style to
22         native.
23         * TcpConnectionPool.cs: Fixed line endings. Set eol-style to CRLF.
24         * TcpClientTransportSinkProvider.cs: Fixed line endings. Set eol-style
25         to native.
26         * TcpMessageIO.cs: Set eol-style to native.
27         * TcpServerChannel.cs: Fixed line endings. Set eol-style to native.
28         * TcpClientTransportSink.cs: Fixed line endings. Set eol-style to
29         native.
30
31 2005-11-08  Lluis Sanchez Gual  <lluis@novell.com> 
32
33         * TcpServerChannel.cs: Fix null ref exception.
34
35 2005-11-06  Svetlana Zholkovsky  <svetlanaz@mainsoft.com>
36
37         * TcpServerChannel.cs, TcpConnectionPool.cs: only TARGET_JVM changes
38
39 2005-07-25  Lluis Sanchez Gual  <lluis@novell.com> 
40
41         * TcpChannel.cs: Don't create a server channel when the
42         default constructor is used. Fixes bug #75626.
43
44 2005-05-31  Lluis Sanchez Gual  <lluis@novell.com> 
45
46         * TcpServerTransportSink.cs: Remove the channel uri from the
47         received uri.
48         
49 2005-05-31  Lluis Sanchez Gual  <lluis@novell.com>
50
51         * TcpServerChannel.cs: Use IP address in object uris by default.
52         Fixes bug #54234. Removed unused field.
53         * TcpClientTransportSink.cs: Fix warning.
54
55 2005-05-18  Lluis Sanchez Gual  <lluis@novell.com>
56
57         * TcpServerChannel.cs: In StopListening, wait for the server thread
58         to stop before returning. This fixes bug #74962.
59
60 2005-01-25  Lluis Sanchez Gual  <lluis@novell.com>
61
62         * TcpServerTransportSink.cs: Set IPAddress and ConnectionId
63         transport headers. This fixes bug #71423.
64         * TcpServerChannel.cs: Use Socket instead of TcpClient, so we can
65         easily get the IP address of the client. Added properties in
66         ClientConnection to get the IP address and the connection id.
67
68 2005-01-21  Lluis Sanchez Gual  <lluis@novell.com>
69
70         * TcpMessageIO.cs: Added a buffer parameter to ReceiveMessageStatus,
71         to avoid creating unneded buffers.
72         * TcpServerChannel.cs, TcpClientTransportSink.cs: Use new buffer
73         parameter in ReceiveMessageStatus.
74
75 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
76
77         * TcpConnectionPool.cs: Don't limit client connections.
78         This fixes bug #70700. Create connections from outside the pool lock.
79         * TcpMessageIO.cs: Throw real exceptions when errors occur.
80         * TcpServerChannel.cs: Use the new RemotingThreadPool to manage threads.
81         This also fixes bug #70700.
82
83 2004-12-17  Lluis Sanchez Gual <lluis@novell.com>
84
85         * TcpMessageIO.cs: Removed some more WriteByte calls.
86         * TcpClientTransportSink.cs: Flush the net stream after writing
87         a message.
88
89 2004-12-10  Lluis Sanchez Gual <lluis@novell.com>
90
91         * TcpChannel.cs: Don't use regular expressions to parse the url, it's
92         too slow.
93         * TcpMessageIO.cs: Read byte chunks using the new StreamRead method,
94         which won't block if the connection is closed.
95         * TcpServerChannel.cs: Flush the stream after writing the response.
96         Wrap the close call in a try/catch (some bytes can be left in the
97         buffered stream if a connection is suddently closed, and it will fail
98         when trying to flush them).
99
100 2004-12-09  Lluis Sanchez Gual <lluis@novell.com>
101
102         * TcpConnectionPool.cs: Access the socket stream through a
103         BufferedStream.
104         * TcpMessageIO.cs: Avoid ReadByte().
105         * TcpServerChannel.cs: Access the socket stream through a
106         BufferedStream. Abort the connection if an unknown message is received.
107         All this fixes performance bug #70337.
108
109 2004-10-22  Lluis Sanchez Gual <lluis@ximian.com>
110
111         * TcpClientChannel.cs: In CreateMessageSink, process the remote channel
112           data if the provided url does not have the expected format. This fixes
113           a regression from the fix for bug #66768 and fixes #68669.
114
115 2004-07-15  Lluis Sanchez Gual <lluis@novell.com>
116
117         * TcpServerChannel.cs: Set channel name from the provided properties.
118           This fixes bug #61592.
119
120 2004-05-13  Lluis Sanchez Gual <lluis@ximian.com>
121
122         * TcpChannel.cs: Made Init private.
123         * TcpClientTransportSink.cs, TcpClientTransportSinkProvider.cs,
124           TcpServerTransportSink.cs: Made internal.
125
126 2004-04-16  Lluis Sanchez Gual  <lluis@ximian.com>
127
128         * TcpClientChannel.cs: Initialize the sink provider in the default
129           constructor.
130
131 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
132
133         * TcpServerChannel.cs: In the ProcessMessages() loop, moved the closing of
134           the stream to the finally block, so it is called if the thread is aborted.
135
136 2004-02-27  Lluis Sanchez Gual  <lluis@ximian.com>
137
138         * TcpClientTransportSink.cs: Set the RequestUri transport header before 
139           sending the request.
140
141 2004-02-23  Lluis Sanchez Gual <lluis@ximian.com>
142
143         * TcpClientTransportSink.cs: Release the connection after sending an
144           OneWay call. This fixes bug #54671.
145
146 2003-12-23  Lluis Sanchez Gual <lluis@ximian.com>
147
148         * TcpServerChannel.cs: If useIpAddress and bindAddress are both specified,
149           set bindAddress as the host address for the client.
150
151 2003-12-19  Lluis Sanchez Gual <lluis@ximian.com>
152
153         * TcpServerChannel.cs: Fixes in channel initialization.
154
155 2003-12-12  Lluis Sanchez Gual  <lluis@ximian.com>
156
157         * TcpChannel.cs: Added null check.
158
159 2003-11-16  Lluis Sanchez Gual  <lluis@ximian.com>
160
161         * TcpClientChannel.cs: Added support for name and priority properties.
162         * TcpServerChannel.cs: Added support for priority, bindTo, useIpAddress,
163           machineName and supressChannelData properties.
164         * TcpChannel.cs, TcpServerTransportSink.cs: Formatting change.
165                   
166 2003-11-13  Lluis Sanchez Gual <lluis@ximian.com>
167
168         * TcpChannel.cs: take into account name and priority properties.
169         
170 2003-11-12  Lluis Sanchez Gual <lluis@ximian.com>
171
172         * TcpServerChannel.cs: Remove listener initialization and StartListening
173           call from constructor. It is called now by the remoting framework.
174         * TcpConnectionPool.cs: Removed fixme.
175         
176         Older log entries can be found in the System.Runtime.Remoting ChangeLog.
177