Raúl - [^BgTA^]'s Library tagged → View Popular
CodeRun - Online Development Platform
Plataforma online de desarrollo. Es un completo IDE de desarrollo para distintos lenguages como PHP, ASP, Javascript...
ASP.NET MVC : The Official Microsoft ASP.NET Site
-
ASP.NET MVC con MONO
- bgtasoft on 2008-03-14
ASP.NET 2.0: URL Mapping with RegEx Support
- Haciendo URLMapping en ASP.NET con soporte para Expressiones Regulares. - bgtasoft on 2008-02-18
Model-view-controller - Wikipedia, the free encyclopedia
- Frameworks ASP.NET para MVC - bgtasoft on 2008-02-01
-
- Web Client Software Factory
- Maverick.NET
- Microsoft UIP
- Monorail An ActionPack inspired MVC framework from the Castle Project
- Igloo software (Experimental) MVC Framework for .Net 2.0
- ASP.NET 3.5 Extensions Community Technology Preview
- Scott Guthrie about the new MVC features in Asp.net 3.5
.NET
Webservices and GtkSharp - Mono
- Como crear un webservice en .NET (a manubrio) - bgtasoft on 2006-07-26
-
Writing
Writing web services is not difficult, on the contrary it's a very easy task, you only need to derive from the System.Web.Services.WebService class, set some public methods with their respective attributes and ready. Lets starting writing our web service:
#File: RemoteWebService.cs
//mcs -r:System,System.Web,System.Web.Services RemoteWebService.cs -t:library
using System;
using System.Web;
using System.Web.Services;
namespace GtkWebservice
{
[WebService (Description="Our first web service")]
public class RemoteWebService : System.Web.Services.WebService
{
[WebMethod (Description="Adds two numbers")]
public int Add (int firstNumber, int secondNumber)
{
return firstNumber + secondNumber;
}
}
}We need to set the [WebService ()] attribute in the class for setting that class as the web service class, and we need to set the [WebMethod ()] attribute for setting that method as one web service's method, remember to set as public your web service methods, of course if you want to access then by the "outside world".
-
You need to acces the web service from within your Gtk# application, for doing that task you need to get the proxy from that web service, use this:
wsdl http://localhost:8081/index.asmx?wsdl -out:WSAppProxy.cs -n:GtkWebService
for creating the proxy class that allows you to access the public methods from the webservice.
Ajaxian » A Comparison of Ajax Frameworks for ASP.NET
- Comparacion de toolkits ajax para asp.net - bgtasoft on 2006-07-25
Selected Tags
Related Tags
Sponsored Links
Top Contributors
Groups interested in asp.net
-
.NET Programming Services, ASP.NET Web Programming, .NET Application Development
Outsourcing .NET Programmin...
Items: 1 | Visits: 59
Created by: outsourcingops
-
eBooks Space for download FREE!!
Many eBooks files Space for...
Items: 1 | Visits: 72
Created by: Kim So Hee
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo
