Further to my last, the offending element in the returned exception is: >> <faultcode xmlns:a=" http://schemas.microsoft.com/ws/2005/05/addressing/none ">a:InternalServiceFault</faultcode>
This must be where the Addressing=none comes from. Is this the default behaviour for WCF on mono? James On 12 June 2011 23:27, James Darbyshire <[email protected]> wrote: > Hi Atsushi, > > It turns out the problem was an unhandled exception because I was including > an NHibernate Linfu dll not included in the bin folder - my bad. I saw this > when I looked at the response in Fiddler. > > Now I get a: > > >> Circular reference of an object in the object graph was found > > I have a DTO which has '[DataContract(IsReference = true)]' set which, on > Windows, stops problems with circular references. > > Is this available on mono? > > The class is a user, which references RoleDTO, which has a List<UserDTO> on > it. > > [DataContract(IsReference = true)] > public partial class UserDTO > { > [DataMember] > public RoleDTO Role > { > get; > set; > } > } > > [DataContract(IsReference = true)] > public partial class RoleDTO > { > [DataMember] > public List<UserDTO> Users > { > get; > set; > } > } > > Regards, > > James > > > On 12 June 2011 23:00, Atsushi Eno > <[email protected]>wrote: > >> Hi, >> >> Without the actual code for client and server I cannot tell if your code >> is correct and what is the problem for sure, if any. If it is you who are >> trying to actually add WS-Addressing headers, then it really won't work >> since WSAddressing is really None for BasicHttpBinding. >> >> Atsushi Eno >> >> Hi all, >>> >>> I am getting the following exception when I try to consume a WCF service >>> hosted in mono 2.10.2 >>> >>> >> Addressing Version 'AddressingNone ( >>> http://schemas.microsoft.com/ws/2005/05/addressing/none)' does not >>> support adding WS-Addressing headers. >>> >>> Is there a way around this error? >>> >>> Thanks, >>> >>> JD >>> >>> -- >>> Regards, >>> >>> James Darbyshire >>> [email protected] <mailto:[email protected]> >>> >>> >>> _______________________________________________ >>> Mono-list maillist - [email protected] >>> http://lists.ximian.com/mailman/listinfo/mono-list >>> >> >> > > > -- > Regards, > > James Darbyshire > [email protected] > -- Regards, James Darbyshire [email protected]
_______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
