Re: [Mono-dev] Problem with RadioButtonList

2005-11-15 Thread Johann BLAIS
I am using a simple radiobuttonlist, with no autopostback. Maybe this 
bug is related to yours, i cannot tell, i did not check internal 
behaviour...

Thanks for your reply anyway.

Johann.

Hubert FONGARNAND a écrit :

I've submitted a bug report about RadioButtons autopostback problem, 
maybe your problem is linked with this bug?

http://bugzilla.ximian.com/show_bug.cgi?id=76697

Le lundi 14 novembre 2005 à 10:17 +0100, Johann BLAIS a écrit :


Hi all,

I've tried upgrading to 1.1.10. Nice work you've done !
I have a problem, my web application crashes when trying to use 
selectedValue property of a radiobuttonlist. It returns an empty string.

For example :
asp:RadioButtonList runat=server ID=TypeRecherche 
CssClass=liste_radio

asp:ListItem Text=Toutes Value=1 Selected=True /
asp:ListItem Text=Reservations en option Value=2 /
asp:ListItem Text=Reservations en request Value=3 /
asp:ListItem Text=Reservations annulees Value=4 /
/asp:RadioButtonList
The SelectedValue property is always an empty string.
Any idea ?

Regards,
Johann Blais
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com mailto:Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list
   


___
Ce message et les eventuels documents joints peuvent contenir des 
informations confidentielles.
Au cas o? il ne vous serait pas destine, nous vous remercions de bien 
vouloir le supprimer et en aviser immediatement l'expediteur. Toute 
utilisation de ce message non conforme ? sa destination, toute 
diffusion ou publication, totale ou partielle et quel qu'en soit le 
moyen est formellement interdite.
Les communications sur internet n'etant pas securisees, l'integrite de 
ce message n'est pas assuree et la societe emettrice ne peut ?tre 
tenue pour responsable de son contenu.




___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list
 




No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.362 / Virus Database: 267.13.0/168 - Release Date: 14/11/2005
 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Problem with RadioButtonList

2005-11-14 Thread Johann BLAIS

Hi all,

I've tried upgrading to 1.1.10. Nice work you've done !
I have a problem, my web application crashes when trying to use 
selectedValue property of a radiobuttonlist. It returns an empty string.

For example :
asp:RadioButtonList runat=server ID=TypeRecherche 
CssClass=liste_radio

asp:ListItem Text=Toutes Value=1 Selected=True /
asp:ListItem Text=Reservations en option Value=2 /
asp:ListItem Text=Reservations en request Value=3 /
asp:ListItem Text=Reservations annulees Value=4 /
/asp:RadioButtonList
The SelectedValue property is always an empty string.
Any idea ?

Regards,
Johann Blais
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Error consuming web services

2005-10-27 Thread Johann BLAIS

Yes, you're right, actually it doesnot work either on dotnet.
I etherealed a few requests, what is the expected : 100-continue in 
the header of the request ?


Thanks for your reply, i'm starting to getting somewhere.

Johann

Gonzalo Paniagua Javier a écrit :


On Wed, 2005-10-26 at 14:16 +0200, Johann BLAIS wrote:
[...]
 


System.Net.WebException: Error getting response stream (ReadDone4): 
ServerProtocolViolation --- System.FormatException: Invalid format.
in 0x00103 System.UInt32:Parse (System.String s, Boolean tryParse, 
System.UInt32 result)
in 0x0001a System.UInt32:Parse (System.String s)
in 0x0019a System.Net.WebConnection:GetResponse (System.Byte[] buffer, Int32 
max)
in 0x0019b System.Net.WebConnection:ReadDone (IAsyncResult result)--- End of 
inner exception stack trace ---

in 0x00158 System.Net.HttpWebRequest:EndGetResponse (IAsyncResult asyncResult)
in 0x00047 System.Net.HttpWebRequest:GetResponse ()
in 0x0004d System.Web.Services.Protocols.WebClientProtocol:GetWebResponse 
(System.Net.WebRequest request)

I get this error on every call. It seems that the connection is closed 
from the client side (mono) because i get a Broken pipe on my server 
(C++/gSoap).
The error appears straight after the call, but usually the webmethod i 
invoke take 10 sec to execute.

