[Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-29 Thread Konstantin Triger
Hello all, The attached patch ensures that a webservice attributed with [WebServiceBinding (ConformsTo = WsiProfiles.BasicProfile1_1)] throws in case it does not conform to that profile. Please review. Regards, Konstantin Triger throwifnotconform.patch Description: throwifnotco

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-29 Thread Gert Driesen
@lists.ximian.com Cc: Atsushi Eno Subject: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl Hello all, The attached patch ensures that a webservice attributed with [WebServiceBinding (ConformsTo = WsiProfiles.BasicProfile1_1)] throws in

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-29 Thread Konstantin Triger
Title: RE: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl Hello Gert, This patch produces an exception during generation of WSDL from a WebService which does not conform to the declared profile. This situation can happen only when

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-30 Thread Atsushi Eno
Hi Kosta, Thanks for the patch ! > The attached patch ensures that a webservice attributed with > [WebServiceBinding (ConformsTo = WsiProfiles.BasicProfile1_1)] throws in > case it does not conform to that profile. I guess the purpose of this patch is not only about it. After this patch it rej

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Miguel de Icaza
Hello, Some developers are stating that the new changes to web services break "all web services". Anything we should be watching out for? > Hi Kosta, > > Thanks for the patch ! > > > The attached patch ensures that a webservice attributed with > > [WebServiceBinding (ConformsTo = WsiPro

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Atsushi Eno
This patch from Kosta is not applied yet. What is the details? There is nothing we can do without any information. Atsushi Eno Miguel de Icaza wrote: > Hello, > > Some developers are stating that the new changes to web services > break "all web services". Anything we should be watching ou

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Miguel de Icaza
Hey, > This patch from Kosta is not applied yet. What is the details? There is > nothing we can do without any information. Ok, so it was not this. Hubert reported this: http://monoport.com/1622 Miguel. ___ Mono-devel-list mailing list Mono-d

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Atsushi Eno
Hey, It still does not tell much. Any reason he cannot file a bug report with something we can actually run? With the stack trace which starts with System.Net I'm not sure whether it is related to web service changes or not. Atsushi Eno Miguel de Icaza wrote: > Hey, > > >> This patch from Kos

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Hubert FONGARNAND
Here's my IRC discussion with robert jordan, i hope it could help the problem is... Default service=new Default(); service.Url="http://10.69.100.164:8080/Default.asmx";; service.Method(); this failed and Default service=new Default(); service.Url="http://localhost:8080/Default.asmx";;

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Konstantin Triger
Title: RE: [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl Hello Atsushi, No, this is not correct. If there is no WebServiceBindingAttribute I add a "default" BindingInfo. I refactored the BindingInfo construction because currently we always cre

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-01-31 Thread Atsushi Eno
Hello, So, this is not WebService issue. Here is a repro for this NRE: using System; using System.IO; using System.Net; public class Test { public static void Main () { WebRequest wr = WebRequest.Create ("http://64.14.94.162";); // mono-project.com

Re: [Mono-dev] [Mono-Dev] [Patch] System.Web.Services: ensure conformant WebSevice fails to generate its wsdl

2007-02-01 Thread Atsushi Eno
Oh, okay. Now all changes make sense to me. Please commit the patch. Thanks :-) Atsushi Eno Konstantin Triger wrote: > Hello Atsushi, > > No, this is not correct. If there is no WebServiceBindingAttribute I add > a "default" BindingInfo. I refactored the BindingInfo construction > because curr