Re: [Mono-dev] [PATCH] WCF multiple service contracts on one end point

2010-03-24 Thread Atsushi Eno
I have applied the patch almost as is (with some coding style changes), with few exceptions: - AddBaseAddress (new Uri (baseAddress.BaseAddress)); + base_addresses.Add (new Uri (baseAddress.BaseAddress)); no need for this change. Thanks a lot! Atsushi Eno On 2010/03/23 20:28, Matt Dargavel wr

Re: [Mono-dev] [PATCH] WCF multiple service contracts on one end point

2010-03-23 Thread Matt Dargavel
No problem. Thanks for the feedback and tests. :-) > -Original Message- > From: Atsushi Eno [mailto:atsushi...@veritas-vos-liberabit.com] > Sent: 23 March 2010 1:21 PM > To: Matt Dargavel > Cc: mono-devel-list@lists.ximian.com > Subject: Re: [PATCH] WCF multiple service contracts on one

Re: [Mono-dev] [PATCH] WCF multiple service contracts on one end point

2010-03-23 Thread Atsushi Eno
I read and tried your patch, which indeed gives a great fix for your case. I'll recheck your changes and post my comments and/or apply the change. Thanks, it's really a nice fix :) Atsushi Eno On 2010/03/23 20:28, Matt Dargavel wrote: > > Patch to allow multiple service contracts on one end po

[Mono-dev] [PATCH] WCF multiple service contracts on one end point

2010-03-23 Thread Matt Dargavel
Patch to allow multiple service contracts on one end point. I've included an example source code file to show what I mean. Patch also includes a one line change (101-102 in patch) to ApplyConfiguration() to add base addresses to the list directly. I noticed that calling AddBaseAddress from he