摘要:
我做了一个三级联动的下拉列表框,后台用webservice,前台用webservice behavior与后台通讯。请高手们多提改进意见。
server端:(service1.asmx.cs)
using system;
using system.text;
using system.configuration;
using system.collections;
using s......
摘要:
无论是微软.net还是sunone都是以web服务(web services)为核心的,此外,各家公司也都纷纷把web服务作为重点。web服务到底是什么?看看各家公司的说法。
微软:
web服务是.net的核心
微软为web服务下的定义是通过标准的web协议可编程访问的web组件。“软件就是服务”,这已经是软件发展的一个潮流了。未来的软件厂商就象现在的电信公司一样,用户可以按照......
CreateandControlWindowsServices--NotaSlapShot,butAlmostasFast[等级:高级]
not a slap shot, but almost as fast
creating the service using .net is fairly straightforward. you use the .net frameworks system.serviceprocess namespace and four classes within it: servicebase, serviceinstaller, serviceprocessinstaller, and servicecontroller. these classes provide most of the functionality you need to create a service (see figure 1).
figure 1 | everything you need in one namespace. click here.
the servicebase class defines methods a derived class can override so the service control manager can control a service—including onstart(), onstop(), onpause(), and oncontinue(). furthermore, a service can override ...
下一页 摘要:
namespace imtiaz
{
using system;
using system.io;
using system.net;
using system.net.sockets;
using system.text;
using system.threading ;
class mywebserver
{
private tcplistener my......