I wonder why Mono closes the connection so early.

I'm using mono 1.1.9.2 compiled from source under linux.

Any idea ?
   



The connection is closed from the mono side of the story because your
server is sending something that is not an integer as status code.

That's all I can say with the information you provided.

What happens if you run your client from MS.NET? My take is that you'll
get an error too. If not, please, file a bug report attaching the
simplest test case you can get.

Thanks.

-Gonzalo



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Error consuming web services

2005-10-26 Thread Johann BLAIS

Hi,

I've been using webservices for quite some time, and now i face a 
strange problem.

I use generated proxies to access my web services. I get an error :

System.Net.WebException: Error getting response stream (ReadDone4): 
ServerProtocolViolation --- System.FormatException: Invalid format.
in 0x00103 System.UInt32:Parse (System.String s, Boolean tryParse, 
System.UInt32 result)
in 0x0001a System.UInt32:Parse (System.String s)
in 0x0019a System.Net.WebConnection:GetResponse (System.Byte[] buffer, Int32 
max)
in 0x0019b System.Net.WebConnection:ReadDone (IAsyncResult result)--- End of 
inner exception stack trace ---

in 0x00158 System.Net.HttpWebRequest:EndGetResponse (IAsyncResult asyncResult)
in 0x00047 System.Net.HttpWebRequest:GetResponse ()
in 0x0004d System.Web.Services.Protocols.WebClientProtocol:GetWebResponse 
(System.Net.WebRequest request)

I get this error on every call. It seems that the connection is closed 
from the client side (mono) because i get a Broken pipe on my server 
(C++/gSoap).
The error appears straight after the call, but usually the webmethod i 
invoke take 10 sec to execute.

I wonder why Mono closes the connection so early.

I'm using mono 1.1.9.2 compiled from source under linux.

Any idea ?

Johann.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Problem with wsdl proxy generator

2005-10-25 Thread Johann BLAIS

Hi all,

I've upgraded to the latest daily tarball. Now i face a problem 
generating the proxies for my C++ web services.
In the generated proxies (with mono-1.1.8.20050824 daily package), i 
used to have something like
[System.Web.Services.WebServiceBinding(Name=Action, 
Namespace=http://www.blabla.com/bla/webservices/;)]

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute(code)]
public class Action : System.Web.Services.Protocols.SoapHttpClientProtocol {


With mono-1.1.9.20051025, i have :
[(Name=Action, Namespace=http://www.blabla.com/bla/webservices/;)]
[()]
[(=code)]
public class Action: System.Web.Services.Protocols.SoapHttpClientProtocol {

Of course, this does not compile.
Any idea ?

Many thanks.
Johann.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with asmx file

2005-10-07 Thread Johann BLAIS

Thanks for your reply.

I'm using mono-1.1.8.20050824 which seems to be the last version that 
compile and don't break my web app.
Actually, i'm looking for a way to generate test pages for my web 
services (like the one available when writing a asmx file).

I need a tool that read a WSDL and generate those or that page.

Anyone knows about such a tool ?

Johann

Atsushi Eno a écrit :


Hi,

There was a bug that blocked WSDL processing, which I fixed yesterday.
So if you were trying mono/mcs from svn, please try the latest svn.

Atsushi Eno

Johann BLAIS wrote:


Hello,

I've created a webservice named General and generated the wsdl file 
using gSoap. I generated the proxy with the wsdl tool.
I want to test it using DefaultWsdlHelpGenerator.aspx. So i wrote a 
simple index.asmx containing %@ WebService Class=General %
I put the compiled DLL into the bin directory, and then try to access 
the page http://myserver/index.asmx

I end up with this :

*Description: *Error processing request.

*Error Message: *HTTP 500.

*Stack Trace: *
||

System.NullReferenceException: Object reference not set to an 
instance of an object
in 0x00375 
System.Web.Services.Description.ProtocolReflector:ImportBindingContent 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0010e 
System.Web.Services.Description.ProtocolReflector:ImportBinding 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Description.Service service, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0014d 
System.Web.Services.Description.ProtocolReflector:ImportService 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String url)
in 0x00135 
System.Web.Services.Description.ProtocolReflector:Reflect 
(System.Web.Services.Description.ServiceDescriptionReflector 
serviceReflector, System.Type type, System.String url, 
System.Xml.Serialization.XmlSchemaExporter xxporter, 
System.Xml.Serialization.SoapSchemaExporter sxporter)
in 0x000b8 
System.Web.Services.Description.ServiceDescriptionReflector:Reflect 
(System.Type type, System.String url)
in 0x0004b 
System.Web.Services.Protocols.SoapDocumentationHandler:GetDescriptions 
()
in 0x00031 
System.Web.Services.Protocols.SoapDocumentationHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x0001a 
System.Web.Services.Protocols.SessionWrapperHandler:ProcessRequest 
(System.Web.HttpContext context)

in 0x00233 System.Web.HttpApplication+ExecuteHandlerState:Execute ()
in 0x0007a System.Web.HttpApplication+StateMachine:ExecuteState 
(IStateHandler state, System.Boolean readysync)


Anyone knows if i am doing something wrong or if it is a bug ?

Many thanks.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list






___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with asmx file

2005-10-07 Thread Johann BLAIS

Hi.

Did you write the complete asmx ?
I have generated the C# proxies for my web services, compiled them in a 
dll. So i don't want the rewrite the whole asmx file, because my web 
service is written in C++ with gsoap.
I tried the tutorial on the mono website, concerning GTK# and the 
webservices, but i get an error trying to view the page.


Thanks

Johann.

Simon Bain a écrit :


(Sorry forgot to reply all :-) )

Hi.

If you are talking about the page which IIS sends back when you call the
asmx file, then the mono mod_mono_server also does this every bit as well,
giving back all the infomation which IIS sends to you.

Take a look at
http://www.tendotzero.com/edrmsService/edrms.asmx
It will show you the default view from the mod_mono_server for a web service.

Cheers

Simon
 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with asmx file

2005-10-07 Thread Johann BLAIS

Hi,

Simon Bain a écrit :


Hi.

my asmx file is

%@ WebService Class=EdrmsWebService.EDRMSWebServiceClass %

I have compiled the c# (This is the difference I believe) dll and placed
it into the bin directory.
I have apache 2 as the web server which calls mod_mono for all things mono.
 

I did the same thing except, i'm using XSP, but i get the error posted 
in my first mail.



The dll itself was written in Visual Studio, I did recompile a previous
version with mono, (but the current version I wrote more carefully :-) )

In Visual Studio do you get the wsdl file when you call your asmx page
with /name.asmx?wsdl
 


I do not use VS.


ie http://www.tendotzero.com/edrmsService/edrms.asmx?wsdl

My understanding is that as long as mono recognises the underlying web
service application, it will create these views. (Is this correct
people?).

I am at present writing a web service in C++ but have not written a web
app to connect to it, just desk top apps and so am guessing here. However
I am going to hazard a guess that your app may not be recognised, because
mono does not recognise the C++ and so cannot asertain the wsdl
automatically.
 

I've already built my web app calling C++ web services. It works fine. 
The problem is i want to develop new web services.
So i wanted to use the mono/IIS generated page to be able to test my web 
service without having to write my own test pages.



For gSoap requests try the apache module
http://www.cs.fsu.edu/~engelen/soap.html
I have not used it so cannot say how good bad o indifferent it is, however
my assumption is that it will be pretty good.

This will then allow you to create a web app in c# which will give you all
of the benefits that it has for web applications. This app will run on
mono, the back end calls will inturn be run by the apache gsoap module.
Giving you the best of both worlds.

or... No we will not go there.

Hope this helps

Simon
 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with asmx file

2005-10-07 Thread Johann BLAIS

Ok so i take my favorite wsdl describing my service web named General.
I generate the stub using wsdl -server general.wsdl.
The generated stub define a class like this :
public abstract class General : System.Web.Services.WebService
So in my General.asmx, i should have :
%@ WebService Class=General %
But now how do i use the stub ?
Has it to be compiled somewhere or be referenced as a codebehind ?

Anyway, thanks for your time.

Johann

Atsushi Eno a écrit :


I couldn't read whether your problem went away or not from your
reply... anyways the required steps to do what you want are:

- To view that test pages which we think something we can
  browse when we hit e.g. http://localhost:8080/my.asmx,
  you well have to create service implementation class
  at your server side.
- It is possible to create a stub class for those services
  that are described as WSDLs; run wsdl -service my.wsdl
- Your .asmx file should specify exactly that class name
  generated by wsdl(.exe) and compiled into a dll, rather
  than just General.

Atsushi Eno

Johann BLAIS wrote:


Thanks for your reply.

I'm using mono-1.1.8.20050824 which seems to be the last version that 
compile and don't break my web app.
Actually, i'm looking for a way to generate test pages for my web 
services (like the one available when writing a asmx file).

I need a tool that read a WSDL and generate those or that page.

Anyone knows about such a tool ?

Johann

Atsushi Eno a écrit :


Hi,

There was a bug that blocked WSDL processing, which I fixed yesterday.
So if you were trying mono/mcs from svn, please try the latest svn.

Atsushi Eno

Johann BLAIS wrote:


Hello,

I've created a webservice named General and generated the wsdl file 
using gSoap. I generated the proxy with the wsdl tool.
I want to test it using DefaultWsdlHelpGenerator.aspx. So i wrote a 
simple index.asmx containing %@ WebService Class=General %
I put the compiled DLL into the bin directory, and then try to 
access the page http://myserver/index.asmx

I end up with this :

*Description: *Error processing request.

*Error Message: *HTTP 500.

*Stack Trace: *
||

System.NullReferenceException: Object reference not set to an 
instance of an object
in 0x00375 
System.Web.Services.Description.ProtocolReflector:ImportBindingContent 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0010e 
System.Web.Services.Description.ProtocolReflector:ImportBinding 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Description.Service service, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0014d 
System.Web.Services.Description.ProtocolReflector:ImportService 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url)
in 0x00135 
System.Web.Services.Description.ProtocolReflector:Reflect 
(System.Web.Services.Description.ServiceDescriptionReflector 
serviceReflector, System.Type type, System.String url, 
System.Xml.Serialization.XmlSchemaExporter xxporter, 
System.Xml.Serialization.SoapSchemaExporter sxporter)
in 0x000b8 
System.Web.Services.Description.ServiceDescriptionReflector:Reflect 
(System.Type type, System.String url)
in 0x0004b 
System.Web.Services.Protocols.SoapDocumentationHandler:GetDescriptions 
()
in 0x00031 
System.Web.Services.Protocols.SoapDocumentationHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x0001a 
System.Web.Services.Protocols.SessionWrapperHandler:ProcessRequest 
(System.Web.HttpContext context)

in 0x00233 System.Web.HttpApplication+ExecuteHandlerState:Execute ()
in 0x0007a System.Web.HttpApplication+StateMachine:ExecuteState 
(IStateHandler state, System.Boolean readysync)


Anyone knows if i am doing something wrong or if it is a bug ?

Many thanks.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list






___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list






___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with asmx file

2005-10-07 Thread Johann BLAIS

Sorry I didn't read all your post.

So I compiled the stub into a dll, created my asmx.
When i try to access the General.asmx, i get an error :

*Description: *Error processing request.

*Error Message: *HTTP 500.

*Stack Trace: *
||

System.NullReferenceException: Object reference not set to an instance of an 
object
in 0x000e4 System.Web.UI.WebControls.Repeater:GetData ()
in 0xa System.Web.UI.WebControls.Repeater:GetResolvedDataSource ()
in 0x00079 System.Web.UI.WebControls.Repeater:CreateControlHierarchy (Boolean 
useDataSource)
in 0x00039 System.Web.UI.WebControls.Repeater:OnDataBinding (System.EventArgs 
e)
in 0x00023 System.Web.UI.WebControls.Repeater:DataBind ()
in 0x0006a System.Web.UI.Control:DataBindChildren ()
in 0x00095 System.Web.UI.Control:DataBind (Boolean raiseOnDataBinding)
in 0x00010 System.Web.UI.Control:DataBind ()
in 0x0058b ASP.DefaultWsdlHelpGenerator_aspx:Page_Load (System.Object sender, 
System.EventArgs e)
in (wrapper delegate-invoke) 
System.MulticastDelegate:invoke_void_object_EventArgs (object,System.EventArgs)
in 0x0005c System.Web.UI.Control:OnLoad (System.EventArgs e)
in 0x00026 System.Web.UI.Control:LoadRecursive ()
in 0x001fc System.Web.UI.Page:InternalProcessRequest ()
in 0x000a5 System.Web.UI.Page:ProcessRequest (System.Web.HttpContext context)
in 0x00096 
System.Web.Services.Protocols.SoapDocumentationHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x0001a System.Web.Services.Protocols.SessionWrapperHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x00233 System.Web.HttpApplication+ExecuteHandlerState:Execute ()
in 0x0007a System.Web.HttpApplication+StateMachine:ExecuteState 
(IStateHandler state, System.Boolean readysync)

Any idea ?
I don't compile from svn, i'm using 1.1.8.20050824. My admin would 
complain if i svn the mcs tree.

I can't use the latest release because the datagrid buttoncolumn is broken.

Thanks,
Johann

Johann BLAIS a écrit :


Ok so i take my favorite wsdl describing my service web named General.
I generate the stub using wsdl -server general.wsdl.
The generated stub define a class like this :
public abstract class General : System.Web.Services.WebService
So in my General.asmx, i should have :
%@ WebService Class=General %
But now how do i use the stub ?
Has it to be compiled somewhere or be referenced as a codebehind ?

Anyway, thanks for your time.

Johann

Atsushi Eno a écrit :


I couldn't read whether your problem went away or not from your
reply... anyways the required steps to do what you want are:

- To view that test pages which we think something we can
  browse when we hit e.g. http://localhost:8080/my.asmx,
  you well have to create service implementation class
  at your server side.
- It is possible to create a stub class for those services
  that are described as WSDLs; run wsdl -service my.wsdl
- Your .asmx file should specify exactly that class name
  generated by wsdl(.exe) and compiled into a dll, rather
  than just General.

Atsushi Eno

Johann BLAIS wrote:


Thanks for your reply.

I'm using mono-1.1.8.20050824 which seems to be the last version 
that compile and don't break my web app.
Actually, i'm looking for a way to generate test pages for my web 
services (like the one available when writing a asmx file).

I need a tool that read a WSDL and generate those or that page.

Anyone knows about such a tool ?

Johann

Atsushi Eno a écrit :


Hi,

There was a bug that blocked WSDL processing, which I fixed yesterday.
So if you were trying mono/mcs from svn, please try the latest svn.

Atsushi Eno

Johann BLAIS wrote:


Hello,

I've created a webservice named General and generated the wsdl 
file using gSoap. I generated the proxy with the wsdl tool.
I want to test it using DefaultWsdlHelpGenerator.aspx. So i wrote 
a simple index.asmx containing %@ WebService Class=General %
I put the compiled DLL into the bin directory, and then try to 
access the page http://myserver/index.asmx

I end up with this :

*Description: *Error processing request.

*Error Message: *HTTP 500.

*Stack Trace: *
||

System.NullReferenceException: Object reference not set to an 
instance of an object
in 0x00375 
System.Web.Services.Description.ProtocolReflector:ImportBindingContent 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0010e 
System.Web.Services.Description.ProtocolReflector:ImportBinding 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Description.Service service, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url, System.Web.Services.Protocols.BindingInfo binfo)
in 0x0014d 
System.Web.Services.Description.ProtocolReflector:ImportService 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String 
url)
in 0x00135

