[flexcoders] Re: NET web service from C#

2006-10-02 Thread elzumbasefue
Yes, I tryed with :port, but nothing happen. But then, when I create a WebService object in ActionScript, te constructor parameter is the url http://localhost:3451/web/webservice.asmx?wsdl;? This is the mainly confusion that I've. Tonight I'm going to do more tests. You've got a actionscript class

Re: [flexcoders] Re: NET web service from C#

2006-10-02 Thread John C. Bland II
mx:WebService id=MyWS showBusyCursor=true wsdl=http://whatever mx:operation name=MyFunc result=onMyFaultResult(event) fault=onMyFuncFault(event) / /mx:WebServiceThat's all you need to do to connect.You can use AS but the mxml makes it so easy I have yet to try the AS. :-)Also, ServiceCapture is

[flexcoders] Re: NET web service from C#

2006-10-02 Thread passive_thoughts
In its simplest form.C# Asp.Net Webservice:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Web;using System.Web.Services;namespace Director{ public class Hello : System.Web.Services.WebService { public Hello() {