2010-03-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / ChangeLog
1 2010-03-25  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * MessageFault.cs : do not use SOAP11 namespace for fault contents.
4
5 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
6
7         * ReplyChannelBase.cs, HttpReplyChannel.cs : add some locking.
8           Patch by Matt Dargavel.
9
10 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
11
12         * HttpListenerManager.cs : use lock object which is subject to
13           change. Fix by Matt Dargavel.
14
15 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
16
17         * HttpListenerManager.cs : remove consumed HttpListenerContext from
18           the pending queue. Compare "wsdl" request in case insensitive
19           manner. Patch by Matt Dargavel.
20
21 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
22
23         * HttpRequestContext.cs : apply the patch by Matt Dargavel, which is
24           supposed to provide detailed 400 error message.
25
26 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
27
28         * TransactionFlowBindingElement.cs: revamp the previous change to
29           not regress regarding service metadata.
30
31 2010-03-24  Atsushi Enomoto  <atsushi@ximian.com>
32
33         * ChannelListenerBase.cs, TransactionFlowBindingElement.cs: fix 
34           GetProperty<T>() bug that fails to retrieve properties. (This may
35           be rewritten later if an ongoing change proposal is to take place.)
36
37 2010-03-18  Atsushi Enomoto  <atsushi@ximian.com>
38
39         * ReliableSessionBindingElement.cs,
40           PrivacyNoticeBindingElement.cs,
41           RemoteEndpointMessageProperty.cs : added some missing types.
42
43 2010-03-17  Atsushi Enomoto  <atsushi@ximian.com>
44
45         * MessageHeaders.cs :
46           why does it filter out most of the headers? kill it.
47
48 2010-03-17  Atsushi Enomoto  <atsushi@ximian.com>
49
50         * SvcHttpHandler.cs, AspNetReplyChannel.cs, HttpChannelListener.cs,
51           HttpListenerManager.cs : refactoring on acquiring SvcHttpHandler
52           to not raise "not found" error (see bug #573795).
53
54 2010-03-16  Jb Evain  <jbevain@novell.com>
55
56         * HttpRequestChannel.cs, HttpTransportBindingElement.cs: use
57         MOONLIGHT symbol to disambiguate MonoTouch and Moonlight code.
58
59 2010-03-09  Atsushi Enomoto  <atsushi@ximian.com>
60
61         * HttpListenerManager.cs : For ASP.NET, use correct GenericIdentity
62           type, and use null password unless we find a chance to get password
63           in ASP.NET HttpContext.
64
65 2010-03-03  Atsushi Enomoto  <atsushi@ximian.com>
66
67         * HttpReplyChannel.cs, AspNetReplyChannel.cs, HttpChannelListener.cs,
68           HttpListenerManager.cs : ongoing authentication support. It returns
69           401 as expected, but somehow fails to retrieve user info.
70
71 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
72
73         * HttpListenerManager.cs : this change (along with HttpListener
74           implementation) somehow fixes basic auth. connection error...
75
76 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
77
78         * MessageHeaders.cs : add !NET_2_1.
79
80 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
81
82         * MessageHeader.cs, MessageHeaders.cs : add nasty workaround for
83           typed UniqueId output.
84
85 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
86
87         * MessageHeader.cs : no need to treat EndpointAddress as a special
88           case here too.
89
90 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
91
92         * MessageHeaders.cs : remove duplicate constant.
93
94 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
95
96         * MessageHeader.cs, MessageHeaders.cs: MessageHeader does not treat
97           EndpointAddress as a special case. Instead, each MessageHeaders
98           property should convert it to appropriate serializable objects.
99
100           (Our DataContractSerializer fails to reject EndpointAddress as
101           serializable type, so it's rather a preparation step.)
102
103 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
104
105         * MessageHeader.cs, Message.cs : use dictionary string whenever
106           applicable. The binary output on #577139 is getting closer (no
107           idea if it is really about binary output though).
108
109 2010-02-10  Atsushi Enomoto  <atsushi@ximian.com>
110
111         * BinaryMessageEncoder.cs : moved soap_dictionary to Constants.
112
113 2010-02-05  Atsushi Enomoto  <atsushi@ximian.com>
114
115         *  HttpTransportBindingElement.cs : ... and add MONOTOUCH on #ifs.
116
117 2010-02-05  Atsushi Enomoto  <atsushi@ximian.com>
118
119         *  HttpRequestChannel.cs, HttpTransportBindingElement.cs :
120           enable authentication schemes on monotouch.
121
122 2010-02-04  Atsushi Enomoto  <atsushi@ximian.com>
123
124         * SvcHttpHandler.cs : a wait handle could be used for more than one
125           requests and hence it sometimes blocked one reply channel. Now
126           it creates a wait handle for each ASP.NET request so that such
127           multiple use should not occur. This should fix blocking on
128           concurrent requests (it indeed fixes as long as I can see).
129
130 2010-02-04  Atsushi Enomoto  <atsushi@ximian.com>
131
132         * AspNetReplyChannel.cs : remove garbage output.
133
134 2010-02-04  Atsushi Enomoto  <atsushi@ximian.com>
135
136         * SvcHttpHandler.cs : Use lock when it tries to create the service
137           host.
138
139 2010-02-02  Atsushi Enomoto  <atsushi@ximian.com>
140
141         * SvcHttpHandlerFactory.cs : lock when it tries to acquire
142           HttpHandler.
143
144 2010-02-02  Atsushi Enomoto  <atsushi@ximian.com>
145
146         * HttpListenerManager.cs : add another workaround for blocking
147           concurrent calls.
148
149 2010-02-02  Atsushi Enomoto  <atsushi@ximian.com>
150
151         * HttpListenerManager.cs : small refactoring.
152
153 2010-01-22  Atsushi Enomoto  <atsushi@ximian.com>
154
155         * TcpDuplexSessionChannel.cs : added a workaround receiver delay
156           that somehow makes callback client to not cause infinite loop.
157
158 2010-01-22  Atsushi Enomoto  <atsushi@ximian.com>
159
160         * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
161           DuplexChannelBase.cs : Receive() should rather use TryReceive().
162           It should not be in reverse order.
163
164 2010-01-22  Atsushi Enomoto  <atsushi@ximian.com>
165
166         * HttpReplyChannel.cs, HttpListenerManager.cs :
167           Implement async cancellation in the expected manner (though with
168           some hack). This mostly removed nunit blockers.
169
170 2010-01-22  Atsushi Enomoto  <atsushi@ximian.com>
171
172         * CommunicationObject.cs : fix wrong status changes.
173
174 2010-01-20  Atsushi Enomoto  <atsushi@ximian.com>
175
176         * AddressHeader.cs : XmlSchema.InstanceNamespace didn't exist in 2.1 :(
177
178 2010-01-20  Atsushi Enomoto  <atsushi@ximian.com>
179
180         * AddressHeader.cs : implement remaining bits.
181           Eliminate dependency on NetDataContractSerializer.
182
183 2010-01-20  Atsushi Enomoto  <atsushi@ximian.com>
184
185         * CommunicationObject.cs : in Fault(), do similar work as previous
186           change does.
187
188 2010-01-19  Atsushi Enomoto  <atsushi@ximian.com>
189
190         * CommunicationObject.cs : when process state changes, lock the
191           object to make sure the state transition is valid.
192           Change OnClosed/OnClosing to do the way OnOpened/OnOpening does.
193
194 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
195
196         * MessageHeaders.cs : implement SetAction().
197
198 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
199
200         * ChannelFactoryBase.cs : fix build.
201
202 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
203
204         * ChannelBase.cs : cosmetic API fix for SL3.
205
206 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
207
208         * ChannelFactoryBase.cs :
209           implement On{Begin/End}Close() on the generic type.
210
211 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
212
213         * HttpChannelFactory.cs, TcpChannelFactory.cs,
214           ChannelFactoryBase.cs, NamedPipeChannelFactory.cs
215           PeerChannelFactory.cs, HttpRequestChannel.cs:
216           fix ChannelFactoryBase API; move On(Begin/End)Open() to internal
217           type and made required changes.
218
219 2010-01-13  Atsushi Enomoto  <atsushi@ximian.com>
220
221         * HttpCookieContainerBindingElement.cs : new.
222         * IHttpCookieContainer.cs : fix type name.
223         * HttpRequestChannel.cs, HttpChannelFactory.cs : support above.
224
225 2010-01-07  Atsushi Enomoto  <atsushi@ximian.com>
226
227         * TcpBinaryFrameManager.cs : treat EOF as interrupted stream too (it
228           does not happen when communicating with .NET client but happens with
229           mono). Seealso FIXME comment.
230         * TcpDuplexSessionChannel.cs : do not try to close session when it
231           failed to read sized message. The connection is already dead.
232
233           Fixed bug #567949.
234
235 2010-01-07  Atsushi Enomoto  <atsushi@ximian.com>
236
237         * TcpDuplexSessionChannel.cs :
238           Write EndRecord only when the connection is available.
239           Remove hack - do let ChannelDispatcher close the channel.
240         * TcpBinaryFrameManager.cs :
241           The socket may be disconnected when trying to read a sized message,
242           so check some socket exceptions.
243           In case the client silently shuts down without EndRecord and
244           reconnects to the server with preamble while expecting a sized
245           message (which is so lame, but that's what .NET often does), refresh
246           preamble and continue.
247
248           This fixes some cases of bug #567949 but not all.
249
250 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
251
252         * BinaryMessageEncoder.cs : enable workaround buffering only when
253           the argument stream does *not* support seek. This fixes some
254           net.tcp connection problem.
255
256 2009-12-26  Atsushi Enomoto  <atsushi@ximian.com>
257
258         * TcpBinaryFrameManager.cs : If preamble byte is not available from
259           the client stream, detect it to close the reply or input channel.
260         * TcpRequestChannel.cs : send preamble at each request time.
261           It differentiates communication behavior on such cases that involve
262           single open and multiple requests.
263         * TcpReplyChannel.cs : close the channel only when the channel is
264           oeprated to close i.e. do not close the socket every time.
265           Process preambles on each request (the same as request channel).
266
267 2009-12-26  Atsushi Enomoto  <atsushi@ximian.com>
268
269         * TcpBinaryFrameManager.cs : unsized envelope record may have more
270           than one data block, so consume them accordingly. This should fix
271           large buffer consumption.
272
273 2009-12-21  Atsushi Enomoto  <atsushi@ximian.com>
274
275         * MessageFault.cs : support EnvelopeVersion.None as well, as almost
276           the same as SOAP12.
277
278 2009-12-17  Atsushi Enomoto  <atsushi@ximian.com>
279
280         * HttpRequestContext.cs : for DestinationUnreachable message, this
281           channel returns 400 in .NET.
282
283 2009-12-16  Atsushi Enomoto  <atsushi@ximian.com>
284
285         * BinaryMessageEncoder.cs : added workaround for strange stream
286           consumption error raised by HttpTransport + Binary encoder example.
287         * BinaryMessageEncodingBindingElement.cs:
288           only SOAP 1.2 is allowed for this encoder.
289
290 2009-12-14  Atsushi Enomoto  <atsushi@ximian.com>
291
292         * XmlReaderBodyWriter.cs : don't try to write empty xml.
293
294 2009-12-10  Atsushi Enomoto  <atsushi@ximian.com>
295
296         * HttpRequestChannel.cs : avoid adding duplicate headers. Basically
297           default WebHeaderCollection items are overwritten.
298
299 2009-12-10  Atsushi Enomoto  <atsushi@ximian.com>
300
301         * HttpRequestChannel.cs : when HTTP response was error, do not try
302           to read message but just raise an error.
303
304 2009-12-10  Atsushi Enomoto  <atsushi@ximian.com>
305
306         * MessageHeaders.cs : null can be set as a WS-Addressing header item.
307
308 2009-12-10  Atsushi Enomoto  <atsushi@ximian.com>
309
310         * HttpRequestChannel.cs : WebException.Response might be null.
311
312 2009-12-04  Atsushi Enomoto  <atsushi@ximian.com>
313
314         * ReplyChannelBase.cs : added listener property.
315         * SecurityChannelListener.cs : quick async impl, as ServiceHost has
316           been updated to prefer async by default, a while ago.
317
318 2009-12-04  Atsushi Enomoto  <atsushi@ximian.com>
319
320         * HttpTransportBindingElement.cs : finished all GetProperty() values.
321
322 2009-12-04  Atsushi Enomoto  <atsushi@ximian.com>
323
324         * HttpRequestChannel.cs : disabled carelessly added
325           "UseDefaultCredentials = false" line. It blocked basic auth.
326
327 2009-12-04  Atsushi Enomoto  <atsushi@ximian.com>
328
329         * HttpRequestChannel.cs, HttpChannelFactory.cs,
330           HttpChannelListener.cs, HttpListenerManager.cs :
331           implemented http client authentication and some of corresponding
332           service code. Only client works so far.
333
334 2009-12-03  Atsushi Enomoto  <atsushi@ximian.com>
335
336         * HttpsTransportBindingElement.cs, HttpChannelListener.cs :
337           added URI scheme check.
338
339 2009-12-03  Atsushi Enomoto  <atsushi@ximian.com>
340
341         * TransportSecurityBindingElement.cs : fix 2.1 build.
342
343 2009-12-03  Atsushi Enomoto  <atsushi@ximian.com>
344
345         * HttpsTransportBindingElement.cs :
346           RequireClientCertificate is false by default.
347           Remove extra #if NET_2_1.
348         * SecurityBindingElement.cs :
349           Implement some transport security factory methods.
350         * TransportSecurityBindingElement.cs :
351           It is not ISecurityCapabilities anymore.
352
353 2009-11-25  Atsushi Enomoto  <atsushi@ximian.com>
354
355         * MessageHeaders.cs
356           SecurityBindingElement.cs
357           LocalClientSecuritySettings.cs
358           TransportSecurityBindingElement.cs
359           FaultConverter.cs : They are now part of SL3 API.
360
361 2009-11-17  Atsushi Enomoto  <atsushi@ximian.com>
362
363         * BinaryMessageEncodingBindingElement.cs : changes for 2.1 build.
364
365 2009-11-05  Geoff Norton  <gnorton@novell.com>
366
367         * HttpsTransportBindingElement.cs: Implement basic https transport
368         binding support for Moonlight and MonoTouch
369
370 2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>
371
372         * HttpListenerManager.cs : remove CWLs.
373
374 2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>
375
376         * SvcHttpHandler.cs : move back previous listener selector code in
377           ProcessRequest(). Unlike HttpListener, ASP.NET does not refine
378           and differentiate requests to deeper paths (such as /jsdebug), so
379           we need such refinement here.
380
381 2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>
382
383         * HttpListenerManager.cs : dependent fix to ServiceMetadataExtension
384           changes.
385
386 2009-10-22  Atsushi Enomoto  <atsushi@ximian.com>
387
388         * SvcHttpHandler.cs, HttpReplyChannel.cs, AspNetReplyChannel.cs,
389           HttpChannelListener.cs, HttpListenerManager.cs :
390           Similar refactoring on ASP.NET side to the previous one.
391           Added ASP.NET implementation of HttpListenerManager and use some
392           part of it in SvcHttpHandler (ASP.NET stack does not fully make use
393           of the manager yet).
394           Rewrote AspNetReplyChannel to become almost the same as
395           HttpSimpleReplyChannel, to hopefully unify them later.
396           Now it dispatches requests to *.svc for wsdl, help and SOAP as long
397           as ServiceThrottle has MaxConcurrentSessions=1. Also REST calls
398           are still broken.
399
400 2009-10-20  Atsushi Enomoto  <atsushi@ximian.com>
401
402         * HttpReplyChannel.cs, HttpChannelListener.cs, HttpListenerManager.cs:
403           Refactoring on listener manager to correctly handle wsdl and help
404           requests for such case that they conflict in addressing. Now it
405           can correctly distinguish service calls, WSDL requests and help
406           requests when all of them point to "http://localhost/foo.svc"
407           (which is very common case that the user does not change Http*Url).
408
409 2009-10-16  Atsushi Enomoto  <atsushi@ximian.com>
410
411         * ChannelListenerBase.cs : add Properties property to add arbitrary
412           properties handy (only inside this assembly).
413
414 2009-10-16  Atsushi Enomoto  <atsushi@ximian.com>
415
416         * HttpReplyChannel.cs : fix warning.
417
418 2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>
419
420         * HttpReplyChannel.cs, AspNetReplyChannel.cs : set Via property.
421
422 2009-10-15  Atsushi Enomoto  <atsushi@ximian.com>
423
424         * HttpReplyChannel.cs : make sure to release wait lock.
425         * HttpChannelListener.cs : session channels are not supported, so
426           remove relevant NIEs.
427
428 2009-10-15  Sebastien Pouliot  <sebastien@ximian.com>
429
430         * HttpRequestChannel.cs (WaitEnd): Neither Moonlight nor MonoTouch
431         support contexts so we call the non-overloaded WaitOne method 
432         (which defaults to false).
433
434 2009-10-13  Atsushi Enomoto  <atsushi@ximian.com>
435
436         * SvcHttpHandler.cs, AspNetReplyChannel.cs, HttpChannelListener.cs:
437           significant rewrite to cooperate wcf handler and asp.net handler
438           to not mix multiple WCF listener within the asp.net handler.
439           So far it mostly works when 1) there are no ChannelDispatchers
440           that have an identical listen Uri and 2) MaxConcurrentSessions is
441           1 (must be explicitly set).
442
443 2009-10-13  Atsushi Enomoto  <atsushi@ximian.com>
444
445         * CommunicationObject.cs : give better state error description.
446
447 2009-10-09  Atsushi Enomoto  <atsushi@ximian.com>
448
449         * CommunicationObject.cs : OnOpening() and OnOpened() require calls
450           to base methods. This resulted in not a few changes everywhere.
451
452 2009-10-07  Atsushi Enomoto  <atsushi@ximian.com>
453
454         * IHttpCookieContainer.cs : new 2.1-only interface (no use).
455
456 2009-10-06  Atsushi Enomoto  <atsushi@ximian.com>
457
458         * SvcHttpHandler.cs : use file path given by the factory to
459           construct BaseAddresses. Requests to "test.svc/jsdebug" should
460           not be handled as request to "jsdebug" file, it's rather an
461           "argument" to "test.svc".
462
463 2009-10-06  Atsushi Enomoto  <atsushi@ximian.com>
464
465         * SvcHttpHandler.cs, HttpChannelListener.cs : some significant
466           rewrite to handle shutdown situation better. The listeners should
467           not close channels that it opened. Instead, just stop accepting
468           further requests. Removed blocking mutex on WaitForRequest().
469           Now xsp shuts down as expected.
470
471 2009-10-06  Atsushi Enomoto  <atsushi@ximian.com>
472
473         * HttpReplyChannel.cs : lock list when releasing its content contexts.
474         * AspNetReplyChannel.cs : send EndRequest() to handler when it is
475           closing.
476
477 2009-10-06  Atsushi Enomoto  <atsushi@ximian.com>
478
479         * SvcHttpHandlerFactory.cs : remove todo.
480         * ReplyChannelBase.cs : add comment.
481
482 2009-10-02  Atsushi Enomoto  <atsushi@ximian.com>
483
484         * HttpTransportBindingElement.cs, SvcHttpHandlerFactory.cs :
485           revert the change, to use internal asp.net state again.
486         * SvcHttpHandler.cs : add VirtualPathExtension.
487
488 2009-10-02  Atsushi Enomoto  <atsushi@ximian.com>
489
490         * HttpReplyChannel.cs, AspNetReplyChannel.cs, AspNetRequestContext.cs:
491           asp.net response was not written correctly.
492           Fill HttpRequestMessageProperty to get handle WSDL requests
493           processed in ServiceMetadataExtension without NRE.
494           Remove wrong HttpListenerContext iteration at Abort and Close in
495           common base class and move it to non-asp derived channel.
496
497 2009-10-02  Atsushi Enomoto  <atsushi@ximian.com>
498
499         * SvcHttpHandler.cs : remove unused code.
500
501 2009-09-30  Jb Evain  <jbevain@novell.com>
502
503         * HttpRequestChannel.cs: When compiling for MonoTouch, avoid
504         to use any of the remoting features.
505
506 2009-09-30  Atsushi Enomoto  <atsushi@ximian.com>
507
508         * SvcHttpHandlerFactory.cs, HttpTransportBindingElement.cs :
509           use AspNetCompatibilityEnabled.
510         * SvcHttpHandler.cs : disable ApplyConfiguration(). It should be done
511           at ServiceHostBase.
512         * AspNetReplyChannel.cs : remove extra field.
513
514 2009-09-29  Atsushi Enomoto  <atsushi@ximian.com>
515
516         * HttpReplyChannel.cs : remove extra field.
517
518 2009-09-29  Atsushi Enomoto  <atsushi@ximian.com>
519
520         * AspNetRequestContext.cs : remove CWL.
521
522 2009-09-29  Atsushi Enomoto  <atsushi@ximian.com>
523
524         * AspNetReplyChannel.cs, AspNetRequestContext.cs : close HttpContext
525           only after AspNetRequestContext is closed. Do not close it
526           immediately after receiving the context. (HttpRuntime destructs it
527           and further uses then becomes impossible.)
528
529 2009-09-29  Atsushi Enomoto  <atsushi@ximian.com>
530
531         * AspNetReplyChannel.cs, HttpReplyChannel.cs : add some comments.
532         * SvcHttpHandlerFactory.cs, SvcHttpHandler.cs, HttpChannelListener.cs:
533           Make sure that AspNetChannelListener is bound to correct
534           SvcHttpHandler, regardless of specific request URI. It is required
535           for both WSDL requests and RESTful binding requests.
536
537 2009-09-14  Atsushi Enomoto  <atsushi@ximian.com>
538
539         * MessageProperties.cs : fix CopyProperties() behavior to not
540           clear existing items. Make all properties call this[name].
541
542 2009-09-14  Atsushi Enomoto  <atsushi@ximian.com>
543
544         * HttpTransportBindingElement.cs : fix 2.1 build.
545
546 2009-09-14  Atsushi Enomoto  <atsushi@ximian.com>
547
548         * TransportBindingElement.cs : another GetProperty fix, iterate
549           other binding elements.
550
551 2009-09-14  Atsushi Enomoto  <atsushi@ximian.com>
552
553         * HttpTransportBindingElement.cs, PeerTransportBindingElement.cs :
554           some GetProperty() implementation.
555
556 2009-09-14  Atsushi Enomoto  <atsushi@ximian.com>
557
558         * HttpListenerManager.cs : release HttpListener and avoid extra
559           close process more than once.
560
561 2009-09-11  Atsushi Enomoto  <atsushi@ximian.com>
562
563         * HttpChannelListener.cs : do not iterate channel list to close
564           channels which in turn removes them from the list while iteration.
565
566 2009-09-06  Atsushi Enomoto  <atsushi@ximian.com>
567
568         * HttpRequestChannel.cs : Fix message version member comparison.
569           Double-quote SOAPAction. Remove extra Exception.
570         * HttpReplyChannel.cs : ditto for version comparison. Unquote above.
571         * HttpRequestContext.cs : when addressing is None, remove action
572           from the message.
573
574 2009-09-04  Atsushi Enomoto  <atsushi@ximian.com>
575
576         * SvcHttpHandler.cs : set Uri property based on baseAddresses and
577           path, to pick those endpoints that are added at custom factories.
578
579 2009-09-03  Atsushi Enomoto  <atsushi@ximian.com>
580
581         * SvcHttpHandler.cs : apply configuration, and if there is still no
582           endpoint, then add default one.
583
584 2009-09-03  Atsushi Enomoto  <atsushi@ximian.com>
585
586         * SvcHttpHandler.cs : another URL to make relative.
587
588 2009-09-03  Atsushi Enomoto  <atsushi@ximian.com>
589
590         * SvcHttpHandlerFactory.cs : some GetHandler changes.
591         * SvcHttpHandler.cs : significant changes on receiver structure. Now
592           ProcessRequest() stores pending requests (this might be extraneous,
593           but maybe useful when it implements async handler). Also removed
594           reply_channel field as it may become to handle multiple requests.
595         * HttpChannelListener.cs : bind to corresponding SvcHttpHandler.
596         * AspNetReplyChannel.cs : make it receive requests like
597           HttpReplyChannel (for HttpListener) to make them consistent.
598
599 2009-09-03  Atsushi Enomoto  <atsushi@ximian.com>
600
601         * AspNetRequestContext.cs, HttpRequestContext.cs :
602           fix NRE on HttpListenerContext for AspNetRequestContext (mismatch)
603           by splitting HttpListener-based context out from common code base.
604
605 2009-09-03  Atsushi Enomoto  <atsushi@ximian.com>
606
607         * SvcHttpHandler.cs : use baseAddresses in ServiceHost and make URIs
608           relative or absolute. new Uri ("/foobar") doesn't work on non-unix
609           environment.
610
611 2009-09-02  Atsushi Enomoto  <atsushi@ximian.com>
612
613         * SvcHttpHandlerFactory.cs : make use of BuildManager aid. Now it
614           loads types from system assemblies appropriately.
615
616 2009-09-02  Atsushi Enomoto  <atsushi@ximian.com>
617
618         * XmlReaderBodyWriter.cs : implement OnCreateBufferedCopy()
619           for XmlReader input.
620
621 2009-09-02  Atsushi Enomoto  <atsushi@ximian.com>
622
623         * HttpRequestMessageProperty.cs : fix default values.
624
625 2009-08-31  Atsushi Enomoto  <atsushi@ximian.com>
626
627         * HttpChannelFactory.cs, HttpRequestChannel.cs,
628           ChannelFactoryBase.cs : fix to previous one; allow null Via uri.
629           Check ManualAddressing value and reject address-missing ones.
630
631 2009-08-31  Atsushi Enomoto  <atsushi@ximian.com>
632
633         * HttpChannelFactory.cs : reject URI mismatch cases when required.
634
635 2009-08-26  Atsushi Enomoto  <atsushi@ximian.com>
636
637         * PeerDuplexChannel.cs : When received Connect() from neighbor,
638           add the peer to its internal list.
639           Finally ChatApplication got working.
640
641 2009-08-26  Atsushi Enomoto  <atsushi@ximian.com>
642
643         * PeerDuplexChannel.cs : since the channel factory is per instance,
644           do not reuse factory that is tied to different callback instance.
645           It resolved the issue that mono callback client didn't receive
646           messages from the client itself.
647
648 2009-08-26  Atsushi Enomoto  <atsushi@ximian.com>
649
650         * PeerDuplexChannel.cs : in the Welcome response, return the NodeId
651           of the receiver, not the requestor. It resolved the issue that
652           .NET client didn't send further messages to mono server.
653
654 2009-08-26  Atsushi Enomoto  <atsushi@ximian.com>
655
656         * PeerDuplexChannel.cs : remove some comment on [MC-PRCH] behavior.
657         * TcpDuplexSessionChannel.cs, TcpBinaryFrameManager.cs,
658           TcpReplyChannel.cs, TcpRequestChannel.cs,
659           NamedPipeReplyChannel.cs, NamedPipeRequestChannel.cs:
660           rename EndRecord handling method to appropriate one.
661           Write EndRecord from recipient too.
662
663 2009-08-24  Atsushi Enomoto  <atsushi@ximian.com>
664
665         * PeerDuplexChannel.cs : add PeerFlooder header (see comment).
666           Process PeerTo header to upgrade Message To header. Now mono
667           service accepts mono client (somehow not true for .NET client).
668
669 2009-08-24  Atsushi Enomoto  <atsushi@ximian.com>
670
671         * TcpDuplexSessionChannel.cs, TcpRequestChannel.cs,
672           NamedPipeRequestChannel.cs : no need to add ReplyTo headers.
673
674 2009-08-24  Atsushi Enomoto  <atsushi@ximian.com>
675
676         * PeerDuplexChannel.cs : fix PeerTo/PeerVia header namespace.
677
678 2009-08-24  Atsushi Enomoto  <atsushi@ximian.com>
679
680         * TcpDuplexSessionChannel.cs : check channel state before processing
681           Send and Receive.
682
683 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
684
685         * NamedPipeReplyChannel.cs, NamedPipeRequestChannel.cs,
686           NamedPipeChannelFactory.cs, NamedPipeChannelListener.cs :
687           ongoing works, not working at all yet.
688
689 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
690
691         * TcpChannelListener.cs, TcpReplyChannel.cs :
692           cosmetic cleanup and corrections.
693
694 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
695
696         * TcpChannelFactory.cs : use expected Via uri.
697           Remove extra NIE stuff that are implemented in base.
698
699 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
700
701         * TcpDuplexSessionChannel.cs : remove extra code.
702
703 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
704
705         * PeerDuplexChannel.cs : ongoing implementation towards get callback
706           replies on peer connector clients (not working as duplex client
707           callback is not working yet).
708
709 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
710
711         * TcpDuplexSessionChannel.cs : in callback client channels,
712           OperationContext.IncomingMessageHeaders is null.
713
714 2009-08-20  Atsushi Enomoto  <atsushi@ximian.com>
715
716         * MessageHeaders.cs : duplicate check was sloppy.
717
718 2009-08-18  Atsushi Enomoto  <atsushi@ximian.com>
719
720         * Message.cs, MessageImpl.cs, BodyWriter.cs :
721           Implement BodyWriter.OnCreateBufferedCopy() and use it.
722
723 2009-08-18  Atsushi Enomoto  <atsushi@ximian.com>
724
725         * ReplyChannelBase.cs : initialize field.
726
727 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
728
729         * ReplyChannelBase.cs, DuplexChannelBase.cs, RequestChannelBase.cs:
730           implement GetProperty<T>() and return its channel manager.
731
732 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
733
734         * PeerDuplexChannel.cs : ongoing implementation. Fix wrong peer
735           destination address in Connect() request. To repeat sending
736           request, use buffered copy. Set some peer-channel specific
737           header items. (todo: and consume them.)
738
739 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
740
741         * Message.cs : state is set only after WriteBodyContents().
742
743 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
744
745         * MessageHeaders.cs : eliminate wrong use of
746           ReadElementContentAsString() (it is not always simple string).
747
748 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
749
750         * MessageHeaders.cs : when the value is null, do not try to
751           deserialize EndpointAddress.
752
753 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
754
755          * MessageHeader.cs : add Value property. (Forgot dependent change.)
756
757 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
758
759          * MessageHeaders.cs : GetHeader<T>() could mostly skip extra
760            serialization and deserialization of values.
761
762 2009-08-14  Atsushi Enomoto  <atsushi@ximian.com>
763
764         * PeerDuplexChannel.cs : handle Welcome and Refuse at client side.
765           Now simply use connector contract.
766
767 2009-08-14  Atsushi Enomoto  <atsushi@ximian.com>
768
769         * PeerDuplexChannel.cs : handle Disconnect(). Fix URLs a bit.
770
771 2009-08-14  Atsushi Enomoto  <atsushi@ximian.com>
772
773         * TcpChannelListener.cs : do not try to compare dead connection's
774           IPEndPoint (it raises an error).
775
776 2009-08-14  Atsushi Enomoto  <atsushi@ximian.com>
777
778         * MessageHeaders.cs : allow null header value on each specific setter.
779
780 2009-08-14  Atsushi Enomoto  <atsushi@ximian.com>
781
782         * DuplexChannelBase.cs, TcpDuplexSessionChannel.cs :
783           get local and remote address of connected counterpart to get
784           callback channel connected.
785         * PeerDuplexChannel.cs : remove FIXME wrt above.
786
787 2009-08-07  Atsushi Enomoto  <atsushi@ximian.com>
788
789         * PeerDuplexChannel.cs : add fixme comment and remove extra FIXME.
790
791 2009-08-07  Atsushi Enomoto  <atsushi@ximian.com>
792
793         * MessageHeader.cs : fill IsReferenceParameter.
794
795 2009-08-06  Atsushi Enomoto  <atsushi@ximian.com>
796
797         * ReplyChannelBase.cs, TcpReplyChannel.cs, HttpReplyChannel.cs:
798           implement remaining async methods and LocalAddress.
799
800 2009-08-05  Atsushi Enomoto  <atsushi@ximian.com>
801
802         * PeerDuplexChannel.cs : ongoing listener refactoring. Now it uses
803           ServiceHost to process neighbor connection (not sure if this is
804           right way to go though ...).
805
806 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
807
808         * PeerDuplexChannel.cs : ongoing [MC-PRCH] implementation. Rewrote
809           connection part to use new internal IPeerConnectorContract for
810           neighbor connection.
811
812 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
813
814         * ChannelListenerBase_1.cs, TcpChannelListener.cs,
815           PeerChannelListener.cs, HttpChannelListener.cs :
816           support ListenUri accordingly too so that it could be used when
817           it is different from LocalAddress.Uri.
818
819 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
820
821         * TcpChannelFactory.cs, TcpDuplexSessionChannel.cs,
822           TcpRequestChannel.cs : use Via uri to validate and connect.
823
824 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
825
826         * RequestChannelBase.cs, DuplexChannelBase.cs :
827           Return endpoint address Uri when no explicit Via uri is specified.
828         * ChannelFactoryBase.cs : Remove extra async close methods.
829           Add async open methods. Reject null EndpointAddress.
830         * PeerChannelFactory.cs : remove async open methods (now in base).
831
832 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
833
834         * PeerDuplexChannel.cs : set correct message endpoint (To header).
835
836 2009-07-31  Atsushi Enomoto  <atsushi@ximian.com>
837
838         * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
839           DuplexChannelBase.cs : set LocalAddress property at base.
840
841 2009-07-30  Atsushi Enomoto  <atsushi@ximian.com>
842
843         * PeerDuplexChannel.cs : ongoing refactoring to work both as
844           listener and client. Now it creates a listening peer node, and
845           creates a set of TCP client channels for each peer in the mesh.
846
847           (EndpointAddress must be fixed to not filter out correct inputs).
848
849 2009-07-30  Atsushi Enomoto  <atsushi@ximian.com>
850
851         * PeerChannelListener.cs : do not accept more than one channel
852           which results in lots of listening peer node. Only one is enough.
853
854 2009-07-30  Atsushi Enomoto  <atsushi@ximian.com>
855
856         * DuplexChannelBase.cs : fix wrong loop implementation.
857
858 2009-07-28  Atsushi Enomoto  <atsushi@ximian.com>
859
860         * TcpChannelListener.cs : to avoid creating two or more channels
861           for one remote endpoint, check existing remote endpoints and
862           ignore such connections (it must be handled in different thread
863           fired by ChannelDispatcher loop).
864
865 2009-07-28  Atsushi Enomoto  <atsushi@ximian.com>
866
867         * TcpReplyChannel.cs : make sure to not try to receive request when
868           it is already closed.
869
870 2009-07-28  Atsushi Enomoto  <atsushi@ximian.com>
871
872         * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
873           some mannerless clients [*1] do not send EndRecord accordingly, but
874           such channels at listener side should not be kept open. So, close
875           disconnected channels when the listener needs to accept another
876           one.
877           [*1] see olive/samples/wcf/clientbase/samplecli4.cs.
878
879 2009-07-28  Atsushi Enomoto  <atsushi@ximian.com>
880
881         * TcpDuplexSessionChannel.cs :
882           Remove extra NIE overrides.
883           Implement OnAbort() apart from OnClose().
884           For duplex session channel, unlike reply channel, it must acquire
885           TCP connection before OnOpen(), otherwise ChannelDispatcher
886           releases the connection acceptance WaitHandle and the detected
887           live connection may be stolen by another channel acceptor.
888
889 2009-07-28  Atsushi Enomoto  <atsushi@ximian.com>
890
891         * HttpRequestChannel.cs : implement OnAbort().
892
893 2009-07-24  Atsushi Enomoto  <atsushi@ximian.com>
894
895         * PeerChannelListener.cs : set source field. Remove unnecessary NIE.
896         * DuplexChannelBase.cs : comment out some extra fields (so far).
897         * PeerDuplexChannel.cs : pass valid EndpointAddress to PeerNodeImpl.
898
899 2009-07-24  Atsushi Enomoto  <atsushi@ximian.com>
900
901         * PeerCustomResolverBindingElement.cs : add some null checks.
902
903 2009-07-23  Atsushi Enomoto  <atsushi@ximian.com>
904
905         * TcpChannelListener.cs, TcpReplyChannel.cs, TcpRequestChannel.cs:
906           Acquire TcpClient for each request/reply. Now it is fully
907           interoperable with .NET.
908
909 2009-07-23  Atsushi Enomoto  <atsushi@ximian.com>
910
911         * TcpReplyChannel.cs, TcpRequestChannel.cs: it somehow adds/expects
912           ReplyTo and MessageId (though it is session-less), and it expects
913           EndRecord at weird stage, inconsistent with [MC-NMF]...
914           Now .NET service accepts one mono client request.
915
916 2009-07-23  Atsushi Enomoto  <atsushi@ximian.com>
917
918         * TcpReplyChannel.cs, TcpRequestChannel.cs, TcpBinaryFrameManager.cs:
919           Send and receive unsized message terminator at once.
920           Send EndRecord mutually. Got one .net client request working.
921
922 2009-07-23  Atsushi Enomoto  <atsushi@ximian.com>
923
924         * BinaryMessageEncoder.cs : revert the previous dictionary change.
925           They are indeed used for non-in-band-dictionary messages.
926
927 2009-07-23  Atsushi Enomoto  <atsushi@ximian.com>
928
929         * TcpDuplexSessionChannel.cs, TcpBinaryFrameManager.cs:
930           split out binary frame manager class into separate file.
931
932 2009-07-21  Atsushi Enomoto  <atsushi@ximian.com>
933
934         * TcpReplyChannel.cs : new reply channel implementation.
935         * TcpChannelListener.cs : use above for streamed reply channel.
936         * TcpDuplexSessionChannel.cs : more streaming mode support.
937         * TcpRequestChannel.cs : a couple of updates to get it working
938           with the reply channel above. Still some issues on .NET interop.
939
940 2009-07-21  Atsushi Enomoto  <atsushi@ximian.com>
941
942         * RequestContext.cs : added internal derived class that implements
943           some members.
944
945 2009-07-21  Atsushi Enomoto  <atsushi@ximian.com>
946
947         * BinaryMessageEncoder.cs : for non-session reader and writer, do not
948           use dictionary.
949
950 2009-07-17  Atsushi Enomoto  <atsushi@ximian.com>
951
952         * PeerDuplexChannel.cs: add the registered node itself to peer list.
953           (The messaging must be done as TCP request/reply pattern, so it's
954           not working yet.)
955
956 2009-07-17  Atsushi Enomoto  <atsushi@ximian.com>
957
958         * TcpRequestChannel.cs : new channel file (TCP for request/reply
959           messaging pattern). The messaging part is not working yet.
960         * TcpChannelFactory.cs : support IRequestChannel.
961         * TcpDuplexSessionChannel.cs : add unsized message support.
962
963 2009-07-17  Atsushi Enomoto  <atsushi@ximian.com>
964
965         * HttpRequestChannel.cs, RequestChannelBase.cs :
966           A couple of async members are now implemented in the base class.
967           Ditto for EndpointAddress and Via.
968
969 2009-07-10  Atsushi Enomoto  <atsushi@ximian.com>
970
971         * PeerDuplexChannel.cs : now it implements some of node management
972           functionality and Send operation. The receiver part is not yet.
973
974 2009-07-10  Atsushi Enomoto  <atsushi@ximian.com>
975
976         * TcpChannelListener.cs, TcpDuplexSessionChannel.cs : do not pass
977           timeout to channel constructor. it does not make sense.
978
979 2009-07-10  Atsushi Enomoto  <atsushi@ximian.com>
980
981         * PeerChannelFactory.cs, PeerChannelListener.cs : add MessageEncoder
982           as common interface member, and use binary encoder (not text).
983
984 2009-07-09  Atsushi Enomoto  <atsushi@ximian.com>
985
986         * PeerDuplexChannel.cs : PeerNode constructor argument changes.
987
988 2009-07-08  Atsushi Enomoto  <atsushi@ximian.com>
989
990         * PeerDuplexChannel.cs, PeerChannelListener.cs, PeerOutputChannel.cs,
991           PeerInputChannel.cs, PeerChannelFactory.cs : those channels are
992           going to be unified to PeerDuplexChannel. And it is likely that
993           input and output functionalities are to be unified too.
994
995 2009-07-08  Atsushi Enomoto  <atsushi@ximian.com>
996
997         * TcpChannelFactory.cs : (TcpChannelInfo) ease type restriction. I
998           may have to reuse it for peer transport.
999         * PeerChannelListener.cs : add binding member.
1000         * PeerDuplexChannel.cs : remove NIE overrides. Fill fields a bit.
1001
1002 2009-07-08  Atsushi Enomoto  <atsushi@ximian.com>
1003
1004         * ChannelFactoryBase.cs, HttpChannelFactory.cs,
1005           PeerChannelFactory.cs : close opened channels at OnClose() as
1006           documented. Implement async methods.
1007         * PeerChannelListener.cs : removed some NIE overrides.
1008
1009 2009-07-02  Atsushi Enomoto  <atsushi@ximian.com>
1010
1011         * DuplexChannelBase.cs : some more async methods.
1012
1013 2009-06-29  Atsushi Enomoto  <atsushi@ximian.com>
1014
1015         * TcpDuplexSessionChannel.cs : on Abort(), do just Close() within
1016           (almost) no time.
1017         * TcpChannelListener.cs : accept multiple channels at a time.
1018
1019 2009-06-29  Atsushi Enomoto  <atsushi@ximian.com>
1020
1021         * TcpDuplexSessionChannel.cs : do not output all (stored) writer
1022           session strings but output only those new ones in current message.
1023           This fixes inconsistent body output in repetitive use of sender.
1024
1025 2009-06-26  Atsushi Enomoto  <atsushi@ximian.com>
1026
1027         * TcpDuplexSessionChannel.cs : handle EndRecord for repetitive
1028           operation that does not involve session.
1029           Preserve writer session as well as reader session.
1030         * MessageHeaders.cs : take name and namespace into consideration
1031           when creating a serializer.
1032
1033 2009-06-25  Atsushi Enomoto  <atsushi@ximian.com>
1034
1035         * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
1036           Made required changes for repeated use of message exchanges.
1037           Hold binary reader session. The channels use it incrementally.
1038           Preambles are handled at Open, and EndRecords are handled at
1039           Close, Add session shutdown hook here (not working yet though).
1040
1041 2009-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1042
1043         * ChannelListenerBase_1.cs : added cancellation hook here too.
1044           HttpChannelListener.cs : use above.
1045           Do not allow parallel channel creation (this listener does not
1046           allow more than one AcceptChannel().
1047
1048 2009-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1049
1050         * ReplyChannelBase.cs, HttpReplyChannel.cs :
1051           Add cancellation hook for async TryReceiveRequest.
1052
1053 2009-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1054
1055         * HttpChannelListener.cs, HttpListenerManager.cs :
1056           slightly improved BuildChannelListener().
1057           Implement OnAbort() and differentiate it from OnClose().
1058
1059 2009-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1060
1061         * TcpDuplexSessionChannel.cs : remove NIE stubs.
1062
1063 2009-06-18  Atsushi Enomoto  <atsushi@ximian.com>
1064
1065         * DuplexChannelBase.cs : simple async delegate calls here too.
1066
1067 2009-06-16  Atsushi Enomoto  <atsushi@ximian.com>
1068
1069         * ReplyChannelBase.cs : cosmetic dependency reduction on listener.
1070
1071 2009-06-16  Atsushi Enomoto  <atsushi@ximian.com>
1072
1073         * HttpReplyChannel.cs : cosometic simplification.
1074
1075 2009-06-16  Atsushi Enomoto  <atsushi@ximian.com>
1076
1077         * HttpRequestChannel.cs : Fixed timeout handling. It was causing
1078           infinite block in 2.0 profile.
1079
1080 2009-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1081
1082         * TcpChannelListener.cs, TcpDuplexSessionChannel.cs :
1083           more careful close to avoid NRE.
1084
1085 2009-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1086
1087         * HttpChannelListener.cs : do not Close() more than once (though
1088           it is allowed to call it twice, we don't reject it; just ignore).
1089
1090 2009-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1091
1092         * CustomBinding.cs : copy timeouts from argument binding in copy ctr.
1093
1094 2009-06-11  Atsushi Enomoto  <atsushi@ximian.com>
1095
1096         * HttpReplyChannel.cs : reject multiple WaitForRequest calls.
1097           Temporarily disable HTTP Keep-Alive since it somehow results in
1098           wrong reuse of connection (shown as NRE in HttpConnection).
1099           Make sure to close RequestContext which was created from it.
1100         * HttpRequestContext.cs : simplify.
1101
1102 2009-06-11  Atsushi Enomoto  <atsushi@ximian.com>
1103
1104         * HttpChannelListener.cs, TcpChannelListener.cs,
1105           ChannelListenerBase_1.cs : put common internal listener base
1106           and let it handle those async stuff.
1107
1108 2009-06-10  Atsushi Enomoto  <atsushi@ximian.com>
1109
1110         * ReplyChannelBase.cs : fix wrong null delegate check point.
1111
1112 2009-06-10  Atsushi Enomoto  <atsushi@ximian.com>
1113
1114         * HttpReplyChannel.cs, ReplyChannelBase.cs : async operations are
1115           now implemented as virtual in base class. Remove NIEs in http.
1116
1117 2009-06-10  Atsushi Enomoto  <atsushi@ximian.com>
1118
1119         * HttpChannelListener.cs : hack async implementation.
1120
1121 2009-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1122
1123         * HttpListenerManager.cs : oops, extra line removal.
1124
1125 2009-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1126
1127         * HttpChannelManager.cs, HttpListenerManager.cs : rename file too.
1128
1129 2009-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1130
1131         * HttpChannelManager.cs, HttpChannelListener.cs: renaming, as
1132           "ChannelManager" is confusing (there is ChannelManagerBase).
1133
1134 2009-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1135
1136         * HttpChannelManager.cs, HttpTransportBindingElement.cs,
1137           HttpReplyChannel.cs, AspNetReplyChannel.cs, HttpChannelListener.cs:
1138           they should be split into separate listener->reply channel lines
1139           (remove "if (HostingEnvironment.IsAspNet)".)
1140
1141 2009-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1142
1143         * CommunicationObject.cs : OnClosed() requires call to base method.
1144           Close() could rather abort the channel, and Abort() does not
1145           always invke OnAbort().
1146         * ChannelBase.cs : add call to base as above.
1147
1148 2009-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1149
1150         * ClientAccessPolicy.cs: Removed
1151         * CrossDomainAccessManager.cs: Removed
1152         * CrossDomainPolicy.cs: Removed
1153         * HttpRequestChannel.cs: Remove call to CrossDomainAccessManager 
1154         since this is now done inside the BeginGetResponse call (outside
1155         this assembly) for Moonlight (NET_2_1)
1156
1157 2009-06-04  Alan McGovern  <amcgovern@novell.com>
1158
1159         * HttpRequestChannel.cs : Rewrite ProcessRequest to use the async APIs
1160         instead of the sync apis. Prevents a possible deadlock condition in
1161         moonlight. 
1162
1163 2009-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1164
1165         * HttpRequestChannel.cs : that SL2/ML2 does not seem to allow null
1166           callbacks, so add hacky ones.
1167
1168 2009-06-01  Atsushi Enomoto  <atsushi@ximian.com>
1169
1170         * TcpDuplexSessionChannel.cs : WaitForMessage() should not return
1171           true when socket input is not available.
1172
1173 2009-05-29  Atsushi Enomoto  <atsushi@ximian.com>
1174
1175         * TcpDuplexSessionChannel.cs : Moved tcp listener accept to OnOpen().
1176           I cannot precisely identify when EndRecord should be consumed,
1177           so allow it at either at the end of ReadSizedMessage() or on
1178           consuming preamble (it's likely handling EndRecord of previous
1179           message though).
1180
1181           Now duplex IPeerResolverContract communication works between
1182           either of .NET/Mono client and .NET/Mono server.
1183
1184 2009-05-29  Atsushi Enomoto  <atsushi@ximian.com>
1185
1186         * TcpDuplexSessionChannel.cs : looks like I have added some bogus
1187           code. Handle preamble ack on ReadSizedMessage() only at server.
1188           Consume EndRecord from server, at client side. Though it is likely
1189           changed as it's blocking when mono is at server side.
1190
1191 2009-05-29  Atsushi Enomoto  <atsushi@ximian.com>
1192
1193         * TcpDuplexSessionChannel.cs : .NET seems to be based on somewhat
1194           different protocol than existing code with related to preamble ack.
1195           So changed it to work fine with .NET client (finally).
1196
1197 2009-05-28  Atsushi Enomoto  <atsushi@ximian.com>
1198
1199         * MessageBufferImpl.cs : do not output Action twice.
1200
1201 2009-05-28  Atsushi Enomoto  <atsushi@ximian.com>
1202
1203         * MessageBufferImpl.cs : it did not copy headers.
1204         * Message.cs : remove 2_1 conditional implementation for buffered
1205           copy and hence remove bogus code.
1206
1207 2009-05-28  Atsushi Enomoto  <atsushi@ximian.com>
1208
1209         * MessageProperties.cs : copy argument is wrong.
1210
1211 2009-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1212
1213         * PeerCustomResolverBindingElement.cs : some argument check.
1214
1215 2009-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1216
1217         * BinaryMessageEncoder.cs : the serializer somehow leaves binary
1218           xml open, so close the writer as well as open elements.
1219         * TcpDuplexSessionChannel.cs : clear write buffer on each operation.
1220           Do not output EndRecord and SizedMessage at a time.
1221
1222 2009-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1223
1224         * TcpDuplexSessionChannel.cs : there was a miscalculation on the
1225           length of the SizedMessage in the output.
1226
1227 2009-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1228
1229         * CommunicationObject.cs : use sane default timeout.
1230         * PeerCustomResolverBindingElement.cs : check timeout arg sanity.
1231         * TcpDuplexSessionChannel.cs : ditto.
1232
1233 2009-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1234
1235         * TcpDuplexSessionChannel.cs : It seems that buffered stream channel
1236           only accepts buffered messages, so do as such for write buffers.
1237           Add RelatesTo header.
1238
1239 2009-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1240
1241         * DuplexSessionChannelBase.cs, DuplexChannelBase.cs:
1242           rename from former to latter.
1243
1244 2009-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1245
1246         * TcpDuplexSessionChannel.cs : reader does not always return full
1247           buffer (depending on the stream).
1248
1249 2009-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1250
1251         * PeerDuplexChannel.cs, PeerOutputChannel.cs : use new PeerNode.ctor.
1252
1253 2009-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1254
1255         * PeerCustomResolverBindingElement.cs : (Resolve) returned addresses
1256           could be null.
1257
1258 2009-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1259
1260         * ChannelManagerBase.cs : there was annoying non-2.1 stuff.
1261
1262 2009-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1263
1264         * TcpChannelListener.cs, TcpChannelFactory.cs : get reader quotas.
1265
1266 2009-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1267
1268         * ChannelManagerBase.cs : fix wrong session channel detection.
1269
1270 2009-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1271
1272         * BinaryMessageEncoderFactory.cs, BinaryMessageEncoder.cs
1273           This encoder factory implements CreateSessionEncoder() and binary
1274           encoder does support session transmit, in different media type.
1275         * ChannelManagerBase.cs : added utility method to create appropriate
1276           encoder.
1277         * HttpChannelFactory.cs, HttpChannelListener.cs,
1278           MsmqChannelFactory.cs, MsmqChannelListener.cs,
1279           PeerChannelFactory.cs, PeerChannelListener.cs,
1280           TcpChannelFactory.cs, TcpChannelListener.cs : use above.
1281
1282 2009-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1283
1284         * TcpDuplexSessionChannel.cs : add ReplyTo header.
1285
1286 2009-05-21  Atsushi Enomoto  <atsushi@ximian.com>
1287
1288         * DuplexSessionBase.cs : new file, for session implementation.
1289         * TcpDuplexSessionChannel.cs, PeerDuplexChannel.cs,
1290           DuplexSessionChannelBase.cs : changed sync/async implementation
1291           pattern. Now async methods call sync methods using delegates.
1292
1293 2009-05-21  Atsushi Enomoto  <atsushi@ximian.com>
1294
1295         * InputChannelBase.cs, TransportBindingElement.cs, RequestContext.cs:
1296           a few minor API fixes.
1297
1298 2009-05-21  Atsushi Enomoto  <atsushi@ximian.com>
1299
1300         * MessageEncoderFactory.cs : implement CreateSessionEncoder().
1301
1302 2009-05-19  Atsushi Enomoto  <atsushi@ximian.com>
1303
1304         * TcpDuplexSessionChannel.cs : add To header.
1305
1306 2009-05-19  Atsushi Enomoto  <atsushi@ximian.com>
1307
1308         * MessageFault.cs : fix several SOAP12 fault deserialization in xml
1309           parsing.
1310
1311 2009-05-18  Atsushi Enomoto  <atsushi@ximian.com>
1312
1313         * FaultConverter.cs : avoid NRE for null IncomingMessageHeaders.
1314
1315 2009-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1316
1317         * MessageFault.cs : Reason is mandatory. raise XmlException, and
1318           CommunicationException in each CreateFault().
1319
1320 2009-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1321
1322         * TcpDuplexSessionChannel.cs : on listener side, get TcpClient at
1323           Open(). Some (but not all yet) continuous communication works now.
1324           Use ProtocolException. Remove dummy binary session string.
1325
1326 2009-05-14  Atsushi Enomoto  <atsushi@ximian.com>
1327
1328         * TcpDuplexSessionChannel.cs : more [MC-NMF] implementation. Moved
1329           sending/receiving SizedMessageRecord parts to manager class.
1330           Handle writer session, though it is likely broken at dictionary
1331           writer part (no string is written so far).
1332         * BinaryMessageEncoder.cs : add writer session and rename reader
1333           session.
1334
1335 2009-05-14  Atsushi Enomoto  <atsushi@ximian.com>
1336
1337         * TcpDuplexSessionChannel.cs : more [MC-NMF] implementation. Via uri
1338           is mandatory in initiator preamble packet. Handle Fault reply in
1339           initiator preamble.
1340
1341 2009-05-14  Atsushi Enomoto  <atsushi@ximian.com>
1342
1343         * TcpDuplexSessionChannel.cs : ongoing refactoring to collect [MC-NMF]
1344           based communication under TcpBinaryFrameManager class.
1345
1346 2009-05-13  Jb Evain  <jbevain@novell.com>
1347
1348         * MessageHeader.cs: use a SL friendly way of creating an XmlReader
1349         from a StringReader.
1350
1351 2009-05-13  Atsushi Enomoto  <atsushi@ximian.com>
1352
1353         * MessageImpl.cs, MessageHeader.cs : eliminate xlinq in 2.1, and
1354           actually eliminate DOM-based implementation too in 2.0.
1355
1356 2009-04-28  Atsushi Enomoto  <atsushi@ximian.com>
1357
1358         * TcpDuplexSessionChannel.cs : implement in-band dictionary support
1359           in [MC-NMF] and [MC-NBFSE], used in duplex channels. Added some
1360           comments for magic numbers based on [MC-NMF].
1361
1362 2009-04-28  Atsushi Enomoto  <atsushi@ximian.com>
1363
1364         * BinaryMessageEncoder.cs : implement part of in-band dictionary
1365           support for [MC-NBFSE] record in [MC-NMF], in this class.
1366
1367 2009-04-28  Atsushi Enomoto  <atsushi@ximian.com>
1368
1369         * BinaryMessageEncodingBindingElement.cs : clear extra public members.
1370
1371 2009-04-27  Atsushi Enomoto  <atsushi@ximian.com>
1372
1373         * TcpDuplexSessionChannel.cs : implemented some channel methods.
1374
1375 2009-04-27  Atsushi Enomoto  <atsushi@ximian.com>
1376
1377         * BinaryMessageEncoder.cs : use XmlDictionary specified as [MC-NBFS].
1378
1379 2009-04-27  Atsushi Enomoto  <atsushi@ximian.com>
1380
1381         * ChannelManagerBase.cs : implement Open/CloseTimeout correctly.
1382
1383 2009-04-23  Atsushi Enomoto  <atsushi@ximian.com>
1384
1385         * BinaryMessageEncoder.cs : use quotas in binding element.
1386           Implement WriteMessage().
1387
1388 2009-04-22  Atsushi Enomoto  <atsushi@ximian.com>
1389
1390         * PeerCustomResolverBindingElement.cs : do initialize field.
1391
1392 2009-04-21  Atsushi Enomoto  <atsushi@ximian.com>
1393
1394         * PeerCustomResolverBindingElement.cs :
1395           implement full custom resolver.
1396
1397 2009-04-21  Atsushi Enomoto  <atsushi@ximian.com>
1398
1399         * PeerDuplexChannel.cs, PeerChannelListener.cs,
1400           PeerOutputChannel.cs, PeerCustomResolverBindingElement.cs,
1401           PeerChannelFactory.cs : ongoing p2p channel implementation.
1402
1403 2009-04-21  Atsushi Enomoto  <atsushi@ximian.com>
1404
1405         * PnrpPeerResolverBindingElement.cs : sync with PeerResolver changes.
1406
1407 2009-04-21  Atsushi Enomoto  <atsushi@ximian.com>
1408
1409         * BinaryMessageEncodingBindingElement.cs, ChannelBase.cs,
1410           ChannelFactoryBase.cs, WindowsStreamSecurityBindingElement.cs :
1411           implement GetProperty<T>(). Return documented objects or null.
1412
1413 2009-04-20  Atsushi Enomoto  <atsushi@ximian.com>
1414
1415         * PeerChannelFactory.cs, PeerChannelListener.cs,
1416           PeerCustomResolverBindingElement.cs, PeerDuplexChannel.cs
1417           PeerInputChannel.cs, PeerOutputChannel.cs :
1418           new; ongoing peer transport implementation.
1419         * DuplexSessionChannelBase.cs, InputChannelBase.cs
1420           MsmqOutputChannel.cs, OutputChannelBase.cs,
1421           PeerResolverBindingElement.cs, PeerTransportBindingElement.cs,
1422           PnrpPeerResolverBindingElement.cs, TcpDuplexSessionChannel.cs :
1423           several internal changes (either required or for simplification)
1424           for ongoing peer transport implementation.
1425
1426 2009-04-08  Atsushi Enomoto  <atsushi@ximian.com>
1427
1428         * PeerTransportBindingElement.cs : ListenIPAddress is IPAddress.
1429
1430 2009-04-07  Atsushi Enomoto  <atsushi@ximian.com>
1431
1432         * TcpTransportBindingElement.cs : check build-ability before
1433           actually building channels.
1434         * ConnectionOrientedTransportBindingElement.cs : fixed build-ability
1435           conditions according to MSDN.
1436
1437 2009-03-05  Atsushi Enomoto  <atsushi@ximian.com>
1438
1439         * MessageHeader.cs, MessageHeaders.cs, MessageImpl.cs :
1440           handle headers in SL2. Slightly changed 3.0 code too.
1441
1442 2009-03-04  Atsushi Enomoto  <atsushi@ximian.com>
1443
1444         * HttpRequestChannel.cs : use cross domain access manager.
1445
1446 2009-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1447
1448         * Message.cs : (in CreateBufferedCopy) do not pass the entire
1449           message as BodyWriter.
1450           (in GetReaderAtBodyContents) just write body contents.
1451         * MessageImpl.cs : do not try to read body at ctor (fixed tons
1452           of test failures).
1453           Add some state check in GetReaderAtBodyContents().
1454         * XmlReaderBodyWriter.cs : avoid possible extra xmldecl onto output.
1455
1456 2009-02-18  Atsushi Enomoto  <atsushi@ximian.com>
1457
1458         * Message.cs : do not forget to flush.
1459         * HttpRequestChannel.cs : give more exact error info.
1460
1461 2009-02-18  Atsushi Enomoto  <atsushi@ximian.com>
1462
1463         * Message.cs, MessageBufferImpl.cs, XmlReaderBodyWriter.cs :
1464           make buffered copy in ML2 really buffered.
1465
1466 2009-02-12  Atsushi Enomoto  <atsushi@ximian.com>
1467
1468         * Message.cs : if there is no header item to write, do not write
1469           SOAP header element.
1470
1471 2009-01-22  Alan McGovern  <amcgovern@novell.com>
1472
1473         * MessageHeaders.cs : List<T>.RemoveAll(Predicate<T>) doesn't exist in Silverlight.
1474         Rewrite to avoid usage of it.
1475
1476 2009-01-14  Atsushi Enomoto  <atsushi@ximian.com>
1477
1478         * ChannelParameterCollection.cs : implement, rather than NIE.
1479
1480 2008-05-22  Noam Lampert <noaml@mainsoft.com>
1481
1482         * MessageFault.cs: Correctly serialize ExceptionDetails. Expose SimpleMessageFault to allow
1483           internal users to know the type of the detail. 
1484         
1485 2008-05-20  Noam Lampert <noaml@mainsoft.com>
1486
1487         * Message.c: Use private setter for state private variable to ease debugging.
1488                                  Modify ToString not to change the state, as it is called quite often by VS debugger
1489                                  
1490 2008-04-21  Roei Erez <roeie@mainsoft.com>
1491
1492         * HttpChannleManager: Fix for multithreaded use.
1493         * HttpReplyChannel: Fix crash during sutdown.
1494
1495 2008-04-17  Igor Zelmanovich <igorz@mainsoft.com>
1496
1497         * HttpChannleManager: ensure trailing slash in uri.
1498
1499 2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
1500
1501         * added: HttpChannleManager,
1502         * HttpChannelListener: added use of HttpChannelManager
1503
1504 2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
1505
1506         * MessageEncodingBindingElement.cs: fixed ctor
1507
1508 2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
1509
1510         * XmlReaderBodyWriter.cs: fixed ctor, skip xml declaration
1511
1512 2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
1513
1514         * HttpReplyChannel.cs: fixed TryReceiveRequest, fix message header To
1515
1516 2008-04-17  Vladimir Krasnov  <vladimirk@mainsoft.com>
1517
1518         * MessageFault.cs: fixed CreateFault11, implemented "detail"
1519
1520 2008-04-17  Noam Lampert <noaml@mainsoft.com>
1521
1522         * HttpReplyChannel.cs: fix API - Fix crash during service shutdown.
1523
1524 2008-04-13  Igor Zelmanovich <igorz@mainsoft.com>
1525
1526         * BindingElementCollection.cs: fix API - .ctor's signature.
1527
1528 2008-04-10  Eyal Alaluf <eyala@mainsoft.com>
1529
1530         * XmlSerializerBodyWriter.cs: Removed.
1531
1532 2008-03-25  Vladimir Krasnov  <vladimirk@mainsoft.com>
1533
1534         * MessageFault.cs: fixed WriteReason, .net XmlWriter compatible
1535
1536 2008-02-20  Atsushi Enomoto  <atsushi@ximian.com>
1537
1538         * DuplexSessionChannelBase.cs : made it non-session (more reusable).
1539         * TcpChannelFactory.cs, TcpChannelListener.cs :
1540           unify factory and listener into TcpChannelInfo for use in
1541           TCP channel implementation. Do not store stream in the listener.
1542           Factory now uses BinaryMessageEncoder.
1543         * TcpDuplexSessionChannel.cs : changes explained above, and now it
1544           holds TcpClient that the listener has accepted.
1545
1546           tcp-transport-binding-element sample now communicates (though
1547           only when both sides are mono: there seems binary mismatch).
1548
1549 2008-02-20  Atsushi Enomoto  <atsushi@ximian.com>
1550
1551         * TcpTransportBindingElement.cs, TcpConnectionPoolSettings.cs :
1552           clone connection pool settings too.
1553         * NamedPipetransportBindingElement.cs,
1554           NamedPipeConnectionPoolSettings.cs : let's clean them up too (not
1555           being likely implemented though).
1556
1557 2008-02-20  Atsushi Enomoto  <atsushi@ximian.com>
1558
1559         * ConnectionOrientedTransportBindingElement.cs, 
1560           TcpTransportBindingElement.cs : some API updates.
1561           Initialize default values.
1562         * TcpConnectionPoolSettings.cs : new file.
1563
1564 2008-02-18  Atsushi Enomoto  <atsushi@ximian.com>
1565
1566         * ServiceHostParser.cs, SvcHttpHandlerFactory.cs, SvcHttpHandler.cs:
1567           added support for "factory" attribute.
1568
1569 2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>
1570
1571         * HttpRequestContent.cs : consider HttpResponseMessageProperty.
1572
1573 2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>
1574
1575         * HttpRequestChannel.cs : pass response ContentType to ReadMessage().
1576
1577 2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>
1578
1579         * HttpRequestChannel.cs : create WebRequest against To message header
1580           item (if exists).
1581           Consider HttpRequestMessageProperty.
1582           Do not output body when suppressed or the method is GET.
1583
1584 2008-02-15  Atsushi Enomoto  <atsushi@ximian.com>
1585
1586         * HttpChannelListener.cs : BindingContext may not have listenUri
1587           at its .ctor() step.
1588
1589 2008-02-08  Atsushi Enomoto  <atsushi@ximian.com>
1590
1591         * BindingContext.cs : RemainingBindingElements is not just a dummy
1592           collection but is actually user-controlled.
1593
1594 2008-02-08  Atsushi Enomoto  <atsushi@ximian.com>
1595
1596         * TcpChannelFactory.cs, TcpChannelListener.cs, 
1597           HttpChannelFactory.cs, HttpChannelListener.cs,
1598           MsmqChannelFactory.cs, MsmqChannelListener.cs,
1599           TextMessageEncodingBindingElement.cs,
1600           BinaryMessageEncodingBindingElement.cs,
1601           MtomMessageEncodingBindingElement.cs :
1602           message encoder should be retrieved only through public API.
1603         * BindingContext.cs : so my old guess was wrong.
1604
1605         See also: http://blogs.msdn.com/drnick/archive/2006/05/10/594134.aspx
1606
1607 2008-02-05  Atsushi Enomoto  <atsushi@ximian.com>
1608
1609         * HttpTransportBindingElement.cs : implemented copy constructor.
1610
1611 2007-08-20  Atsushi Enomoto  <atsushi@ximian.com>
1612
1613         * HttpRequestChannel.cs, HttpReplyChannel.cs : treat SOAPAction HTTP
1614           header when AddressingVersion is None.
1615
1616 2007-08-20  Atsushi Enomoto  <atsushi@ximian.com>
1617
1618         * MessageHeaders.cs : AddressingVersion.None rejects some WSA
1619           property setters.
1620
1621 2007-08-19  Atsushi Enomoto  <atsushi@ximian.com>
1622
1623         * OneWayBindingElementImporter.cs
1624           CompositeDuplexBindingElementImporter.cs : new files.
1625
1626 2007-08-17  Atsushi Enomoto  <atsushi@ximian.com>
1627
1628         * MessageHeaders.cs : due to the DataContractSerializer.ReadObject()
1629           semantic change, its bool parameter must be false, not true.
1630
1631 2007-07-13  Atsushi Enomoto  <atsushi@ximian.com>
1632
1633         * InputChannelBase.cs, MsmqChannelListener.cs, MsmqInputChannel.cs :
1634           new files. Msmq transport listener Implementation.
1635         * MsmqOutputChannel.cs : implemented Send(). Not sure if it works
1636           (wait for System.Messaging impl.)
1637         * HttpReplyChannel.cs : added comment
1638
1639 2007-07-06  Atsushi Enomoto  <atsushi@ximian.com>
1640
1641         * MsmqChannelFactory.cs MsmqOutputChannel.cs OutputChannelBase.cs :
1642           new files. internal stuff for msmq channel.
1643         * BinaryMessageEncoder.cs : added another .ctor().
1644         * MsmqTransportBindingElement.cs :
1645           implemented [Can]BuildChannelFactory().
1646
1647 2007-07-06  Atsushi Enomoto  <atsushi@ximian.com>
1648
1649         * MsmqBindingElementBase.cs MsmqTransportBindingElement.cs :
1650           initialize some fields.
1651
1652 2007-07-05  Atsushi Enomoto  <atsushi@ximian.com>
1653
1654         * MsmqBindingElementBase.cs MsmqMessageProperty.cs
1655           MsmqTransportBindingElement.cs ITransactedBindingElement.cs :
1656           couple of msmq stubs.
1657
1658 2007-04-02  Atsushi Enomoto  <atsushi@ximian.com>
1659
1660         * SecureMessageGenerator.cs : SecurityContextToken support (though
1661           it is still regarded as invalid by WCF).
1662
1663 2007-03-13  Atsushi Enomoto  <atsushi@ximian.com>
1664
1665         * WSSecurityMessageHeader.cs, SecureMessageGenerator.cs :
1666           make header.Contents.Add() more strict.
1667           Use HasAsymmetricKey to determine whether to use asymmetric algorithm
1668           or not.
1669           Added some hack to allow ssl token external mode.
1670           Commented out such lines that always premised asymmtric key.
1671
1672 2007-03-08  Atsushi Enomoto  <atsushi@ximian.com>
1673
1674         * TransactionFlowBindingElement.cs : forgot necessary Clone().
1675
1676 2007-03-08  Atsushi Enomoto  <atsushi@ximian.com>
1677
1678         * MessageSecurityBindingSupport.cs : support check to create
1679           authenticator is now done in both initiator/recipient sides.
1680         * SecurityRequestContext.cs : don't encrypt WS-Trust RSTR.
1681
1682 2007-03-07  Atsushi Enomoto  <atsushi@ximian.com>
1683
1684         * MessageSecurityBindingSupport.cs : for now, comment out the code
1685           that makes authenticator creation optional.
1686         * SecurityRequestContext.cs : don't decrypt message when it is
1687           WS-Trust messages. Also, do not secure SOAP Fault (it is likely
1688           to fail).
1689         * SecurityChannelListener.cs : GetProperty<T>() now returns
1690           MessageSecurityBindingSupport when requested. It is used by
1691           EndpointDispatcher to check if it supports WS-Trust negotiation.
1692         * ChannelListenerBase.cs :
1693           removed extra TODO and field. Implemented GetProperty<T>().
1694         * Message.cs : In CreateMessage() for SOAP Fault, create
1695           SimpleMessage with IsFault = true.
1696
1697 2007-03-07  Atsushi Enomoto  <atsushi@ximian.com>
1698
1699         * SecurityRequestContext.cs : try to reply fault with the inner
1700           channel when an error occurred internally.
1701         * FaultConverter.cs : implemented based on OperationContext (at normal
1702           state it does not seem to create messages, so I implemented it this
1703           way).
1704
1705 2007-03-07  Atsushi Enomoto  <atsushi@ximian.com>
1706
1707         * TransportBindingElement.cs : implemented GetProperty<T>().
1708         * TransactionFlowBindingElement.cs : on building factory or listener,
1709           reject channel types that cannot build.
1710         * SecurityBindingElement.cs : added some TODO comments.
1711         * HttpTransportBindingElement.cs : GetProperty<T>() should rather
1712           delegate to base, not BindingContext.
1713         * SecurityRequestContext.cs : somewhat late decryption.
1714
1715 2007-03-06  Atsushi Enomoto  <atsushi@ximian.com>
1716
1717         * MessageSecurityBindingSupport.cs,
1718           AsymmetricSecurityBindingElement.cs,
1719           SymmetricSecurityBindingElement.cs :
1720           renamed *SecurityBindingElementSupport to *SecurityCapabilities and
1721           implemented ISecurityCapabilities on them. Now those binding
1722           elements support GetProperty<ISecurityCapabilities>().
1723
1724 2007-03-05  Atsushi Enomoto  <atsushi@ximian.com>
1725
1726         * SecurityBindingElement.cs : SetIssuerBindingContextIfRequired()
1727           will work only for predefined parameter types.
1728
1729 2007-03-01  Atsushi Enomoto  <atsushi@ximian.com>
1730
1731         * MessageSecurityBindingSupport.cs :
1732           Set proper MessageDirection to the requirement after creation.
1733           split CreateTokenAuthenticator() as MessageDirection is different.
1734           Removed extra creation of requirement.
1735
1736 2007-03-01  Atsushi Enomoto  <atsushi@ximian.com>
1737
1738         * MessageSecurityBindingSupport.cs : token authenticator is not
1739           always created on channel-opening stage.
1740         * SecurityBindingElement.cs : use SslSecurityTokenParameters for
1741           Sslnego binding factory method.
1742
1743 2007-02-28  Atsushi Enomoto  <atsushi@ximian.com>
1744
1745         * SecureMessageGenerator.cs : inconsistent ReferenceList has caused
1746           signature velification failure.
1747
1748 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1749
1750         * SecureMessageGenerator.cs : encrypt signature confirmations only
1751           when they are required.
1752
1753 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1754
1755         * SecureMessageGenerator.cs : SignatureConfirmation must be encrypted
1756           when [Signature Protection is true i.e. when we use
1757           SignBeforeEncryptAndEncryptSignature.
1758
1759           With this change finally samplesvc.cs/samplecli.cs became
1760           interoperable(!)
1761
1762 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1763
1764         * SecureMessageDecryptor.cs : signature verification was not done
1765           for endorsing supporting tokens.
1766         * SecureMessageGenerator.cs : moved SignatureConfirmation position
1767           in the security header. Don't output empty ReferenceList.
1768
1769 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1770
1771         * SecureMessageGenerator.cs : signingToken was added before being
1772           initialized and thus caused NRE.
1773
1774 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1775
1776         * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
1777           SecureMessageGenerator.cs : use SHA1 instead of HMACSHA1. Now we
1778           don't need workaround for symmetric key restoration.
1779
1780 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1781
1782         * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
1783           SecureMessageGenerator.cs :
1784           Avoid extra reference search from the request's ReferenceList.
1785           create HMACSHA1 always with the key to compute hash (I'm not sure
1786           it is correct; it is rather to adjust all hash consistent.)
1787
1788 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1789
1790         * SecureMessageDecryptor.cs : verify that endorsing supporting tokens
1791           actually endorsed the primary signature.
1792         * SecureMessageGenerator.cs : implemented endorsing of the primary
1793           signature. So, now supporting tokens are fully implemented.
1794
1795 2007-02-27  Atsushi Enomoto  <atsushi@ximian.com>
1796
1797         * MessageSecurityBindingSupport.cs : so, those supporting tokens are
1798           totally signing tokens.
1799         * SecureMessageGenerator.cs : Endorsing tokens should also be
1800           included in the message. They are just not signed.
1801
1802 2007-02-26  Atsushi Enomoto  <atsushi@ximian.com>
1803
1804         * SecureMessageGenerator.cs : support signing and encryption of
1805           supporting tokens. Some required refactory to do it.
1806         * MessageSecurityBindingSupport.cs : added EncryptedData member.
1807
1808 2007-02-26  Atsushi Enomoto  <atsushi@ximian.com>
1809
1810         * SecureMessageDecryptor.cs : fix exception message.
1811         * WSSecurityMessageHeader.cs, WSSignedXml.cs, WSEncryptedXml.cs :
1812           XmlNamespaceManager is not required for GetIdElement().
1813
1814 2007-02-22  Atsushi Enomoto  <atsushi@ximian.com>
1815
1816         * SecureMessageDecryptor.cs, WSSecurityMessageHeader.cs :
1817           moved decryption part from former file to latter file, to reuse
1818           SignedXml instance (though now I doubt how it actually was good)
1819           which in turn required to replace EncryptedData in
1820           WSSecurityMessageHeader with decrypted one.
1821         * WSEncryptedXml.cs : similar to WSSignedXml.cs, to handle wsu:Id.
1822
1823 2007-02-21  Atsushi Enomoto  <atsushi@ximian.com>
1824
1825         * SecureMessageGenerator.cs : when we create DerivedKeyToken, those
1826           EncryptedData should contain KeyInfo as it is not obvious which key
1827           is used there. .net<->mono DerivedKeyToken introp is done.
1828         * SecureMessageDecryptor.cs : check derived key requirement.
1829           Reduce dom-dependent parts.
1830
1831 2007-02-21  Atsushi Enomoto  <atsushi@ximian.com>
1832
1833         * WSSecurityMessageHeader.cs : ReferenceList needs to be bound to
1834           the related DerivedKeyToken (if any).
1835         * SecureMessageGenerator.cs : largely done with DerivedKeyToken
1836           support. Some refactoring to distinguish deried-token-related
1837           variables.
1838         * SecureMessageDecryptor.cs : removed its own support for derived
1839           key tokens. Now it fully works with DerivedKeySecurityToken.
1840
1841 2007-02-21  Atsushi Enomoto  <atsushi@ximian.com>
1842
1843         * WSSecurityMessageHeader.cs, SecureMessageDecryptor.cs,
1844           SecureMessageDecryptor.cs :
1845           Implemented increment token reading in o:Security, as
1846           DerivedKeyToken could reference to existing wrapped key.
1847           Removed WsscDerivedKeyToken and all relevant code.
1848         * SecureMessageGenerator.cs : replaced WsscDerivedKeyToken with
1849           DerivedKeySecurityToken.
1850
1851 2007-02-16  Atsushi Enomoto  <atsushi@ximian.com>
1852
1853         * SecureMessageGenerator.cs : it was setting security tokens into
1854           incorrect SecurityMessageProperty.
1855           Use correct WrappedKeySecurityToken for EncryptedKeySHA1.
1856           Now it uses SecurityRequestContext instead of just primary key.
1857         * SecureMessageDecryptor.cs : removed extra lines. Limit workarounds
1858           to symmetric reply decryption, which is the only trouble case.
1859           Do not create another SignedXml.
1860         * WSSecurityMessageHeader.cs : SignedXml processing changes above.
1861
1862 2007-02-15  Atsushi Enomoto  <atsushi@ximian.com>
1863
1864         * SecureMessageDecryptor.cs : Now it uses union token resolver and
1865           the resolver works with in-progress token reading in o:Security.
1866         * WSSecurityMessageHeader.cs : now it does not read EncryptedKey
1867           as EncryptedKeyIdentifierClause. It is rather a SecurityToken.
1868         * SecureMessageGenerator.cs : cosmetic refactoring.
1869
1870 2007-02-14  Atsushi Enomoto  <atsushi@ximian.com>
1871
1872         * WSSecurityMessageHeader.cs : read EncryptedKeyIdentifierClause
1873           instead of EncryptedKey.
1874
1875 2007-02-13  Atsushi Enomoto  <atsushi@ximian.com>
1876
1877         * MessageSecurityBindingSupport.cs : SigningToken and EncryptionToken
1878           should not be always prepared at channel Open(). It also caused
1879           that extra token requirements.
1880         * SecureMessageGenerator.cs : use correct key clause for encryption.
1881         * SecureMessageDecryptor.cs : reduce extra key acquisition.
1882
1883 2007-02-06  Atsushi Enomoto  <atsushi@ximian.com>
1884
1885         * MessageSecurityBindingSupport.cs : added CreateTokenAuthenticator()
1886           for supporting 'supporting tokens' .
1887         * SecureMessageGenerator.cs : Supporting token creation is done only
1888           at initiator (not sure if it is supposed that, but for now it is).
1889           Removed extraneous CollectSupportingTokens().
1890         * SecureMessageDecryptor.cs : implemented supporting token
1891           authentication (partly). "Signed" supporting tokens are expected
1892           to work fine.
1893
1894 2007-02-06  Atsushi Enomoto  <atsushi@ximian.com>
1895
1896         * SecureMessageGenerator.cs :
1897           make SignBeforeEncryptAndEncryptSignature working.
1898
1899 2007-02-06  Atsushi Enomoto  <atsushi@ximian.com>
1900
1901         * SecureMessageGenerator.cs : EncryptedKeySHA1 needs key hash, not
1902           the key itself. ProtectionToken is WrappedKey.
1903         * SecureMessageDecryptor.cs : now it is internal encrypted key clause,
1904           not EncryptedKeyIdentifierClause which is not for embedded key.
1905         * MessageProperties.cs : Fixed copy direction in CopyProperties().
1906
1907 2007-02-05  Atsushi Enomoto  <atsushi@ximian.com>
1908
1909         * MessageSecurityBindingSupport.cs : added DefaultKeyWrapAlgorithm
1910           to switch asymmetric and symmetric. Not used yet.
1911         * SecurityRequestChannel.cs : now it pass the request security
1912           property to reply receiver so that it could use the primary key
1913           used at request phase.
1914         * SecurityRequestContext.cs : now it pass the context itself to
1915           reply sender so that it could embed related MessageID.
1916         * SecureMessageGenerator.cs : ongoing changes to support symmetric
1917           binding element. Add RelatesTo output and remove MessageID when
1918           replying to the sender. Added some hacks to get symmetric binding
1919           (kind of) working.
1920         * SecureMessageDecryptor.cs : ditto. Handle embedded encryption key
1921           in SecurityTokenReference (it also involved existing encrypted key 
1922           retrieval). In reply receiver, reuse the key that was used at
1923           request phase. It needs significant token resolution refactoring.
1924
1925 2007-02-02  Atsushi Enomoto  <atsushi@ximian.com>
1926
1927         * MessageSecurityBindingSupport.cs : cosmetic refactoring.
1928         * SecureMessageDecryptor.cs : store token and its authentication
1929           policies into the security property, and reuse it on reply.
1930           Some code refactoring; there is at most one o:Security to solve at
1931           one endpoint (depends on Actor). Some attempt to use correct
1932           token parameters (but for now I have only samples that use x509).
1933         * SecureMessageGenerator.cs : For replying message, use initiator's
1934           signing token as the encryption token. Simply reuse security
1935           property from the input message.
1936
1937           I have some nasty workaround at decryptor for initiator that could
1938           not retrieve decryption key.
1939
1940 2007-02-02  Atsushi Enomoto  <atsushi@ximian.com>
1941
1942         * SecureMessageGenerator.cs, SecurityChannelListener.cs,
1943           SecurityRequestContext.cs, MessageSecurityBindingSupport.cs:
1944           several refactoring on token acquisition. Large part of
1945           MessageSecurityBindingSupport code is unified.
1946
1947 2007-02-02  Atsushi Enomoto  <atsushi@ximian.com>
1948
1949         * MessageProperties.cs : Security property should be one of the items.
1950           Actually many other properties should be similar as well.
1951         * MessageImpl.cs, MessageBufferImpl.cs, Message.cs :
1952           when copying a message, copy properties as well.
1953         * SecurityRequestContext.cs : on replying, pass input 
1954           SecurityMessageProperty to the security generator.
1955         * SecureMessageGenerator.cs : both of above, for SignatureConfirmation
1956           support.
1957         * WSSecurityMessageHeader.cs : fixed lazy .ctor() that did nothing.
1958
1959 2007-02-01  Atsushi Enomoto  <atsushi@ximian.com>
1960
1961         * WSSignedXml.cs:
1962           MessageHeader.cs, Message.cs, WSSecurityMessageHeader.cs,
1963           SecureMessageDecryptor.cs, SecureMessageGenerator.cs:
1964           use new WSSignedXml instead of SignedXml, and remove coexisting
1965           Id and wsu:Id. Now we can live only with wsu:Id and therefore
1966           - our reply messages could be consumed by .NET, and
1967           - .NET signature could be verified.
1968
1969 2007-02-01  Atsushi Enomoto  <atsushi@ximian.com>
1970
1971         * SecureMessageDecryptor.cs : The signing key must be passed as
1972           CheckSignature() argument, not SigningKey.
1973
1974 2007-01-31  Atsushi Enomoto  <atsushi@ximian.com>
1975
1976         * MessageImpl.cs : don't read attribute after ReadStartElement().
1977
1978 2007-01-31  Atsushi Enomoto  <atsushi@ximian.com>
1979
1980         * MessageSecurityBindingSupport.cs : some Release() refactoring.
1981         * SecureMessageGenerator.cs : use correct signing key clause for
1982           SecurityTokenReferenceKeyInfo to be serialized.
1983         * SecureMessageDecryptor.cs : now it can try to parse signature.
1984
1985 2007-01-31  Atsushi Enomoto  <atsushi@ximian.com>
1986
1987         Ongoing changes to support signature confirmation
1988         * SecureMessageGenerator.cs :
1989           Don't output ReplyTo onto reply message.
1990           Write SignatureConfirmation if needed.
1991         * SecureMessageDecryptor.cs :
1992           Some refactoring for header cunsumption. Added commented-out
1993           signature verification part (not working yet, on client side due
1994           to incorrect reply from service and insufficient clause reader).
1995         * WSSecurityMessageHeader.cs :
1996           Added SignatureConfirmation support.
1997           KeyInfoClause for o:SecurityTokenReference should be replaced with
1998           SecurityTokenReferenceKeyInfo.
1999
2000 2007-01-29  Atsushi Enomoto  <atsushi@ximian.com>
2001
2002         * SecureMessageGenerator.cs : support Timestamp signature.
2003           Removed unused code, and extra argument in CreateReference().
2004         * WSSecurityMessageHeader.cs : Timestamp also needs Id for SignedXml.
2005
2006 2007-01-29  Atsushi Enomoto  <atsushi@ximian.com>
2007
2008         * SecureMessageGenerator.cs :
2009           Several fixes to make asymmetric binding working:
2010           - Differentiate signing and encryption token in several areas.
2011           - Fixed signing keyinfo.
2012           Use SenderIdPrefix.
2013           Added initial SecurityMessageProperty handling, not sure if it is
2014           appropriate here though.
2015         * HttpRequestChannel.cs : (some debugging lines)
2016
2017 2007-01-26  Atsushi Enomoto  <atsushi@ximian.com>
2018
2019         Woohoo! Here is a very basic WS-Security compliant message which could
2020         be allowed by Indigo.
2021         * MessageHeader.cs : added Id support for writing.
2022         * Message.cs : added internal BodyId for signature reference.
2023         * MessageImpl.cs : write Body Id if required.
2024         * SecureMessageGenerator.cs : Before signing, the target elements must
2025           be given wsu:Id. Since I still use System.Security.dll, I need some
2026           trick for signing (I give both Id and wsu:Id, former to sign and
2027           latter to be consumed). Maybe I will have to replace xmldsig/xmlenc
2028           implementation later. Now singning mechanism works except for
2029           wsu:Timestamp (which is kind of mandatory).
2030
2031         I can's still consume replies from Indigo but it's a big progress :)
2032
2033 2007-01-26  Atsushi Enomoto  <atsushi@ximian.com>
2034
2035         * MessageHeaderInfo.cs : added internal Id.
2036         * MessageHeader.cs : read and write wsu:Id.
2037         * Message.cs : output wsu namespace if Id exists in any header.
2038         * HttpReplyChannel.cs : (some debugging lines.)
2039         * SecureMessageDecryptor.cs : (remove debugging lines.)
2040         * MessageImpl.cs : removed obsolete code.
2041         * WSSecurityMessageHeader.cs : output "o" prefix.
2042         * SecureMessageGenerator.cs : replaced XmlElement-based header
2043           signing with MessageHeader-based signing, to support Id correctly.
2044
2045 2007-01-15  Atsushi Enomoto  <atsushi@ximian.com>
2046
2047         * SecureMessageGenerator.cs : some more refactoring and code comments.
2048         * MessageSecurityUtility.cs : made decryptor into an instance class,
2049           like I've done for SecureMessageGenerator.
2050         * SecurityRequestContext.cs, SecurityRequestChannel.cs :
2051           dependent changes for above.
2052
2053 2007-01-12  Atsushi Enomoto  <atsushi@ximian.com>
2054
2055         * SecureMessageGenerator.cs : fixed derived keysize. derived key was
2056           causing NRE due to the lack of token reference.
2057           No need to pass doc to SignedXml.ctor() anymore.
2058           Moved ReferenceList before the signature(s).
2059
2060 2007-01-12  Atsushi Enomoto  <atsushi@ximian.com>
2061
2062         * SecureMessageGenerator.cs : add wsu:Timestamp to signing target.
2063           Moved signing key generation code to non-HMACSHA1 signing part.
2064           Don't try to sign wss:Security.
2065           Pass document itself to SignedXml.ctor().
2066           Use temporary DataObjects to avoid adding Ids (not sure what is the
2067           expected processing yet).
2068         * WSSecurityMessageHeader.cs : to support timestamp signing, add
2069           WriteTo() method in WsuTimestamp.
2070
2071 2007-01-12  Atsushi Enomoto  <atsushi@ximian.com>
2072
2073         * SecureMessageGenerator.cs : wrong key was used for signing.
2074           Omit KeyInfo for now - it seems that .net (sometimes?) omits it.
2075
2076 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2077
2078         * SecureMessageGenerator.cs :
2079           Now ID generation process does not modify input message.
2080           Moved derived key generation part into (virtual) signing loop.
2081           MessagePartSpecification support for signing is done.
2082
2083 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2084
2085         * SecureMessageGenerator.cs : some reordering to handle signing and
2086           encryption with supporting tokens. Fixed XPath query bug for
2087           soap header contents (we want s:Header/*, not s:Header).
2088
2089 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2090
2091         * MessageSecurityBindingSupport.cs : more refactoring.
2092           Made it abstract and added Initiator- and Recipient- classes.
2093           Several members were moved to those derived types.
2094         * AsymmetricSecurityBindingElement.cs, 
2095           SymmetricSecurityBindingElement.cs
2096           SecurityChannelFactory.cs, SecurityChannelListener.cs,
2097           SecurityRequestChannel.cs, SecurityOutputChannel.cs,
2098           SecurityRequestContext.cs, SecureMessageGenerator.cs :
2099           All dependent changes by above. Removed ISecurityChannelSource
2100           which became useless.
2101
2102 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2103
2104         * SecureMessageGenerator.cs : encryption parts should exist too.
2105         * AsymmetricSecurityBindingElement.cs
2106           SymmetricSecurityBindingElement.cs,
2107           MessageSecurityBindingSupport.cs : some refactoring.
2108           Split MessageSecurityBindingSupport into security binding element
2109           specific parts and made MessageSecurityBindingSupport concrete.
2110           It is likely split again, next time based on initiator/recipient.
2111
2112 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2113
2114         * MessageSecurityUtility.cs, SecureMessageGenerator.cs :
2115           split encryptor part in the former file into latter file, and
2116           make it nonstatic.
2117         * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
2118           SecurityRequestContext.cs : apply the change above.
2119
2120 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2121
2122         * MessageSecurityBindingSupport.cs :
2123           Fixed incorrect TrgGetValue() use.
2124           Added CollectRecipientSupportingTokens().
2125
2126 2007-01-11  Atsushi Enomoto  <atsushi@ximian.com>
2127
2128         * MessageSecurityUtility.cs: acctually ReferenceList was inside
2129           EncryptedKey. So, when a key itself is used to encrypt data,
2130           ReferenceList is contained by itself.
2131         * MessageSecurityBindingSupport.cs :
2132           added CollectInitiatorSupportingTokens().
2133
2134 2007-01-10  Atsushi Enomoto  <atsushi@ximian.com>
2135
2136         * MessageSecurityUtility.cs: it should support ReferenceList-less
2137           messages.
2138
2139 2007-01-10  Atsushi Enomoto  <atsushi@ximian.com>
2140
2141         * WSSecurityMessageHeader.cs : reverted previous unnecessary change.
2142         * MessageSecurityUtility.cs : there already was uuid.
2143
2144 2007-01-09  Atsushi Enomoto  <atsushi@ximian.com>
2145
2146         * MessageSecurityUtility.cs : replaced EncryptedKey with
2147           WrappedKeySecurityToken, which seems to be in actual use in .net.
2148         * WSSecurityMessageHeader.cs : added internal Guid so that it
2149           could be shared between header items.
2150
2151 2006-12-14  Atsushi Enomoto  <atsushi@ximian.com>
2152
2153         * HttpRequestContext.cs, TextMessageEncoder.cs :
2154           some null arg check.
2155
2156 2006-12-08  Atsushi Enomoto  <atsushi@ximian.com>
2157
2158         * MessageSecurityUtility.cs : reducing DOM dependency. Use KeyInfoNode
2159           for SecurityTokenReference resolution.
2160
2161 2006-12-08  Atsushi Enomoto  <atsushi@ximian.com>
2162
2163         * MessageSecurityUtility.cs : fixed EncryptedData decryption to
2164           consider DerivedKeyTokens correctly.
2165           When creating LocalId, don't add '#' here.
2166
2167 2006-12-07  Atsushi Enomoto  <atsushi@ximian.com>
2168
2169         * MessageSecurityUtility.cs :
2170           handle key mapping for each wsse:Security.
2171
2172 2006-12-07  Atsushi Enomoto  <atsushi@ximian.com>
2173
2174         * WSSecurityMessageHeader.cs : use prefix "c" for ws-secureconv.
2175
2176 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2177
2178         * WSSecurityMessageHeader.cs : write top-level ReferenceList in
2179           wsse:Security.
2180         * MessageSecurityUtility.cs :
2181           Now ReferenceList is placed under wsse:Security as WS-Security 1.1 
2182           suggests, and it is used to dereference decryption targets.
2183           Now it premises multiple wsse:Security elements to read.
2184
2185 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2186
2187         * WSSecurityMessageHeader.cs : don't write o:SecurityTokenReference
2188           manually (and actually the namespace URI was wrong).
2189
2190 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2191
2192         * WSSecurityMessageHeader.cs : improved DerivedKeyToken writing
2193           and reading.
2194         * MessageSecurityUtility.cs : DerivedKeyToken creation.
2195
2196 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2197
2198         * SecurityBindingElement.cs,
2199           SymmetricSecurityBindingElement.cs,
2200           AsymmetricSecurityBindingElement.cs :
2201           implemented SetKeyDerivation().
2202
2203 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2204
2205         * MessageSecurityUtility.cs : don't add KeyInfoClause to EncryptedKey
2206           more than once.
2207
2208 2006-12-06  Atsushi Enomoto  <atsushi@ximian.com>
2209
2210         * MessageBufferImpl.cs : XmlReader-based buffer is not possible, so
2211           don't use it.
2212
2213 2006-12-05  Atsushi Enomoto  <atsushi@ximian.com>
2214
2215         * MessageSecurityUtility.cs : u:Timestamp will be encrypted/signed,
2216           thus move it in front of encryption/signing.
2217
2218 2006-12-04  Atsushi Enomoto  <atsushi@ximian.com>
2219
2220         * TransactionFlowBindingElement.cs : OnOpen()/OnClose() should not
2221           check state by themselves (btw it's not really working).
2222         * HttpChannelListener.cs : If the url does not end with '/' add it
2223           so that it could be fed to HttpListener.
2224
2225 2006-12-04  Atsushi Enomoto  <atsushi@ximian.com>
2226
2227         * HttpChannelFactory.cs : check scheme on CreateChannel.
2228         * MessageHeader.cs : finish IsMessageVersionSupported().
2229
2230 2006-12-04  Atsushi Enomoto  <atsushi@ximian.com>
2231
2232         * FaultConverter.cs : new file, not used yet though.
2233
2234 2006-10-21  Atsushi Enomoto  <atsushi@ximian.com>
2235
2236         * SvcHttpHandler.cs : set GET URL to ServiceMetadataBehavior.
2237
2238 2006-10-20  Atsushi Enomoto  <atsushi@ximian.com>
2239
2240         * SvcHttpHandler.cs : once AspNetReplyChannel get working with HTTP
2241           GET as well as HttpReplyChannel, configuration would be ready now.
2242
2243 2006-10-18  Ankit Jain  <jankit@novell.com>
2244
2245         * TextMessageEncoder.cs (MediaType): Use 'application/soap+xml' for
2246         EnvelopeVersion.Soap12 and 'text/xml' for others.
2247         * HttpReplyChannel.cs (TryReceiveRequest): Revert earlier patch for GET
2248         handling.
2249         Strip '?' from the query string.
2250
2251 2006-10-13  Ankit Jain  <jankit@novell.com>
2252
2253         * MessageVersion.cs (None): Set AddressingVersion.None
2254
2255 2006-10-12  Atsushi Enomoto  <atsushi@ximian.com>
2256
2257         * SvcHttpHandler.cs : added config-based endpoint addition code.
2258           Though due to some weird bug in mono-core it does not seem to work,
2259           so commented out for now.
2260         * HttpReplyChannel.cs : handle wsdl query parameter. btw creating
2261           mex request message might just be wrong.
2262           Use expected MessageVersion by the channel.
2263         * AspNetReplyChannel.cs : ditto. Plus, HTTP GET support.
2264
2265 2006-10-12  Atsushi Enomoto  <atsushi@ximian.com>
2266
2267         * MessageSecurityBindingSupport.cs : added DefaultSignatureAlgorithm
2268           which differs depending on whether it is asymmetric or symmetric.
2269         * SecurityRequestChannel.cs, SecurityRequestContext.cs :
2270           simplify SecureMessage() and DecryptMessage() arguments (just
2271           take MessageSecurityBindingSupport instead of several parameters).
2272         * MessageSecurityUtility.cs :
2273           - simplify SecureMessage() and DecryptMessage() arguments (just
2274             take MessageSecurityBindingSupport instead of several parameters).
2275           - Take token inclusion mode into account. Don't include them when
2276             it is not expected. Also, change the token reference style.
2277           - add wsa:MessageID to the headers.
2278           - For hmac-sha1 signing (default for symmetric binding), use
2279             symmetric key created for encryption as well to create HMACSHA1.
2280           - add Id to wsu:Timestamp.
2281           - start to handle SecurityMessageProperty.
2282         * WSSecurityMessageHeader.cs :
2283           Added Id to WsuTimestamp. Also use prefixes for its XML output.
2284           Changed date format.
2285
2286 2006-10-06  Atsushi Enomoto  <atsushi@ximian.com>
2287
2288         * CommunicationObject.cs : reject faulted state on Open()/Close().
2289         * MessageHeaders.cs : removed extra fields.
2290
2291 2006-10-06  Ankit Jain  <jankit@novell.com>
2292
2293         * HttpReplyChannel.cs (TryReceiveRequest): Handle HTTP GET.
2294
2295 2006-10-05  Atsushi Enomoto  <atsushi@ximian.com>
2296
2297         * MessageSecurityUtility.cs, SecurityRequestContext.cs :
2298           added some FIXMEs and additional arg.
2299
2300 2006-10-05  Atsushi Enomoto  <atsushi@ximian.com>
2301
2302         * MessageSecurityUtility.cs : remove duplicate Action header.
2303
2304 2006-10-05  Atsushi Enomoto  <atsushi@ximian.com>
2305
2306         * MessageFault.cs : partly implemented CreateFault(Message, int).
2307         * Message.cs, MessageImpl.cs, MessageBufferImpl.cs :
2308           handle IsFault correctly in each implementation.
2309
2310 2006-10-04  Ankit Jain  <jankit@novell.com>
2311
2312         * HttpRequestChannel.cs (ProcessRequest): Read till the end.
2313
2314 2006-10-04  Ankit Jain  <jankit@novell.com>
2315
2316         * HttpRequestChannel.cs (ProcessRequest): Temporary workaround for a bug
2317         in WebConnectionStream.
2318
2319 2006-10-04  Ankit Jain  <jankit@novell.com>
2320
2321         * MessageHeaders.cs (To): Use GetHeader<string> till
2322         DataContractSerializer gets ISerializable support.
2323         * CustomBinding.cs (.ctor): Get scheme from TransportBindingElement.
2324
2325 2006-10-04  Ankit Jain  <jankit@novell.com>
2326
2327         * ServiceHostParser.cs (Parse):
2328         (Split): Add some error checks.
2329
2330 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
2331
2332         * SslStreamSecurityBindingElement.cs : updated API to Sep. CTP.
2333         * StreamUpgradeAcceptor.cs : Fix AcceptUpgrade().
2334         * SslStreamSecurityUpgradeProvider.cs,
2335           SslStreamSecurityUpgradeAcceptor.cs :
2336           new files for Ssl upgrade provider implementation.
2337         * MessageSecurityUtility.cs :
2338           Create proper C14NTransform. Don't use enveloped signature
2339           transform but sign every significant bits. On securing messages
2340           use ChannelProtectionRequirements.
2341         * SecurityRequestContext.cs : pass ChannelProtectionRequirements to
2342           SecureMessage().
2343         * MessageEncoder.cs : fix API (missing constraint).
2344         * WSSecurityMessageHeader.cs : it is MustUnderstand.
2345         * StreamUpgradeProvider.cs : API fix and implemented .ctor().
2346         * AsymmetricSecurityBindingElement.cs : default protection order is
2347           SignBeforeEncryptAndEncryptSignature.
2348
2349 2006-09-29  Ankit Jain  <jankit@novell.com>
2350
2351         * SvcHttpHandlerFactory.cs (GetTypeFromSvc): Extract and move code to
2352         ServicHostParser and use that here.
2353         (PrivateBinPath): New.
2354         (GetTypeFromBin): New. Load assembly from PrivateBinPath.
2355         (RemovedCallback): Remove and close the SvcHttpHandler when its
2356         corresponding file (.svc) changes.
2357         * SvcHttpHandler.cs (Close): New. Close the ServiceHost.
2358
2359         * ServiceHostParser.cs : New.
2360         * CachingCompiler.cs : New. Code extracted from
2361         System.Web.Compilation.CachingCompiler
2362         * CompilationException.cs : New. From System.Web.Compilation
2363         * HtmlizedException.cs : New. Likewise.
2364
2365 2006-09-29  Atsushi Enomoto  <atsushi@ximian.com>
2366
2367         * MessageSecurityBindingSupport.cs : For client side, it is always
2368           InitiatorServiceModelSecurityTokenRequirement which should be
2369           created. Fixed wrong client encryption key acquisition.
2370
2371 2006-09-29  Atsushi Enomoto  <atsushi@ximian.com>
2372
2373         * SecurityChannelListener.cs, SecurityRequestContext.cs,
2374           MessageSecurityBindingSupport.cs : made similar changes as factories
2375           to listener so that session channels and input channels would work.
2376           Added authenticator creation.
2377
2378 2006-09-29  Atsushi Enomoto  <atsushi@ximian.com>
2379
2380         * Binding.cs : added missing members.
2381
2382 2006-09-28  Atsushi Enomoto  <atsushi@ximian.com>
2383
2384         * SecurityRequestChannel.cs, SecurityOutputChannel.cs,
2385           MessageSecurityUtility.cs, MessageSecurityBindingSupport.cs :
2386           reduce code duplication between request and output channels.
2387           The common parts are now in MessageSecurityBindingSupport.
2388           Now reduced several arguments in SecureMessage() for client.
2389
2390 2006-09-28  Atsushi Enomoto  <atsushi@ximian.com>
2391
2392         * ChannelFactoryBase.cs : implemented ValidateCreateChannel().
2393
2394 2006-09-28  Atsushi Enomoto  <atsushi@ximian.com>
2395
2396         * AsymmetricSecurityBindingElement.cs,
2397           SecurityChannelListener.cs,
2398           SecurityRequestContext.cs,
2399           SymmetricSecurityBindingElement.cs,
2400           SecurityRequestChannel.cs,
2401           SecurityOutputChannel.cs,
2402           SecurityChannelFactory.cs,
2403           MessageSecurityBindingSupport.cs : 1) Refactoring. 
2404           IMessageSecurityBindingSupport now becomes a class and contains
2405           all the members which resided in ISecurityChannelSource.
2406           Now it takes more constructor params.
2407           Made dependent changes on all sources above.
2408
2409           2) Added SecurityTokenAuthenticator creation in
2410           SecurityRequestChannel (SecurityOutputChannel should do the same).
2411
2412 2006-09-27  Atsushi Enomoto  <atsushi@ximian.com>
2413
2414         * SecurityRequestChannel.cs : ongoing improvements on conditional
2415           key creation. Actually there must be some part that creates an
2416           authenticator (WinFX does that).
2417
2418 2006-09-27  Ankit Jain  <jankit@novell.com>
2419
2420         Add suport for handling .svc files.
2421         * SvcHttpHandlerFactory.cs: New.
2422         * SvcHttpHandler.cs: New.
2423
2424         * HttpChannelListener.cs (PopulateChannel): Use AspNetReplyChannel if in
2425         asp.net environment.
2426         (OnOpen): Do nothing in asp.net environment.
2427         (OnClose): Likewise.
2428         * HttpReplyChannel.cs (HttpRequestContext): Move to ..
2429         * HttpRequestContext.cs: .. here.
2430
2431         * AspNetReplyChannel.cs: New.
2432         * AspNetRequestContext.cs: New.
2433
2434 2006-09-26  Atsushi Enomoto  <atsushi@ximian.com>
2435
2436         * MessageSecurityUtility.cs :
2437           Significantly rewritten decryption parts to respect ReferenceList
2438           to decrypt (so no workaround anymore).
2439           Now e:ReferenceList inside o:Security is treated as the referenced
2440           EncryptedType items are encrypted by 1) the derived key which is
2441           immediately in front of it, or 2) the default key (it is according
2442           to WS-SecureConversation section 9.1). Thus removed immediately
2443           previous hack to auto-fill wsu:Id attributes.
2444
2445           On securing a message, generate correct Id and add DataReference
2446           to ReferenceList properly.
2447
2448 2006-09-26  Atsushi Enomoto  <atsushi@ximian.com>
2449
2450         * WSSecurityMessageHeader.cs : handle ReferenceList. It is being
2451           practically used.
2452
2453 2006-09-26  Atsushi Enomoto  <atsushi@ximian.com>
2454
2455         * WSSecurityMessageHeader.cs : handle DerivedKeyToken as a header content.
2456           Actually WSSecurityTokenSerializer should be able to consume it, but after
2457           spending a lot of time I still cannot successfully read it on WinFX.
2458           Skip ReferenceList for now.
2459         * MessageSecurityUtility.cs :
2460           Replaced some string literals with constants.
2461           Added some workaround for DerivedKeyToken retrieval.
2462           WinFX somehow sends incomplete ISO10126 padding which contains
2463           bigger number than the key size and is rejected by EncryptedXml,
2464           so added DecryptLax() which processes such ones in PaddingMode.None
2465           to workaround it (only for cross-connection between mono and winfx).
2466           Added some incomplete implicit wsu:Id processing.
2467           Don't try to replace SignedXml with EncryptedData. It is not added
2468           to the document tree.
2469
2470 2006-09-25  Atsushi Enomoto  <atsushi@ximian.com>
2471
2472         * MessageSecurityUtility.cs : support message signature encryption. Some
2473           more refactoring.
2474
2475 2006-09-22  Atsushi Enomoto  <atsushi@ximian.com>
2476
2477         * SecurityBindingElement.cs : implement Clone(). Remove some MonoTODOs.
2478
2479 2006-09-22  Atsushi Enomoto  <atsushi@ximian.com>
2480
2481         * MessageSecurityUtility.cs : fix warnings.
2482
2483 2006-09-22  Atsushi Enomoto  <atsushi@ximian.com>
2484
2485         * MessageSecurityUtility.cs : actually there would be more than one
2486           EncryptedData. Decrypt all.
2487
2488 2006-09-22  Atsushi Enomoto  <atsushi@ximian.com>
2489
2490         * MessageSecurityUtility.cs : supply correct URIs in SecureMessage().
2491           Use ISO10126 padding mode (it is not required but in manner).
2492
2493 2006-09-21  Atsushi Enomoto  <atsushi@ximian.com>
2494
2495         * MessageSecurityUtility.cs : now that EncryptedXml decryption bug is
2496           fixed, remove 16 bytes workaround (we still need encryption bugfix in
2497           that class to make it work fine with mono client).
2498           Removed buggy lines that reset decryption key to AES.
2499           Modified GetKey() argument to take EncryptedData/EncryptedKey element.
2500         * WSSecurityMessageHeader.cs :
2501           (SecurityTokenReferenceKeyInfo) support LoadXml.
2502
2503 2006-09-20  Atsushi Enomoto  <atsushi@ximian.com>
2504
2505         * TransactionMessageProperty.cs : new file.
2506
2507 2006-09-20  Atsushi Enomoto  <atsushi@ximian.com>
2508
2509         * ChannelPoolSettings.cs, OneWayBindingElement.cs : build fix, as
2510           gmcs happened to report wrong code.
2511
2512 2006-09-19  Atsushi Enomoto  <atsushi@ximian.com>
2513
2514         * SecurityChannelFactory.cs, SecurityChannelListener.cs :
2515           .ctor() now requires ChannelProtectionRequirements which will be
2516           supplied via BindingParameterCollection.
2517         * SymmetricSecurityBindingElement.cs,
2518           AsymmetricSecurityBindingElement.cs : thus add
2519           ChannelProtectionRequirement parameter to factory/listener.
2520         * SecurityRequestChannel.cs : use recipient token requirement to
2521           create an encryption token. Thus differentiate the logic from
2522           signing (initiator) token.
2523
2524 2006-09-19  Atsushi Enomoto  <atsushi@ximian.com>
2525
2526         * SymmetricSecurityChannelFactory.cs, SecurityChannelFactory.cs :
2527           renamed former to latter.
2528         * SymmetricSecurityChannelListener.cs, SecurityChannelListener.cs :
2529           ditto.
2530
2531 2006-09-19  Atsushi Enomoto  <atsushi@ximian.com>
2532
2533         * MessageSecurityBindingSupport.cs : new internal types to commonize
2534           AsymmetricSecurityBindingElement and SymmetricSecurityBindingElement
2535           and thus make internal factory and listener reusable.
2536         * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs,
2537           SecurityRequestChannel.cs, SecurityOutputChannel.cs,
2538           SymmetricSecurityChannelListener.cs : rewrote dependent parts on
2539           SymmetricSecurityBindingElement, using the new types above.
2540         * SymmetricSecurityBindingElement.cs :
2541           Use SymmetricMessageSecurityBindingSupport.
2542         * AsymmetricSecurityBindingElement.cs :
2543           thus implemented, using AsymmetricMessageSecurityBindingSupport.
2544
2545 2006-09-19  Atsushi Enomoto  <atsushi@ximian.com>
2546
2547         * ChannelFactoryBase.cs : more RC1 update.
2548
2549 2006-09-19  Atsushi Enomoto  <atsushi@ximian.com>
2550
2551         * MessageEncoder.cs, BinaryMessageEncoder.cs, MtomMessageEncoder.cs,
2552           TextMessageEncoder.cs : updated ReadMessage() API to RC1.
2553         * ChannelListenerBase.cs, ChannelListenerBase_1.cs,
2554           ChannelBase.cs : RC1 API updates.
2555         * MessageImpl.cs : implemented Properties.
2556         * HttpReplyChannel.cs : added HttpRequestMessageProperty support.
2557
2558 2006-09-18  Ankit Jain  <jankit@novell.com>
2559
2560         * MessageHeaders.cs (MessageId):
2561         (RelatesTo): UniqueId is not serializable, serialize it as a string.
2562
2563 2006-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2564
2565         * ChannelParameterCollection.cs : new file.
2566         * LayeredOutputChannel.cs, SecurityOutputChannel.cs :
2567           new files for IOutputChannel implementation.
2568         * OneWayBindingElement.cs : hacky implementation.
2569         * SymmetricSecurityChannelFactory.cs : support IOutputChannel.
2570         * MessageSecurityUtility.cs : now create identifier from the security
2571           token and the token parameters which is added as an argument.
2572         * SecurityRequestContext.cs,
2573           SecurityRequestChannel.cs : SecureMessage() argument changes.
2574           Set MessageSecurityVersion (SecurityTokenVersion) to the token
2575           requirement.
2576
2577 2006-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2578
2579         * HttpRequestChannel.cs : close the HttpWebRequest.
2580
2581 2006-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2582
2583         * HttpRequestChannel.cs,
2584           HttpChannelFactory.cs : implement async request/reply.
2585         * HttpChannelFactory.cs :
2586           verify factory state when creating a channel.
2587
2588 2006-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2589
2590         * MessageEncoder.cs, TextMessageEncoder.cs, MtomMessageEncoder.cs,
2591           BinaryMessageEncoder.cs : added message version mismatch check.
2592
2593 2006-09-15  Atsushi Enomoto  <atsushi@ximian.com>
2594
2595         * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs :
2596           Making incomplete changes to handle different tokens for encryption
2597           and signature.
2598         * SymmetricSecurityChannelFactory.cs, SecurityRequestChannel.cs :
2599           split channel implementation classes out to the latter file.
2600         * MessageSecurityUtility.cs : seems like there is
2601           TimeStampValidityDuration property, so use it (incomplete; a server
2602           needs another love).
2603
2604 2006-09-12  Atsushi Enomoto  <atsushi@ximian.com>
2605
2606         * MessageSecurityUtility.cs, SymmetricSecurityChannelFactory.cs,
2607           SecurityRequestContext.cs : now that we have key identifier clause
2608           and working ResolveKeyIdentifierClause(), just create keys inside
2609           SecureMessage(). Add KeyInfo to the xmldsig.
2610
2611 2006-09-12  Atsushi Enomoto  <atsushi@ximian.com>
2612
2613         * SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
2614           pass SecurityKeyIdentifierClause to SecureMessage().
2615         * SecurityBindingElement.cs : set X509ReferenceStyle as Thumbprint
2616           for IssuedToken binding element.
2617         * SymmetricSecurityChannelListener.cs : removed hack to just create
2618           X509 security token, and implemented correct token creation.
2619         * WSSecurityMessageHeader.cs : added new KeyInfoClause type that
2620           wraps SecurityTokenReference element.
2621         * MessageSecurityUtility.cs : use the above.
2622
2623 2006-09-08  Atsushi Enomoto  <atsushi@ximian.com>
2624
2625         * MessageSecurityUtility.cs : raise MessageSecurityException when it
2626           could not find a security header.
2627         * SymmetricSecurityChannelFactory.cs : now it also supports
2628           IRequestSessionChannel. Extracted SecurityRequestChannel out from
2629           the factory type.
2630
2631 2006-09-08  Atsushi Enomoto  <atsushi@ximian.com>
2632
2633         * SecurityRequestContext.cs : moved securing message part to
2634           MessageSecurityUtility.cs.
2635         * MessageSecurityUtility.cs : the change above.
2636           use DateTime.Now for timestamp basis. Don't append signature to
2637           the document. Instead it is added to the header. Capture body
2638           content instead of the body itself.
2639         * SymmetricSecurityChannelFactory.cs : decrypt reply message to
2640           be processed by upper layers.
2641
2642 2006-09-08  Atsushi Enomoto  <atsushi@ximian.com>
2643
2644         * MessageSecurityUtility.cs, WSSecurityMessageHeader.cs,
2645           SymmetricSecurityChannelListener.cs,
2646           SymmetricSecurityChannelFactory.cs, SecurityRequestContext.cs :
2647           more refactoring. Request serialization became much more conformant
2648           and add required header items.
2649           Security Token retrieval is needed to send it in the request.
2650           Fixed wrong key encryption.
2651
2652 2006-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2653
2654         * SecurityRequestContext.cs : the workaround was not functional.
2655
2656 2006-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2657
2658         * SecurityRequestContext.cs : some more refactoring. Use EncryptedXml
2659           API, especially ReplaceData(), instead of native crypto stuff.
2660         * WSSecurityMessageHeader.cs : handle dsig:Signature as well (for
2661           MessageProtectionOrder.SignBeforeEncrypt).
2662
2663 2006-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2664
2665         * SecurityRequestContext.cs : label should be combined of both
2666           the client's and the server's.
2667
2668 2006-09-06  Atsushi Enomoto  <atsushi@ximian.com>
2669
2670         * SecurityRequestContext.cs : enable key derivation (though for now
2671           GenerateDerivedKey() is unimplemented). Create meaningful,
2672           decrypted request message to be consumed by the upper layer.
2673
2674 2006-09-06  Atsushi Enomoto  <atsushi@ximian.com>
2675
2676         * SecurityRequestContext.cs : implement Close() and Reply().
2677           ongoing implementation of Reply(TimeSpan).
2678         * MessageSecurityUtility.cs : new file to collect utility methods.
2679         * SymmetricSecurityChannelFactory.cs : moved securing message code
2680           to the above file.
2681         * SymmetricSecurityChannelListener.cs : tiny renaming.
2682
2683 2006-09-06  Atsushi Enomoto  <atsushi@ximian.com>
2684
2685         * SecurityRequestContext.cs : security header is also stored.
2686           removed NotImpl.
2687         * WSSecurityMessageHeader.cs : read EncryptedKey and EncryptedData
2688           as well.
2689
2690 2006-09-06  Atsushi Enomoto  <atsushi@ximian.com>
2691
2692         * SymmetricSecurityChannelFactory.cs : tiny progress on securing
2693           message.
2694
2695 2006-09-05  Atsushi Enomoto  <atsushi@ximian.com>
2696
2697         * SymmetricSecurityChannelFactory.cs : specify KeyUsage.Exchange
2698           so that it retrieves the security key in that manner.
2699
2700 2006-09-05  Atsushi Enomoto  <atsushi@ximian.com>
2701
2702         * Binding.cs : MessageVersion is null when there is no
2703           MessageEncodingBindingElement.
2704         * Message.cs : null arg check.
2705
2706 2006-09-05  Atsushi Enomoto  <atsushi@ximian.com>
2707
2708         * ChannelPoolSettings.cs, OneWayBindingElement.cs : new files.
2709
2710 2006-09-04  Atsushi Enomoto  <atsushi@ximian.com>
2711
2712         * SymmetricSecurityChannelListener.cs, SecurityRequestContext.cs, 
2713           LayeredReplyChannel.cs, LayeredCommunicationObject.cs,
2714           LayeredRequestChannel.cs : some refactoring.
2715         * SymmetricSecurityChannelFactory.cs :
2716           ongoing secure message creation implementation.
2717
2718 2006-09-01  Atsushi Enomoto  <atsushi@ximian.com>
2719
2720         * SymmetricSecurityBindingElement.cs :
2721           pass specific ServiceCredentialsSecurityTokenManager type to
2722           SymmetricSecurityChannelListener as it needs ServiceCertificate.
2723         * SymmetricSecurityChannelListener.cs :
2724           get service certificate. It's a temporary hack.
2725           Move RequestContext code to below.
2726         * SecurityRequestContext.cs : new file.
2727         * WSSecurityMessageHeader.cs : implementing Read(), but to finish
2728           it I have to finish decryption of the incoming message.
2729
2730 2006-08-31  Atsushi Enomoto  <atsushi@ximian.com>
2731
2732         * MessageImpl.cs : don't write attributes on the first body content
2733           element *on soap Body element*.
2734         * MessageBufferImpl.cs : don't throw ArgumentNullException.
2735           ObjectDisposedException is appropriate.
2736         * MessageHeader.cs : (RawMessageHeader) don't write element itself
2737           in OnWriteHeader*Contents*().
2738
2739 2006-08-31  Atsushi Enomoto  <atsushi@ximian.com>
2740
2741         * WSSecurityMessageHeader.cs : new file.
2742         * SymmetricSecurityChannelFactory.cs :
2743           moved WSSecurityHeader and related types to the above.
2744         * SymmetricSecurityChannelListener.cs :
2745           reject SOAP-env-less message.
2746
2747 2006-08-31  Atsushi Enomoto  <atsushi@ximian.com>
2748
2749         * SecurityChannelListener.cs, SymmetricSecurityChannelListener.cs :
2750           renamed former to latter.
2751         * SymmetricSecurityChannelFactory.cs :
2752           create requirements every time. It is also likely that I need
2753           another requirement instance to get service credentials here.
2754
2755 2006-08-30  Atsushi Enomoto  <atsushi@ximian.com>
2756
2757         * SymmetricSecurityBindingElement.cs : make BuildChannelListener()
2758           similar to BuildChannelFactory() (set credentials, issuer binding
2759           context etc.).
2760         * SecurityChannelListener.cs :
2761           more ongoing security support implementation.
2762         * SymmetricSecurityChannelFactory.cs :
2763           moved GetSecurityKey() to SymmetricSecurityRequestChannel.
2764
2765 2006-08-29  Atsushi Enomoto  <atsushi@ximian.com>
2766
2767         * SecurityChannelListener.cs, SymmetricSecurityBindingElement.cs :
2768           Renamed SecurityChannelListener to SymmetricSecurityChannelListener.
2769           Implementation is underway.
2770         * LayeredReplyChannel.cs :
2771           like LayeredRequestChannel, use ChannelListenerBase to provide
2772           default timeouts.
2773
2774 2006-08-29  Atsushi Enomoto  <atsushi@ximian.com>
2775
2776         * MessageHeader.cs : added another implementation type that uses
2777           XmlElement, for buffering purpose.
2778         * MessageImpl.cs : Header item types are user-driven by
2779           MessageHeader.GetHeader<T>(int), so at storing phase just store
2780           nodes as XmlElement.
2781         * MessageHeaders.cs : avoid dumping XmlNode to string to create
2782           another XmlReader.
2783
2784 2006-08-28  Atsushi Enomoto  <atsushi@ximian.com>
2785
2786         * SymmetricSecurityBindingElement.cs : find ClientCredentials from
2787           BindingParameterCollection, not from binding element properties.
2788
2789 2006-08-28  Atsushi Enomoto  <atsushi@ximian.com>
2790
2791         * SecurityChannelFactory.cs, SymmetricSecurityChannelFactory.cs :
2792           renamed former to latter.
2793
2794 2006-08-25  Atsushi Enomoto  <atsushi@ximian.com>
2795
2796         * SecurityBindingElement.cs : SetIssuerBindingContext should also
2797           work for SslSecurityTokenParameters.
2798
2799 2006-08-24  Atsushi Enomoto  <atsushi@ximian.com>
2800
2801         * SecurityBindingElement.cs :
2802           Added SetIssuerBindingContextIfRequired().
2803         * SecurityChannelFactory.cs :
2804           Changed .ctor() arg again, just to receive binding element.
2805         * SymmetricSecurityBindingElement.cs :
2806           Call SetIssuerBindingContextIfRequired() in BuildChannelFactory().
2807           SymmetricSecurityChannelFactory .ctor() arg changes.
2808           "ProtectionTokenParameters" is not passed now.
2809
2810 2006-08-23  Atsushi Enomoto  <atsushi@ximian.com>
2811
2812         * SymmetricSecurityBindingElement.cs : requirements should be
2813           filled at InitializeSecurityTokenParameters as long as possible.
2814           SymmetricSecurityChannelFactory<T> now does not receive
2815           requirements (it now creates one inside it) at .ctor().
2816         * SecurityChannelFactory.cs : remove requirement argument.
2817
2818 2006-08-23  Atsushi Enomoto  <atsushi@ximian.com>
2819
2820         * SymmetricSecurityBindingElement.cs : implemented copy constructor.
2821
2822 2006-08-22  Atsushi Enomoto  <atsushi@ximian.com>
2823
2824         * SymmetricSecurityBindingElement.cs :
2825           MessageSecurityVersion property is of type SecurityTokenVersion.
2826         * SecurityBindingElement.cs :
2827           Implemented CreateSecureConversationBindingElement().
2828           For CreateIssuedTokenBindingElement(), ProtectionTokenParameters is
2829           the argument IssuedSecurityTokenParameters itself.
2830
2831 2006-08-22  Atsushi Enomoto  <atsushi@ximian.com>
2832
2833         * SymmetricSecurityBindingElement.cs :
2834           CreateSecurityTokenManager() can be directly used now. 
2835           Use CallInitializeSecurityTokenRequirement() to fill requirement
2836           properties.
2837
2838 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2839
2840         * ChannelFactoryBase.cs : GetProperty() is virtual.
2841
2842 2006-08-14  Atsushi Enomoto  <atsushi@ximian.com>
2843
2844         * SymmetricSecurityBindingElement.cs : in BuildChannelFactory(),
2845           create token manager, token parameters and token requirements,
2846           and fill some requirements.
2847         * TransportBindingElement.cs, HttpTransportBindingElement.cs,
2848           TextMessageEncodingBindingElement.cs : workaround to not throw NIE.
2849         * BindingContext.cs : implemented RemainingBindingElements.
2850           kill "no remaining binding element" error in GetInnerProperty()
2851         * SecurityChannelFactory.cs : now it became 
2852           SymmetricSecurityChannelFactory, thus soon to be renamed.
2853           Several ongoing actual security resolution is on.
2854
2855 2006-08-11  Atsushi Enomoto  <atsushi@ximian.com>
2856
2857         * CommunicationObject.cs :
2858           add GetCommunicationObjectType() and use it.
2859         * ChannelFactoryBase.cs, ChannelListenerBase_1.cs :
2860           use ThrowIfDisposedOrNotOpen().
2861         * LayeredCommunicationObject.cs : have similar ThrowIf...() methods
2862           to CommunicationObject. Make it IDisposable.
2863         * LayeredRequestChannel.cs : use above.
2864         * SecurityChannelFactory.cs : removed state check as it is done at
2865           above class.
2866
2867 2006-08-10  Atsushi Enomoto  <atsushi@ximian.com>
2868
2869         * SecurityBindingElement.cs : (CanBuildChannelFactory and
2870           CanBuildChannelListener) directly dispatch to BindingContext.
2871         * SymmetricSecurityBindingElement.cs : require protection token
2872           parameters before building a channel or a listener.
2873         * ChannelFactoryBase.cs : raise an error when a channel is being
2874           created without opening the factory.
2875         * ChannelListenerBase_1.cs : ditto for the listener.
2876         * SecurityChannelFactory.cs : before sending a request, it must be
2877           opened.
2878
2879 2006-08-07  Atsushi Enomoto  <atsushi@ximian.com>
2880
2881         * MessageBufferImpl.cs : initialize fields.
2882           workaround BufferSize just to return 0.
2883         * MessageImpl.cs : for BodyWriter, don't use DefaultMessageBuffer
2884           which does not support multi time write.
2885         * Message.cs : implemented State.
2886
2887 2006-08-07  Atsushi Enomoto  <atsushi@ximian.com>
2888
2889         * Message.cs : OnGetBodyAttribute() cannot return anything unless it
2890           is consuming XmlReader.
2891           Implemented OnCreateBufferedCopy(), to return XPathMessageBuffer.
2892         * MessageBuffer.cs : implemented CreateNavigator().
2893         * MessageBufferImpl.cs : added XPathMessageBuffer class.
2894
2895         I kinda know that MS heavily depends on binary XmlReader and may have
2896         XPathNavigator implementation based on the binary stuff, but at
2897         least for now we have almost no motivation to mimick it.
2898
2899 2006-08-07  Atsushi Enomoto  <atsushi@ximian.com>
2900
2901         * SecurityChannelFactory.cs : a bit more of security header code.
2902
2903 2006-08-04  Atsushi Enomoto  <atsushi@ximian.com>
2904
2905         * SymmetricSecurityBindingElement.cs :
2906           set default MessageProtectionOrder in every construction.
2907
2908 2006-08-03  Atsushi Enomoto  <atsushi@ximian.com>
2909
2910         * LayeredRequestChannel.cs, SecurityChannelFactory.cs : 
2911           changed to require ChannelFactoryBase to support default timeout.
2912           Made some methods non-virtual. Preparing code to add security
2913           headers (empty yet).
2914         * SecurityBindingElement.cs : implemented several factory methods
2915           that return SymmetricSecurityBindingElement.
2916
2917 2006-08-02  Atsushi Enomoto  <atsushi@ximian.com>
2918
2919         * IStreamUpgradeBindingElement.cs,
2920           StreamUpgradeBindingElement.cs : renamed from former to latter.
2921
2922 2006-08-02  Atsushi Enomoto  <atsushi@ximian.com>
2923
2924         * IStreamUpgradeBindingElement.cs : API update, soon to be renamed.
2925
2926 2006-07-31  Ankit Jain  <jankit@novell.com>
2927
2928         * MessageHeaders.cs (From): Use Constants.WSA1
2929         (MessageId): Implement the same pattern as other properties (From etc).
2930
2931 2006-07-28  Atsushi Enomoto  <atsushi@ximian.com>
2932
2933         * LocalClientSecuritySettings.cs : initialize IdentityVerifier as well.
2934         * SecurityBindingElement.cs : some cosmetic changes.
2935
2936 2006-07-28  Atsushi Enomoto  <atsushi@ximian.com>
2937
2938         * SecurityBindingElement.cs : LocalClientSettings and 
2939           LocalServiceSettings returns an instance for each.
2940         * LocalClientSecuritySettings.cs : initialized fields.
2941
2942 2006-07-28  Atsushi Enomoto  <atsushi@ximian.com>
2943
2944         * LocalClientSecuritySettings.cs : moved from S.SM.Description, and
2945           kinda implemented Clone() just with MemberwiseClone().
2946
2947 2006-07-27  Ankit Jain  <jankit@novell.com>
2948
2949         * MessageHeaders.cs (set_To): Use Uri.AbsoluteUri .
2950         * MessageHeader.cs (knownTypes): New. Known type array containing
2951         EndpointAddress10.
2952         (CreateHeader): Use knownTypes with the DataContractSerializer .ctor
2953
2954 2006-07-21  Atsushi Enomoto  <atsushi@ximian.com>
2955
2956         * LayeredRequestChannel.cs, LayeredReplyChannel.cs,
2957           LayeredCommunicationObject.cs,
2958           SecurityChannelFactory.cs, SecurityChannelListener.cs :
2959           new files to support security channels, though right now they
2960           just pass inner channels through.
2961         * SymmetricSecurityBindingElement.cs : use above.
2962
2963 2006-07-21  Atsushi Enomoto  <atsushi@ximian.com>
2964
2965         * AsymmetricSecurityBindingElement.cs,
2966           SymmetricSecurityBindingElement.cs :
2967           Default SecurityTokenParameters is null.
2968
2969 2006-07-20  Atsushi Enomoto  <atsushi@ximian.com>
2970
2971         * AsymmetricSecurityBindingElement.cs : remove NotImpl for now.
2972
2973 2006-07-20  Atsushi Enomoto  <atsushi@ximian.com>
2974
2975         * Message.cs : When EnvelopeVersion is None, don't write SOAP
2976           envelope.
2977         * MessageHeader.cs : don't write headers when EnvelopeVersion is None.
2978         * MessageHeaders.cs : When EnvelopeVersion is None, don't output
2979           headers. When AddressingVersion is None, don't output addressing
2980           headers as well, except for Action which is still needed by
2981           service dispatcher.
2982
2983 2006-07-20  Atsushi Enomoto  <atsushi@ximian.com>
2984
2985         * MessageHeaders.cs : changed specific properties to find it from
2986           headers as Action property does (local variables won't be set by
2987           setter). Cache serializers. Check null serializer arguments.
2988           For EndpointAddress, GetHeader<T>() shouldn't use serializer.
2989
2990 2006-07-19  Atsushi Enomoto  <atsushi@ximian.com>
2991
2992         * MessageHeader.cs : WriteTo() should treat EndpointAddress to not
2993           use XmlObjectSerializer (since it is not data contract type).
2994
2995 2006-07-18  Atsushi Enomoto  <atsushi@ximian.com>
2996
2997         * MessageImpl.cs : Improved ReadHeaders().
2998           For certain header items, use EndpointAddress.ReadFrom().
2999
3000 2006-07-18  Atsushi Enomoto  <atsushi@ximian.com>
3001
3002         * AsymmetricSecurityBindingElement.cs :
3003           it is not ISecurityCapabilities anymore.
3004
3005 2006-07-18  Atsushi Enomoto  <atsushi@ximian.com>
3006
3007         * MessageVersion.cs : added None.
3008
3009 2006-07-14  Atsushi Enomoto  <atsushi@ximian.com>
3010
3011         * Message.cs : GetReaderAtBodyContents() implementation using
3012           writer methods.
3013
3014 2006-07-13  Atsushi Enomoto  <atsushi@ximian.com>
3015
3016         * Message.cs : CreateMessage(version,action,xmlReader) incorrectly
3017           used MessageVersion.Default.
3018
3019 2006-07-12  Duncan Mak  <duncan@novell.com>
3020
3021         * MessageBuffer.cs (MessageContentType): Return
3022         "application/soap+msbin1".
3023
3024         * MessageImpl.cs (EmptyMessage.OnCreateBufferedCopy):
3025         (SimpleMessage.OnCreateBufferedCopy):
3026         (XmlReaderMessage.OnCreateBufferedCopy): Hook up with the new
3027         MessageBuffer implementations.
3028
3029         * MessageBufferImpl.cs: Concrete implmentations for MessageBuffer.
3030         (DefaultMessageBuffer): Used by EmptyMessage and SimpleMessage.
3031         (XmlReaderMessageBuffer): Used by XmlReaderMessage.
3032
3033 2006-07-12  Atsushi Enomoto  <atsushi@ximian.com>
3034
3035         * MessageImpl.cs : Action should be added in request messages. Omit
3036           it only in reply message, thus moved to dispatcher logic.
3037
3038 2006-07-12  Ankit Jain  <jankit@novell.com>
3039
3040         * HttpRequestChannel.cs (HttpRequestChannel.Request): Workaround for a
3041         bug in WebConnectionStream.
3042         * MessageHeaders.cs (MessageHeaders.From):
3043         (MessageHeaders.ReplyTo):
3044         (MessageHeaders.To): Add the corresponding MessageHeader on set.
3045
3046 2006-07-11  Atsushi Enomoto  <atsushi@ximian.com>
3047
3048         * MessageImpl.cs : when AddressingVersion is None (e.g. POX), don't
3049           add SOAP Action to the response at any time.
3050
3051 2006-07-10  Atsushi Enomoto  <atsushi@ximian.com>
3052
3053         * SymmetricSecurityBindingElement.cs,
3054           SecurityBindingElement.cs : They are not ISecurityCapabilities now.
3055           Implemented .ctor() and some properties.
3056
3057 2006-07-10  Atsushi Enomoto  <atsushi@ximian.com>
3058
3059         * TransactionFlowBindingElement.cs : new file.
3060         * HttpTransportBindingElement.cs : added missing KeepAliveEnabled.
3061
3062 2006-07-06  Atsushi Enomoto  <atsushi@ximian.com>
3063
3064         * MessageFault.cs :
3065           DefaultAction vanished. CreateFault() now takes bufferSize arg.
3066         * MessageHeaders.cs : ArgumentException -> MessageHeaderException.
3067         * AddressingVersion.cs : added None. Equals() and GetHashCode()
3068           vanished (there is anyways no way to instantiate this type).
3069         * MessageVersion.cs : added Soap11 and Soap12.
3070         * TextMessageEncoder.cs : silly quotation mark wrapper disappeared
3071           in June CTP. goodie.
3072
3073 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3074
3075         * MtomMessageEncoder.cs, BinaryMessageEncoder.cs, Message.cs :
3076           removed some vanished CreateMessage() overloads.
3077
3078 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3079
3080         * CustomBinding.cs, HttpsTransportBindingElement.cs, 
3081           HttpTransportBindingElement.cs :
3082           They are not ISecurityCapabilities anymore.
3083           Modified code to match June CTP behavior.
3084
3085 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3086
3087         * StreamSecurityUpgradeProvider.cs : Identity -> EndpointIdentity.
3088
3089 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3090
3091         * EmptyFaultException.cs : removed unused code.
3092         * IRequestContext.cs, RequestContext.cs : renamed former to latter.
3093
3094 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3095
3096         * LayeredChannelFactory.cs : removed obsolete class.
3097         * ChannelFactoryBase.cs, HttpChannelFactory.cs,
3098           ChannelListenerBase.cs, HttpChannelListener.cs,
3099           HttpReplyChannel.cs, ChannelManagerBase.cs :
3100           all those changes were brought by ChannelManagerBase changes.
3101
3102 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3103
3104         * ReplyChannelBase.cs, HttpChannelFactory.cs, ChannelBase.cs
3105           CommunicationObject.cs, HttpChannelListener.cs,
3106           ChannelFactoryBase.cs :
3107           CommunicationObject abstract changes brought this madness.
3108
3109 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3110
3111         * BindingContext.cs : listenUri address parameters could be null in
3112           June CTP.
3113
3114 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3115
3116         * IRequestContext.cs :
3117           Now it became a class. File renaming will follow soon.
3118         * IChannelFactory.cs, IInputChannel.cs, IReplyChannel.cs,
3119           IDuplexChannel.cs, IDuplexSessionChannel.cs,
3120           IOutputChannel.cs, IOutputSessionChannel.cs,
3121           IRequestChannel.cs, IRequestSessionChannel.cs :
3122           They are not IDisposable anymore.
3123           For IReplyChannel, IRequestContext -> RequestContext.
3124         * IChannelListener.cs : removed Identity. Added GetProperty().
3125         * ChannelListenerBase.cs, ChannelListenerBase.cs,
3126           ReplyChannelBase.cs, HttpReplyChannel.cs :
3127           Several members disappeared, and dependent changes.
3128         * HttpTransportBindingElement.cs,
3129           HttpChannelListener.cs, :
3130           ChannelListenerBase.SharedChannelListener vanished.
3131
3132 2006-07-05  Atsushi Enomoto  <atsushi@ximian.com>
3133
3134         * MessageEncodingBindingElement.cs
3135           MtomMessageEncodingBindingElement.cs,
3136           TextMessageEncodingBindingElement.cs,
3137           BinaryMessageEncodingBindingElement.cs :
3138           June CTP updates: AddressingVersion -> MessageVersion.
3139         * Binding.cs : June CTP. MessageVersion is added.
3140         * ChannelBase.cs, BindingContext.cs, IChannel.cs
3141           ChannelListenerBase_1.cs,
3142           ChannelListenerBase.cs, IChannelListener.cs,
3143           IChannelFactory.cs,
3144           ChannelFactoryBase.cs, ChannelManagerBase.cs :
3145           June CTP. Several interface changes.
3146         * HttpTransportBindingElement.cs : June CTP. HttpMappingMode is gone.
3147         * IChannelManager.cs, LayeredChannelListener.cs,
3148           GenericWrapperChannelFactory.cs,
3149           GenericWrapperChannelListener.cs : They are not used anymore.
3150
3151 2006-07-04  Atsushi Enomoto  <atsushi@ximian.com>
3152
3153         * MtomMessageEncoder.cs, BinaryMessageEncoder.cs :
3154           sync fix with June CTP API updates.
3155
3156 2006-07-03  Ankit Jain  <jankit@novell.com>
3157
3158         * MessageEncodingBindingElementConverter.cs:
3159         * StandardBindingConverter.cs:
3160         * TransportBindingElementConverter.cs:
3161         * TransactionFlowBindingElementConverter.cs:
3162         * ReliableSessionBindingElementConverter.cs:
3163         * SecurityBindingElementConverter.cs:
3164         Rename *Converter.cs to *Importer.cs
3165
3166         * TransferMode.cs: Move to System.ServiceModel
3167
3168 2006-06-22  Atsushi Enomoto  <atsushi@ximian.com>
3169
3170         * CommunicationObject.cs : make sure to change State before
3171           OnClosing/OnClosed/OnOpening/OnOpened when they are overriden.
3172
3173 2006-06-20  Atsushi Enomoto  <atsushi@ximian.com>
3174
3175         * Message.cs : output WSAddressing xmlns only when Action is
3176           specified (To should be affected, but seems like it is ignored).
3177
3178 2006-06-20  Atsushi Enomoto  <atsushi@ximian.com>
3179
3180         * MessageImpl.cs : don't set Action when it is null.
3181
3182 2006-06-12  Ankit Jain  <jankit@novell.com>
3183
3184         * TransportBindingElementConverter.cs (ImportEndpoint): Implement.
3185
3186 2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>
3187
3188         * SecurityBindingElement.cs, SecurityBindingElementConverter.cs :
3189           some updated API fixes.
3190
3191 2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>
3192
3193         * EnvelopeVersion.cs : moved back to S.SM.
3194
3195 2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>
3196
3197         * IBindingManualAddressing.cs : vanished in beta2.
3198         * HostedTransportConfiguration.cs, EnvelopeVersion.cs,
3199           LocalClientSecuritySettings.cs, LocalServiceSecuritySettings.cs :
3200           namespace changes.
3201         * SecurityBindingElement.cs :
3202           SecurityStandardsManager -> SecurityTokenSerializer.
3203
3204 2006-05-29  Atsushi Enomoto  <atsushi@ximian.com>
3205
3206         * XmlSerializerBodyWriter.cs : new file to handle 
3207           TypedMessageConverter.ToMessage().
3208
3209 2006-04-26  Ankit Jain  <jankit@novell.com>
3210
3211         * TransportBindingElementConverter.cs (BeforeImport): Remove
3212         NotImplementedException.
3213         (ImportContract): Likewise.
3214         * CustomBinding.cs (.ctor): Use scheme from the binding parameter.
3215
3216 2006-04-14  Atsushi Enomoto  <atsushi@ximian.com>
3217
3218         * HttpRequestChannel.cs, HttpChannelFactory.cs : message encoder 
3219           being used was not reflecting that of Binding elements.
3220
3221 2006-04-07  Atsushi Enomoto  <atsushi@ximian.com>
3222
3223         * HttpReplyChannel.cs : when SOAP action is not set as a header item,
3224           just assume that it is in the message.
3225
3226 2006-04-06  Atsushi Enomoto  <atsushi@ximian.com>
3227
3228         * HttpReplyChannel.cs : actually HTTP header item might be null.
3229
3230 2006-04-06  Atsushi Enomoto  <atsushi@ximian.com>
3231
3232         * HttpReplyChannel.cs : under SOAP 1.1 SOAP Action is sent as HTTP
3233           header.
3234
3235 2006-04-06  Atsushi Enomoto  <atsushi@ximian.com>
3236
3237         * TextMessageEncoder.cs : for SOAP 1.1 content type is text/xml.
3238
3239 2006-04-06  Atsushi Enomoto  <atsushi@ximian.com>
3240
3241         * MessageFault.cs : Fixed SOAP12 reason output.
3242
3243 2006-04-05  Atsushi Enomoto  <atsushi@ximian.com>
3244
3245         * HttpReplyChannel.cs : no need to set response ContentEncoding since
3246           MessageEncoder.ContentType explicitly contains encoding.
3247         * AddressingVersion.cs : added ActionNotSupported property. Not sure
3248           if it is SOAP version dependent.
3249
3250 2006-03-23  Atsushi Enomoto  <atsushi@ximian.com>
3251
3252         * HttpReplyChannel.cs : actually I could just workaround bug #77816.
3253
3254 2006-03-16  Atsushi Enomoto  <atsushi@ximian.com>
3255
3256         * HttpChannelFactory.cs BindingContext.cs
3257           HttpChannelListener.cs HttpTransportBindingElement.cs :
3258           Now BindingContext holds MessageEncoder, and non-custom
3259           channel factory/listener should use it.
3260         * MtomMessageEncodingBindingElement.cs
3261           TextMessageEncodingBindingElement.cs
3262           BinaryMessageEncodingBindingElement.cs : BuildChannelFactory()/
3263           -Listener() now sets internal BindingContext.MessageEncoder.
3264           Fixed some public API.
3265
3266 2006-03-15  Atsushi Enomoto  <atsushi@ximian.com>
3267
3268         * BindingContext.cs : CanBuildChannelXXX() should not raise error
3269           for insufficient elements.
3270         * DispatchRuntime.cs : OperationDescription name is not action. So
3271           OperationSelector is created by name, not by action.
3272         * TextMessageEncodingBindingElement.cs : Feb. CTP API fixes.
3273
3274 2006-03-14  Atsushi Enomoto  <atsushi@ximian.com>
3275
3276         * MessageFaultBodyWriter.cs
3277           XmlReaderBodyWriter.cs
3278           XmlObjectSerializerBodyWriter.cs : made internal.
3279         * SecurityBindingElement.cs
3280           AsymmetricSecurityBindingElement.cs
3281           SymmetricSecurityBindingElement.cs : API fixes.
3282         * TransportBindingElementConverter.cs : ditto.
3283         * TextMessageEncodingBindingElement.cs : added set_AddressingVersion.
3284         * WindowsStreamSecurityBindingElement.cs
3285           SslStreamSecurityBindingElement.cs
3286           TransportSecurityBindingElement.cs : new files.
3287
3288 2006-03-14  Atsushi Enomoto  <atsushi@ximian.com>
3289
3290         * MessageImpl.cs : according to the W3C REC, mustUnderstand when
3291           reading can be any xs:boolean value.
3292
3293 2006-03-14  Atsushi Enomoto  <atsushi@ximian.com>
3294
3295         * Message.cs MessageImpl.cs : more sorting out the role of each
3296           write method.
3297         * MessageHeader.cs : use envelope namespace, not addressing namespace.
3298
3299 2006-03-14  Atsushi Enomoto  <atsushi@ximian.com>
3300
3301         * Message.cs : don't write body contents if it is empty.
3302           Moved WriteStartElement(,"Header",) to OnWriteStartHeaders().
3303         * MessageImpl.cs : implemented XmlReaderMessage.OnWriteBodyContents().
3304         * TextMessageEncoder.cs : WriteMessage() should close XmlWriter.
3305         * HttpRequestChannel.cs : close request stream before GetResponse().
3306
3307 2006-03-13  Atsushi Enomoto  <atsushi@ximian.com>
3308
3309         * TextMessageEncoderFactory.cs
3310           TextMessageEncoder.cs : encoder does not hold reference to the
3311           factory anymore. Use MessageVersion property in CreateMssage().
3312         * HttpChannelListener.cs : now it holds message encoder.
3313         * HttpReplyChannel.cs : now it uses listener's shared message encoder.
3314         * MessageImpl.cs : header is optional.
3315         * EnvelopeVersion.cs : namespace URI is missing.
3316
3317 2006-03-10  Atsushi Enomoto  <atsushi@ximian.com>
3318
3319         * CustomBinding.cs : removed Initialize().
3320         * Message.cs : renamed ForwardingMessage -> XmlReaderMessage.
3321         * MessageImpl.cs : renamed ForwardingMessage to XmlReaderMessage (used
3322           by Message.CreateMessage(MessageVersion,XmlReader,int) and
3323           implemented Headers, IsEmpty and GetReaderAtBodyContents().
3324
3325 2006-03-08  Atsushi Enomoto  <atsushi@ximian.com>
3326
3327         * MessageHeaders.cs : implemented GetReaderAtHeader() and Action (it
3328           could be also added by Add() method and could be reset by Remove()).
3329         * MessageImpl.cs : implemented more. As noted above, Now we don't 
3330           have to add Action header explicitly.
3331         * MessageHeader.cs : recovered Writer methods and ToString() from
3332           commented old version. Use prefixes for writing.
3333           Use WriteObjectContent() rather than WriteObject() (it needs
3334           DataContractSerializer fix btw).
3335
3336 2006-03-08  Atsushi Enomoto  <atsushi@ximian.com>
3337
3338         * MessageHeader.cs : added missing IsReferenceParameter.
3339         * MessageHeaderInfo.cs : added missing IsReferenceParameter.
3340         * MessageHeaders.cs : avoid NullRef when actors is null.
3341         * MessageImpl.cs : (MessageImplBase) add Action header in .ctor().
3342           (ForwardingMessage) reader consumer is being added (not done).
3343         * MtomMessageEncodingBindingElement.cs : simply use Mtom factory.
3344         * MtomMessageEncoder.cs : updated ContentType value to Feb. CTP.
3345         * HttpRequestChannel.cs : this channel automatically call Open()
3346           when Request() is called. Set content length for request.
3347           Use MessageEncoder's ContentType to also handle charset.
3348
3349 2006-03-07  Atsushi Enomoto  <atsushi@ximian.com>
3350
3351         * MessageImpl.cs : make them internal.
3352         * HttpReplyChannel.cs : set HttpListenerResponse properties correctly.
3353
3354 2006-03-07  Atsushi Enomoto  <atsushi@ximian.com>
3355
3356         * ChannelManagerBase.cs : cleanup MonoTODO and unused field.
3357         * HttpChannelListener.cs : removed commented line.
3358         * RequestChannelBase.cs : new base class for request channel classes.
3359         * ChannelListenerBase.cs : OnEndClose() is rather NotImplemented yet.
3360         * HttpReplyChannel.cs : WaitHandle accepts limited timeout value.
3361         * Message.cs : default IsEmpty and IsFault false by default.
3362         * LayeredChannelListener.cs : removed Uri (no chance to set).
3363         * ChannelBase.cs : reimplemented timeout properties.
3364         * HttpRequestChannel.cs : now it is mostly based on
3365           RequestChannelBase. Some more attempt to implement Request().
3366
3367 2006-03-07  Atsushi Enomoto  <atsushi@ximian.com>
3368
3369         * Binding.cs CustomBinding.cs : removed OnApplyConfiguration() and
3370           OnInitialize(). Added more BuildChannelListener() overloads.
3371
3372 2006-03-06  Atsushi Enomoto  <atsushi@ximian.com>
3373
3374         * Binding.cs : added some more missing members especially to support
3375           listener creation.
3376         * HttpChannelListener.cs : Uri should not be null.
3377         * HttpTransportBindingElement.cs : implemented
3378           CanBuildChannelFactory() and CanBuildChannelListener().
3379         * ServiceHostBase.cs : make Initialize() practically work at OnOpen().
3380
3381 2006-03-06  Atsushi Enomoto  <atsushi@ximian.com>
3382
3383         * Binding.cs : updated default namespace property value to Feb. CTP.
3384
3385 2006-03-03  Atsushi Enomoto  <atsushi@ximian.com>
3386
3387         * AddressHeader.cs : avoid null reference when value is null.
3388         * BindingContext.cs : check null ListenUri args.
3389
3390 2006-03-03  Atsushi Enomoto  <atsushi@ximian.com>
3391
3392         * MessageFault.cs : Fixed default action name. Null arg check.
3393
3394 2006-03-03  Atsushi Enomoto  <atsushi@ximian.com>
3395
3396         * BindingElement.cs : Dequeue elements in BindingContext directly.
3397         * BindingContext.cs : Added GetProperty<T>().
3398         * GenericWrapperChannelFactory.cs GenericWrapperChannelListener.cs :
3399           Now we don't need these extra classes, so marked as deprecated.
3400
3401 2006-03-03  Atsushi Enomoto  <atsushi@ximian.com>
3402
3403         * Binding.cs : null arg check.
3404         * AddressingVersion.cs : fixed constants to pass the tests.
3405         * BindingElement.cs : tiny meessage fix.
3406
3407 2006-03-02  Atsushi Enomoto  <atsushi@ximian.com>
3408
3409         * MessageEncodingBindingElement.cs
3410           BinaryMessageEncodingBindingElement.cs
3411           TextMessageEncodingBindingElement.cs
3412           MtomMessageEncodingBindingElement.cs
3413           MessageEncodingBindingElementConverter.cs : several API fixes.
3414         * BindingElement.cs : now if we use generic wrapper it causes
3415           infinite loop, so for now replace it with most-possible-but-
3416           untested logic.
3417
3418 2006-03-02  Atsushi Enomoto  <atsushi@ximian.com>
3419
3420         (back to normal "record-ChangeLogs" mode after the big API change mess)
3421         * HttpTransportBindingElement.cs : fixed minor API differences.
3422
3423 2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>
3424
3425         * AsymmetricSecurityBindingElement.cs SecurityBindingElement.cs
3426           SymmetricSecurityBindingElement.cs :
3427           Dependent fixes for System.IdentityModel reorgainzation.
3428
3429 2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>
3430
3431         * InputChannelBase.cs.notused IInputSession.cs IOutputSession.cs
3432           IProxyFormatter.cs WSHttpBindingBase.cs 
3433           PnrpPeerResolverBindingElement.cs IMessageHeaderInfo.cs
3434           MessageInterceptorEventArgs.cs WSHttpBinding.cs
3435           WSFederationBinding.cs ISessionChannel.cs
3436           CompositeDuplexBindingElement.cs MessageVersion.cs
3437           MessageHeader.cs IRequestSessionChannel.cs 
3438           BindingElementCollection.cs IReplySessionChannel.cs
3439           MessageProperties.cs IDuplexClientChannel.cs
3440           IInputSessionChannel.cs MessageImpl.cs IDuplexSessionChannel.cs
3441           TcpTransportBindingElement.cs EmptyFaultException.cs
3442           IBindingRuntimePreferences.cs AddressHeaderCollection.cs
3443           IStubFormatter.cs AsymmetricSecurityBindingElement.cs
3444           ConnectionOrientedTransportBindingElement.cs
3445           IProxyOperationSelector.cs MessageBuffer.cs IChannel.cs
3446           PeerResolverBindingElement.cs Message.cs
3447           HttpsTransportBindingElement.cs BindingElement.cs
3448           NamedPipetransportBindingElement.cs IBindingManualAddressing.cs
3449           MessageFaultBodyWriter.cs IReplyChannel.cs
3450           IBindingCapabilities.cs AddressHeader.cs IInputChannel.cs
3451           IMessageProperty.cs IOutputChannel.cs NetPeerTcpBinding.cs
3452           IRequestContext.cs IInputSessionShutdown.cs
3453           SecurityBindingElement.cs PeerTransportBindingElement.cs
3454           IDuplexSession.cs IChannelInitializer.cs
3455           IProxyMessageInspector.cs IChannelListener.cs NetTcpBinding.cs
3456           AddressingVersion.cs FaultException.cs
3457           IRequestChannel.cs MtomMessageEncodingBindingElement.cs
3458           TransportBindingElement.cs BinaryMessageEncodingBindingElement.cs
3459           TextMessageEncodingBindingElement.cs IChannelFactory.cs Binding.cs
3460           ITransportBindingElement.cs IChannelManager.cs MessageFault.cs
3461           MessageHeaders.cs IStubMessageInspector.cs UnderstoodHeaders.cs
3462           BindingParameterCollection.cs IInstanceProvider.cs
3463           WSDualHttpBinding.cs ISession.cs IErrorHandler.cs
3464           MessageEncodingBindingElement.cs HttpTransportBindingElement.cs
3465           IDuplexChannel.cs CustomBinding.cs IOutputSessionChannel.cs
3466           MessageContractAttribute.cs SymmetricSecurityBindingElement.cs :
3467           moved from System.ServiceModel due to the API changes.
3468
3469 2006-02-23  Atsushi Enomoto  <atsushi@ximian.com>
3470
3471         * ChannelFactoryBase.cs ChannelListenerBase.cs HttpChannelFactory.cs
3472           HttpChannelListener.cs HttpRequestChannel.cs
3473           LayeredChannelListener.cs PeerMessagePropagationFilter.cs
3474           PeerNode.cs ReplyChannelBase.cs :
3475           Feb. CTP API changes - chapter 1.
3476
3477 2006-02-15  Atsushi Enomoto  <atsushi@ximian.com>
3478
3479         * ChannelBase.cs : OnOpen() and OnClosed() do nothing.
3480         * ReplyChannelBase.cs : now it is based on ChannelBase.
3481         * ChannelListenerBase_1.cs : use DefaultCommunicationTimeouts.Instance
3482           and check null argument in .ctor().
3483         * HttpReplyChannel.cs : several changes.
3484           Non-async members are mostly implemented.
3485         * HttpChannelListener.cs : no need to receive 
3486           IDefaultCommunicationTimeouts.
3487         * HttpRequestChannel.cs : maxSizeOfHeaders is used in MessageHeaders
3488           to allocate buffer array and int.MaxValue causes OutOfMemory.
3489
3490 2006-02-15  Atsushi Enomoto  <atsushi@ximian.com>
3491
3492         * ClientFramingDecoderState.cs : added missing enum.
3493         * HttpRequestMessageProperty.cs HttpResponseMessageProperty.cs :
3494           added missing bits.
3495         * ChannelBase.cs, LayeredChannelListener.cs : tiny API fixes.
3496
3497 2006-02-15  Atsushi Enomoto  <atsushi@ximian.com>
3498
3499         * HttpChannelListener.cs : Added GetChannels() and OnClose().
3500           AcceptChannel() has some code now but it needs more love.
3501
3502 2006-02-14  Atsushi Enomoto  <atsushi@ximian.com>
3503
3504         * CommunicationObject.cs : Close() does not call Begin/EndClose().
3505         * ChannelManagerBase.cs : implemented AbortChannel and CloseChannel.
3506         * ChannelListenerBase.cs : implemented OnAbort and OnClose.
3507
3508 2006-02-10  Atsushi Enomoto  <atsushi@ximian.com>
3509
3510         * HttpRequestChannel.cs : close the streams.
3511         * HttpListener.cs
3512           HttpChannelListener.cs : renamed from former to latter.
3513
3514 2006-02-09  Atsushi Enomoto  <atsushi@ximian.com>
3515
3516         * ReplyChannelBase.cs : new file for IReplyChannel implementations.
3517         * HttpReplyChannel.cs : new file for HTTP IReplyChannel.
3518         * HttpListenerFactory.cs : removed obsolete file.
3519         * HttpListener.cs : hacky WaitForChannel and AcceptChannel.
3520         * ChannelListenerBase_1.cs : implemented virtual stuff.
3521         * CommunicationObject.cs : Open() should not call BeginOpen() and
3522           EndOpen(). Instead, invoke events individually.
3523         * ChannelListenerBase.cs : its Open() is WaitForChannel().
3524
3525 2006-02-08  Atsushi Enomoto  <atsushi@ximian.com>
3526
3527         * HttpRequestChannel.cs : call Flush() after serializing message
3528           into HTTP stream.
3529
3530 2006-02-08  Atsushi Enomoto  <atsushi@ximian.com>
3531
3532         * HttpRequestChannel.cs : implemented pretty hacky Request().
3533
3534 2006-02-02  Atsushi Enomoto  <atsushi@ximian.com>
3535
3536         * HttpRequestChannel.cs : Manager is HttpChannelFactory.
3537
3538 2006-02-01  Atsushi Enomoto  <atsushi@ximian.com>
3539
3540         * ChannelFactoryBase.cs : removed some NotImplementedException for
3541           further internal implementation.
3542
3543 2006-01-26  Atsushi Enomoto  <atsushi@ximian.com>
3544
3545         * HttpRequestChannel.cs : new file. mostly not implemented.
3546         * HttpChannelFactory.cs : Implemented CanCreateChannel().
3547           Partly implemented CreateChannel().
3548
3549 2006-01-26  Atsushi Enomoto  <atsushi@ximian.com>
3550
3551         * HttpChannelFactory.cs : (.ctor())
3552           Don't take ChannelBuildContext.
3553
3554 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3555
3556         * StreamSecurityUpgradeInitiator.cs PeerMessageOrigination.cs
3557           ChannelBase.cs StreamSecurityUpgradeAcceptor.cs
3558           PeerMessagePropagation.cs : updated to Nov. CTP.
3559
3560 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3561
3562         * ChannelListenerBase.cs, ChannelManagerBase.cs,
3563           ChannelListenerBase_1.cs, LayeredChannelListener.cs,
3564           StreamSecurityUpgradeAcceptor.cs,
3565           StreamSecurityUpgradeInitiator.cs :
3566           Updated to Nov. CTP API.
3567
3568 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3569
3570         Now we can rename ListenerFactoryBase.cs to ChannelListenerBase.cs.
3571
3572 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3573
3574         renamed ChannelListenerBase.cs to ChannelListenerBase_1.cs.
3575
3576 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3577
3578         * ChannelBase.cs : tiny filename fix.
3579         * ChannelListenerBase.cs : added more .ctor()s.
3580
3581 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3582
3583         * HttpListenerFactory.cs LayeredChannelListener.cs HttpListener.cs
3584           ListenerFactoryBase.cs ChannelListenerBase.cs :
3585           updated IListener related stuff to Nov. CTP.
3586           file renaming will come soon.
3587
3588 2005-11-21  Atsushi Enomoto  <atsushi@ximian.com>
3589
3590         * ListenerBase.cs, ChannelListenerBase.cs :
3591           moved from former to latter.
3592         * LayeredListenerFactory.cs, LayeredChannelListener.cs :
3593           moved from former to latter.
3594
3595 2005-11-20  Atsushi Enomoto  <atsushi@ximian.com>
3596
3597         * SessionFaultedException.cs : removed in Nov. CTP
3598
3599 2005-11-20  Atsushi Enomoto  <atsushi@ximian.com>
3600
3601         * CommunicationObject.cs : updated to Nov. CTP.
3602         * SessionFaultedException.cs : removed (in Nov. CTP)
3603
3604 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3605
3606         * TextMessageEncoder.cs : kinda implemented (untested; Message is not
3607           working).
3608
3609 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3610
3611         * MtomMessageEncoder.cs, BinaryMessageEncoderFactory.cs,
3612           TextMessageEncoderFactory.cs, BinaryMessageEncoder.cs,
3613           TextMessageEncoder.cs, MtomMessageEncoderFactory.cs : new files.
3614         * MessageEncoder.cs : largely implemented.
3615
3616 2005-11-02  Atsushi Enomoto  <atsushi@ximian.com>
3617
3618         * IRequestReplyCorrelator.cs : new file.
3619
3620 2005-11-02  Atsushi Enomoto  <atsushi@ximian.com>
3621
3622         * CommunicationObject.cs : OnClose() and OnError() are not virtual.
3623         * DirectionalAction.cs : implemented IComparable<DirectionalAction>.
3624         * MessageEncoder.cs : added misssing ToString().
3625
3626 2005-11-02  Atsushi Enomoto  <atsushi@ximian.com>
3627
3628         * ChannelBehaviorCollection.cs : moved to sys.sm.
3629
3630 2005-10-28  Atsushi Enomoto  <atsushi@ximian.com>
3631
3632         * HttpListenerFactory.cs, HttpListener.cs : new files.
3633         * ListenerFactoryBase.cs, ChannelManagerBase.cs,
3634           CommunicationObject.cs, ChannelFactoryBase.cs,
3635           StreamUpgradeProvider.cs, ChannelBase.cs : timeouts are now
3636           protected internal.
3637         * CommunicationObject.cs : Aborted is bool. Added InternalClose()
3638         * ListenerFactoryBase.cs : kinda implemented GetListeners().
3639
3640 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
3641
3642         * ListenerFactoryBase.cs : some implementation.
3643
3644 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
3645
3646         * CommunicationObject.cs : more state fixes.
3647
3648 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
3649
3650         * CommunicationObject.cs : some state machine fixes.
3651
3652 2005-10-26  Atsushi Enomoto  <atsushi@ximian.com>
3653
3654         * PeerNode.cs, ChannelManagerBase.cs :
3655           several API fixes detected by improved corcompare.
3656
3657 2005-10-25  Atsushi Enomoto  <atsushi@ximian.com>
3658
3659         * LayeredListenerFactory.cs : added missing generic class constraint.
3660
3661 2005-10-25  Atsushi Enomoto  <atsushi@ximian.com>
3662
3663         * ListenerFactoryBase.cs,
3664           ListenerBase.cs : class constraints were missing for generic args.
3665
3666 2005-10-24  Atsushi Enomoto  <atsushi@ximian.com>
3667
3668         * StreamUpgradeInitiator.cs : tiny API fix.
3669
3670 2005-10-23  Atsushi Enomoto  <atsushi@ximian.com>
3671
3672         * PeerMessagePropagationFilter.cs : tiny build fix.
3673
3674 2005-10-23  Atsushi Enomoto  <atsushi@ximian.com>
3675
3676         * HttpRequestMessageProperty.cs, HttpResponseMessageProperty.cs :
3677           added Name. fixed StatusCode type.
3678         * StreamSecurityUpgradeInitiator.cs, StreamUpgradeAcceptor.cs,
3679           PeerNode.cs, StreamSecurityUpgradeAcceptor.cs,
3680           StreamUpgradeProvider.cs, StreamUpgradeInitiator.cs,
3681           DirectionalAction.cs, HostedTransportConfiguration.cs,
3682           StreamSecurityUpgradeProvider.cs, SessionFaultedException.cs,
3683           PeerMessagePropagationFilter.cs : added missing files.
3684         * Dummy.cs : removed. MSMQ stuff can be added later.
3685
3686 2005-10-21  Atsushi Enomoto  <atsushi@ximian.com>
3687
3688         * DeliveryStatus.cs, DeliveryFailure.cs,
3689           HttpRequestMessageProperty.cs, PeerMessageOrigination.cs,
3690           PeerMessagePropagation.cs, HttpResponseMessageProperty.cs :
3691           new files.
3692         * Dummy.cs : removed above.
3693
3694 2005-10-18  Atsushi Enomoto  <atsushi@ximian.com>
3695
3696         * ChannelFactoryBase.cs : tiny .ctor() delegation fix.
3697
3698 2005-10-09  Atsushi Enomoto  <atsushi@ximian.com>
3699
3700         * MessageEncoderFactory.cs, LayeredListenerFactory.cs,
3701           MessageEncoder.cs, BufferManager.cs : new files.
3702         * Dummy.cs : removed above.
3703
3704 2005-10-09  Atsushi Enomoto  <atsushi@ximian.com>
3705
3706         * ChannelBase.cs, ChannelBehaviorCollection.cs : new channel files.
3707         * Dummy.cs : removed above.
3708         * CommunicationObject.cs, ListenerFactoryBase.cs : added missing bits.
3709
3710 2005-10-09  Atsushi Enomoto  <atsushi@ximian.com>
3711
3712         * HttpChannelFactory.cs : new file.
3713
3714 2005-10-08  Atsushi Enomoto  <atsushi@ximian.com>
3715
3716         * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs:
3717           moved to ../System.ServiceModel (correct location).
3718         * ChannelFactoryBase.cs, LayeredChannelFactory.cs, TransferMode.cs:
3719           new files for channels.
3720         * Dummy.cs : reflected above changes.
3721         * ChannelManagerBase.cs : added a bit of code and todos.
3722
3723 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
3724
3725         * ChannelManagerBase.cs, ListenerBase.cs, ListenerFactoryBase.cs :
3726           added listener support files.
3727         * Dummy.cs : removed above.
3728
3729 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3730
3731         * IReplyChannel.cs, IRequestContext.cs, IRequestChannel.cs :
3732           added request/reply channel interfaces.
3733         * Dummy.cs : removed above.
3734         * CommunicationObject.cs : FIXME comments.
3735
3736 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3737
3738         * CommunicationObject.cs : implemented some members.
3739
3740 2005-09-29  Atsushi Enomoto  <atsushi@ximian.com>
3741
3742         * CommunicationObject.cs : some signature fixes.
3743