[Mono-dev] Problem with asmx file

2005-10-06 Thread Johann BLAIS

Hello,

I've created a webservice named General and generated the wsdl file 
using gSoap. I generated the proxy with the wsdl tool.
I want to test it using DefaultWsdlHelpGenerator.aspx. So i wrote a 
simple index.asmx containing %@ WebService Class=General %
I put the compiled DLL into the bin directory, and then try to access 
the page http://myserver/index.asmx

I end up with this :

*Description: *Error processing request.

*Error Message: *HTTP 500.

*Stack Trace: *
||

System.NullReferenceException: Object reference not set to an instance of an 
object
in 0x00375 
System.Web.Services.Description.ProtocolReflector:ImportBindingContent 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String url, 
System.Web.Services.Protocols.BindingInfo binfo)
in 0x0010e System.Web.Services.Description.ProtocolReflector:ImportBinding 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Description.Service service, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String url, 
System.Web.Services.Protocols.BindingInfo binfo)
in 0x0014d System.Web.Services.Description.ProtocolReflector:ImportService 
(System.Web.Services.Description.ServiceDescription desc, 
System.Web.Services.Protocols.TypeStubInfo typeInfo, System.String url)
in 0x00135 System.Web.Services.Description.ProtocolReflector:Reflect 
(System.Web.Services.Description.ServiceDescriptionReflector serviceReflector, 
System.Type type, System.String url, System.Xml.Serialization.XmlSchemaExporter 
xxporter, System.Xml.Serialization.SoapSchemaExporter sxporter)
in 0x000b8 
System.Web.Services.Description.ServiceDescriptionReflector:Reflect (System.Type 
type, System.String url)
in 0x0004b 
System.Web.Services.Protocols.SoapDocumentationHandler:GetDescriptions ()
in 0x00031 
System.Web.Services.Protocols.SoapDocumentationHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x0001a System.Web.Services.Protocols.SessionWrapperHandler:ProcessRequest 
(System.Web.HttpContext context)
in 0x00233 System.Web.HttpApplication+ExecuteHandlerState:Execute ()
in 0x0007a System.Web.HttpApplication+StateMachine:ExecuteState 
(IStateHandler state, System.Boolean readysync)

Anyone knows if i am doing something wrong or if it is a bug ?

Many thanks.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Problem building mono-1.1.9.1

2005-09-23 Thread Johann BLAIS

Hi,

When i try to compile mono-1.1.9.1, i get an error :

MONO_PATH=../../class/lib/net_1_1_bootstrap:$MONO_PATH 
/home/jblais/mono-1.1.9.1/runtime/mono-wrapper  
../../class/lib/net_1_1_bootstrap/ilasm.exe /debug 
/out:../../class/lib/default/Microsoft.VisualBasic.dll /dll 
fixup/default/Microsoft.VisualBasic.il


** ERROR **: file handles.c: line 546 (_wapi_lookup_handle): assertion 
failed: (shared_handle_data-type == type)

aborting...
make[8]: *** [../../class/lib/default/Microsoft.VisualBasic.dll] Abandon
make[8]: Quitte le répertoire 
`/home/jblais/mono-1.1.9.1/mcs/class/Microsoft.VisualBasic'

make[7]: *** [do-all] Erreur 2
make[7]: Quitte le répertoire 
`/home/jblais/mono-1.1.9.1/mcs/class/Microsoft.VisualBasic'

make[6]: *** [all-recursive] Erreur 1
make[6]: Quitte le répertoire `/home/jblais/mono-1.1.9.1/mcs/class'
make[5]: *** [all-recursive] Erreur 1
make[5]: Quitte le répertoire `/home/jblais/mono-1.1.9.1/mcs'
make[4]: *** [profile-do--default--all] Erreur 2
make[4]: Quitte le répertoire `/home/jblais/mono-1.1.9.1/mcs'
make[3]: *** [profiles-do--all] Erreur 2
make[3]: Quitte le répertoire `/home/jblais/mono-1.1.9.1/mcs'
make[2]: *** [all-local] Erreur 1
make[2]: Quitte le répertoire `/home/jblais/mono-1.1.9.1/runtime'
make[1]: *** [all-recursive] Erreur 1
make[1]: Quitte le répertoire `/home/jblais/mono-1.1.9.1'

Anyone knows anything about that ?

Johann
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Compilation problem with latest tarball

2005-09-21 Thread Johann BLAIS

Hi,

I downloaded the latest tarball (20050920). I got an error compiling 
FireBirdSQL.Data.FireBird, the following file was missing :

trunk/mcs/class/FirebirdSql.Data.Firebird/FirebirdSql.Data.Firebird.dll.resources
I got from SVN Web Access, and it worked.

Regards,
Johann
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Checking out sources

2005-09-20 Thread Johann BLAIS

Hi,

I'm desperately trying to check out the sources of Mono. I tried the 
method described in the mono site


svn co svn://mono.myrealbox.com/source/trunk/mcs


That does not work. I cannot connect to the repository.

So I tried

svn co svn+ssh://mono.myrealbox.com/source/trunk/mcs


The probleme is it prompted me for a password I don't have. I think this 
is because i don't have write access, but the fact is I just want to 
check out and have access to latest sources, i do not want to commit 
anything.
My question is : Is there a user i can use to check out the sources with 
ssh ?


Thanks.

Johann

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Checking out sources

2005-09-16 Thread Johann BLAIS

I'm definitly stupid... i forgot to configure the proxy settings...
I'm sorry.

Anyway, thanks a lot for your answers.

Johann.

Jörg Rosenkranz a écrit :


Hi Johann,

 


-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of Johann BLAIS


I'm desperately trying to check out the sources of Mono. I tried the 
method described in the mono site


svn co svn://mono.myrealbox.com/source/trunk/mcs


That does not work. I cannot connect to the repository.

   



Please try svn co http://mono.myrealbox.com/source/trunk/mcs 
This should work behind a firewall too.


Joerg.


 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Checking out sources

2005-09-16 Thread Johann BLAIS
I'm indeed firewalled, i know i can ssh an external host. That is why i 
asked if there were an anonymous user for checking out the sources with 
ssh protocol.


Thanks.

Jonathan S. Chambers a écrit :


Or try:

svn co svn://svn.myrealbox.com/source/trunk/mcs

if the difference matters. I don't know.

- Jonathan


-Original Message-
From:   [EMAIL PROTECTED] on behalf of Paolo Molaro
Sent:   Thu 9/15/2005 1:07 PM
To: mono-devel-list@lists.ximian.com
Cc: 
Subject:Re: [Mono-dev] Checking out sources
On 09/15/05 Johann BLAIS wrote:
 

I'm desperately trying to check out the sources of Mono. I tried the 
method described in the mono site


svn co svn://mono.myrealbox.com/source/trunk/mcs
   



This is the correct way and it works fine. I don't think there were
any glitches lately in the server, so it's likely an issue on your end
(broken svn install, firewalled computer etc...).

lupus

 



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Problem with AlternatingRowStyle in GridView

2005-08-30 Thread Johann BLAIS

Gonzalo Paniagua Javier a écrit :


On Tue, 2005-08-23 at 16:36 +0200, Johann BLAIS wrote:

 


Should i file a bug for this ?
   



Please, do.

-Gonzalo

 


Thanks for your response.
Filed bug #75936.

Regards,
Johann.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Problem with AlternatingRowStyle in GridView

2005-08-23 Thread Johann BLAIS

Hi all,

I'm using the GridView control to display some data. When i set the 
RowStyle-CssClass and AlternatingRowStyle-CssClass property, a problem 
occurs in the generated code.
The lines contains two class tags with the value specified in the 2 
properties.

For example :
asp:GridView runat=server ID=ListeDossiers GridLines=Vertical 
AutoGenerateColumns=false OnRowCommand=ListeDossier_Command

  HeaderStyle CssClass=ligne_header /
  RowStyle CssClass=ligne1 /
  AlternatingRowStyle CssClass=ligne2 /
  Columns
  ...
  /Columns
/asp:GridView

The first line is generated as tr class=ligne1 stuff /tr.
The second one is generated as tr class=ligne1 class=ligne2 stuff 
/tr


Should i file a bug for this ?

Thanks,
Johann Blais.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] XSP crash

2005-08-23 Thread Johann BLAIS

Hi all,

I've downloaded and installed the latest daily test tarball. When 
navigating on my web application, my XSP server dies screaming this :


36 4 139 69 20 137 68 36 8 139 199 139 64 20 255 208

** ERROR **: file tramp-x86.c: line 155 
(mono_arch_patch_delegate_trampoline): should not be reached

aborting...

This does not occur on every webform but i don't know what may cause this.
Any idea ?

Thanks,
Johann Blais


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] BoundField Visible Attribute

2005-07-15 Thread Johann BLAIS

Hi all,

I think i found a bug in mono ASP.NET 2.0 control, GridView.
The 'visible' property of  boundfields can be set, but it does not have 
any effect on rendering.
When i set the visible property of a boundfield to false, it is still 
rendered.
I tried to modify my sources but i was only able to hide content of the 
column and not the column itself.

Can someone give me a little help, so i can create a patch to fix this.
I think problem comes from GridView.cs but I am not sure about what to 
modify.


Any help would be greatly appreciated.

Thanks
Johann BLAIS

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] ASP.NET 2.0 Device Specific Master Pages

2005-07-05 Thread Johann BLAIS

Hi,

I'm using Master Pages for quite a long time now, and I'm facing a 
common problem, cross browser navigation.
In MS ASP.NET 2.0, it is possible to define device specific (or more 
importantly browser specific) master pages.
The syntax is something like % Page Language=C# 
Master=default.master Mozilla:Master=mozilla.master %
This feature would eventually save my life (and the one of our 
webdesigner), i mean if... it was available on Mono :). Does someone 
know if this feature is to be implemented anytime soon ?


Many thanks

Johann Blais.
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-devel-list] Nested Master Pages

2005-06-28 Thread Johann BLAIS

Kornél Pál wrote:


From: Johann BLAIS
dummy
I'm sorry but I still don't understand what prevent ASP.NET 2.0 features
from being documented (a little)...
/dummy



It takes time to document something.:) And as it' still under development
it's no use to create documentation about implemented features. You 
can look

at the status pages (http://www.mono-project.com/Resources) to get more
information about what is implemented. And of course you can look at the
source code to check it.

Kornél


I understand your point.
thanks a lot for the link, that is indeed what I was looking for :)

Johann
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Nested Master Pages

2005-06-17 Thread Johann BLAIS

Hi,

I'm still working on Master Pages (thanks to Lluis), but now I face 
another problem : I cannot nest master pages.
Usually this is done by adding a master attribute to the child master 
definition tag.

%@ Master Language=C# Master=~/MyMainMaster.master %
but when i try to access a content page referencing the child master 
page, i end up with a Unknown attribute: Master error.


Anyway, is there somewhere i can find a mono asp.net 2.0 features 
documentation ?


Thanks
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-devel-list] Master Pages

2005-06-08 Thread Johann Blais

I compiled mono and xsp from sources, and I am using xsp2 to view my
pages.


-Message d'origine-
De : Rafael Teixeira [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 8 juin 2005 16:39
À : jblais
Cc : [EMAIL PROTECTED]
Objet : Re: [Mono-devel-list] Master Pages

Have you compiled Mono form SVN for the 2.0 profile? If not, the
tentative 2.0 features won't be available...

Current Mono releases (installable packages) track .NET 1.1, not the
unreleased (beta) .NET 2.0.

:)

On 6/8/05, jblais [EMAIL PROTECTED] wrote:
  
  
 
 Hello, 
 
   
 
 I'm trying to use a new ASP.NET 2.0 feature, Master Pages. I'm having
few
 problems. 
 
 First : I have created a master page with a public property. I need to
 access the property from the content pages, so I add the following tag
%@
 MasterType VirtualPath=~/MyMasterPage.master % in my
 content page. I end up with an Only one page allowed error, when I
try to
 access the content page. 
 
 The fact is it works fine under Visual Web Dev Express. Do I miss
something?
 
   
 
 Second minor problem 
 
 I define a contentplaceholder in the master page, I place a default
message
 between the beginning and closing tag. 
 
 In a content page I do NOT define a content referencing the
 contentplaceholder of the master page, the default text is displayed,
it is
 normal behaviour. 
 
 In another content page I DO define a content referencing the
 contentplaceholder and affect a message, the default text message is
 displayed along with the overriding message, but it should not display
the
 default message. Does someone has an explanation ? 
 
   
 
 Thanks. 
 
 Regards. 
 
   
 
 Johann BLAIS [EMAIL PROTECTED] 
 
   
  
 
 ---
  Outgoing mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.824 / Virus Database: 562 - Release Date: 28/12/2004
  
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 
 


-- 
Rafael Monoman Teixeira
---
I'm trying to become a Rosh Gadol before my own eyes. 
See http://www.joelonsoftware.com/items/2004/12/06.html for enlightment.
It hurts!

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.824 / Virus Database: 562 - Release Date: 28/12/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.824 / Virus Database: 562 - Release Date: 28/12/2004
 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list