<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>星辰.Net技术社区论坛 - WebService</title>
    <link>http://www.netcsharp.cn/showforum-26.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) 星辰.Net技术社区论坛</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Fri, 21 Nov 2008 17:58:46 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>Web Service使用Google API实现全文翻译服务</title>
      <description><![CDATA[在开发应用软件和网站的过程中，越来越多的地方需要用到翻译功能。利用Google AJAX Language API，我们就可以开发出支持全球30多种语言的全文翻译Web Service。

首先使用Visual Studio 2008新建一个“ASP.NET Web服务应用程序”

http://blog.moozi.net/attachments/200811/5744629640.jp]]></description>
      <link>http://www.netcsharp.cn/showtopic-1663.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Sat, 08 Nov 2008 17:15:00 GMT</pubDate>
    </item>
    <item>
      <title>WebService 传递信息时候,会把 /r/n 变成 /n</title>
      <description><![CDATA[我们在使用WEB Service时，需要注意的一点是，传递过程中会丢失一些字符，比较典型的是 /r/n 中 /r 回车字符会被丢弃。这是XML规范所导致的问题。XML规范关于这部分的描述如下：
  2.11 行尾处理    
为编辑的方便起见，存储XML已析实体的计算机文件经常用行来组织。通常这些行用回车符(#xD)和换行符(#xA)的一些组合来分隔。 
  为了使应用的工作简单化，对于一个]]></description>
      <link>http://www.netcsharp.cn/showtopic-1279.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Mon, 11 Aug 2008 14:31:00 GMT</pubDate>
    </item>
    <item>
      <title>什么时候使用webservice</title>
      <description><![CDATA[跨越防火墙的通信 

如果你的应用程序有成千上万的用户，而且他们都分布在世界各地，那么客户端和服务器之间的通信将是一个棘手的问题。那是因为客户端和服务器之间通常都会有防火墙或者代理服务器。在这种情况下，你想使用DCOM就不是那么简单了，而且，通常你也不愿意把你的客户端程序发布到如此庞大数量的每一个用户手中。于是，你最终选择了用浏览器作为客户端，写下一堆ASP页面，把应用程序的中间层暴露给最终用]]></description>
      <link>http://www.netcsharp.cn/showtopic-907.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Wed, 21 May 2008 17:55:00 GMT</pubDate>
    </item>
    <item>
      <title>WebService中使用自定义类的解决方法（5种）</title>
      <description><![CDATA[最近一个项目要用到webservice调用业务层类，刚开始的时候遇到了一点小麻烦，经过这两天的总结和实践，终于总结出几个比较常见的情况下的解决方法。
        不知道大家是怎么解决，可能太简单了，所以没有觉得它是一个问题。反正我在博客园中没有搜索到相关的帖子。
        说实话，以前并没有真正开发过涉及webservice的项目，顶多也就是看看msdn，写点小程序，当时并没有发现问]]></description>
      <link>http://www.netcsharp.cn/showtopic-808.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Wed, 07 May 2008 12:11:00 GMT</pubDate>
    </item>
    <item>
      <title>基于Web Services建立Asp与Asp.Net之间Session数据桥的应用研究</title>
      <description><![CDATA[本文的目的在于提供一种可行的解决方案通过Web Service技术来整合和管理现有的Asp程序到Asp.Net。 此应用解决方案尽可能从实际出发以迭代更新方式的策略把Asp Web服务器内存中的当前Session更新到Asp.Net。 
背景: 
　　现有公司的产品OA是采用asp早先的技术开发，需要与目前最新的asp.net产品进行数据交互的应用。现有的asp应用程序 
往往采用“ASP ]]></description>
      <link>http://www.netcsharp.cn/showtopic-689.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Sat, 12 Apr 2008 15:07:00 GMT</pubDate>
    </item>
    <item>
      <title>WebService--实现CrystalReport与数据库连接</title>
      <description><![CDATA[1. 引言
Crystal Report已内嵌为微软 Visual Studio .NET的标准报表工具，它的优点是：在 .NET 平台上能够轻松创建交互式的、高质量显现的报表内容；可以在 Web 平台和 Windows 平台上承载报表，并将 Crystal Report作为报表的 Web 服务在 Web 服务器上发布；利用Crystal Report 创建的Web应用程序，使用户可以深化图表并]]></description>
      <link>http://www.netcsharp.cn/showtopic-643.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Mon, 07 Apr 2008 17:41:00 GMT</pubDate>
    </item>
    <item>
      <title>javascript调用webservice要点补疑</title>
      <description><![CDATA[使用xmlhttp对象调用非本地webservice经常也遇到调用失败的情况,这应该是一个不断总结的过程.现列举我所经历过的困扰多时的细节错误,
假定一个天气预报的服务如下:
       using System;
http://www.cnblogs.com/Images/OutliningIndicators/None.gif    using System.Web;
http://]]></description>
      <link>http://www.netcsharp.cn/showtopic-619.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Fri, 04 Apr 2008 16:29:00 GMT</pubDate>
    </item>
    <item>
      <title>WebService(1)我的第一个WebService程序</title>
      <description><![CDATA[从今天开始我们将一步一步的做WebService的实例,今天我们主要是将如何创建\测试\使用WebService.
创建WebService的方法:
首先打开.NET 2003-&amp;gt;文件-&amp;gt;项目-&amp;gt;ASP.Net Web服务(名字叫TestWebService1).
之后我们能看到一个Service1.asmx的文件,点击查看代码.可以看见class Service1 :是继]]></description>
      <link>http://www.netcsharp.cn/showtopic-308.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:13:00 GMT</pubDate>
    </item>
    <item>
      <title>客户端访问Web Service方法的一个细节</title>
      <description><![CDATA[之前遇到一个要求，需要能够取消一个正在进行中的Web Service。这也是我第一次遇到这个功能，不过不难，我想。既然ASP.NETAJAX的客户端与服务器端通信完全通过Microsoft AJAX Library的异步通信层进行，那么我们只要得到正在请求WebService的Sys.Net.WebRequest对象，调用其abort方法就可以了。但是究竟应该如何得到这个对象呢？于是我粗略地阅读了]]></description>
      <link>http://www.netcsharp.cn/showtopic-536.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Sat, 29 Mar 2008 09:26:00 GMT</pubDate>
    </item>
    <item>
      <title>C#利用Web Service实现短信发送</title>
      <description><![CDATA[通过编程方式实现短信息的发送对很多人来说是一件比较烦杂的事情，目前一般的解决方法是通过计算机和手机的连线，通过可对手机编程的语言编写相关的手机短信息程序来实现，而这种方法对于一般人来说是很难达到的，因为此种方法不仅要有很多必备的硬件设备，也还需懂得手机编程的相关知识。本文就来探讨一下另外一种通过Visual C#发送短信息的简单实现方法，这种方法在实现过程中比我们想象的要简单许多，只需拥有Visu]]></description>
      <link>http://www.netcsharp.cn/showtopic-528.aspx</link>
      <category>WebService</category>
      <author>admin</author>
      <pubDate>Fri, 28 Mar 2008 21:38:00 GMT</pubDate>
    </item>
    <item>
      <title>通过WebService调用SQLXML(SQL Server 2005)</title>
      <description><![CDATA[介绍
我最近需要给用户创建一个feed，所有的数据都是放在sqlserver数据库里的，所以我疯狂的查找把sqlserver里的数据转换成xml的最快速的方法。现在我知道了xml已经成为了sqlserver2005的一部分。

之后我萌生出了一个主意，就是创建一个webservice用于数据库转xml的服务，这样用户就可以在任何时候调用他们需要的数据（如果需要也可以传参数）

现在，我知]]></description>
      <link>http://www.netcsharp.cn/showtopic-430.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Fri, 21 Mar 2008 10:17:00 GMT</pubDate>
    </item>
    <item>
      <title>[翻译]如何使用webservice作为数据源去生成MicrosoftReportingServices2005的报表</title>
      <description><![CDATA[原文地址：http://www.codeproject.com/sqlrs/WebAndReportingServices.asp



如何使用webservice作为数据源去生成Microsoft Reporting Services 2005的报表

原文发布日期：2006.05.18
作者：Dimitar Madjarov
翻译：webabcd


http://ww]]></description>
      <link>http://www.netcsharp.cn/showtopic-429.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Fri, 21 Mar 2008 10:16:00 GMT</pubDate>
    </item>
    <item>
      <title>使用VS快速将类方法封装成Web服务</title>
      <description><![CDATA[在项目中有时需要将整个业务逻辑类下面的方法封装成Web服务，由于只是简单的封装，在Web服务的后台代码中不会写上任何逻辑，这时我们就需要Web服务提供的方法与类下面提供的方法相同，这是就考虑到使用接口。申明一个接口，然后让业务逻辑类和Web服务类都实现该接口即可。这里我们就要用到VS中一个很好的功能：重构！
假设我们现在有一个业务逻辑类HelloLogic用于处理一些业务逻辑，如：

htt]]></description>
      <link>http://www.netcsharp.cn/showtopic-320.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Tue, 18 Mar 2008 19:34:00 GMT</pubDate>
    </item>
    <item>
      <title>WebService(4)缓存的使用</title>
      <description><![CDATA[在.net里有两种用于WEB运用的缓存技术:
输出缓存:把一次请求说产生的输出保存在内存中
数据缓存:把数据保存在内存里
在WebService里使用输出缓存的方法如下:
http://www.cnblogs.com/Images/OutliningIndicators......]]></description>
      <link>http://www.netcsharp.cn/showtopic-307.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:12:00 GMT</pubDate>
    </item>
    <item>
      <title>对WebService的在企业应用中的思考。</title>
      <description><![CDATA[    WebService能给企业应用软件带来什么好处，答案很多，但回答最多莫过于“跨平台”。难道我们为企业开发中应用程序的目的是“跨平台”吗，答案是否定，这不过是一种噱头。
         估计有很多人会反对，理由是Google、IBM、淘宝...等等的那个什么什么应用不就是WebService的，可以跨平台，呵呵，但别忘了，那些个都是数一数二的大公司，全世界都没几个的。能用到跨平台的We]]></description>
      <link>http://www.netcsharp.cn/showtopic-306.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:11:00 GMT</pubDate>
    </item>
    <item>
      <title>Web Service的异常处理</title>
      <description><![CDATA[(原文排版:www.marshine.com) 
version : 1.1 
committed : 2004/2/26 
updated : 2004/3/4 
   在.Net中实现Web服务时，在Web服务接口中产生的任何用户异常（非SoapException之外的异常）都被包装为SoapException传递给客户端，这使得难以采用通常的方式处理WebService的异常。本文讲]]></description>
      <link>http://www.netcsharp.cn/showtopic-305.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:10:00 GMT</pubDate>
    </item>
    <item>
      <title>通过WebServices上传和下载文件</title>
      <description><![CDATA[随着internet技术的发展和跨平台需求的日益增加，web Services的应用越来越广，我们不但需要通过WebServices传递字符串信息，而且需要传递二进制文件信息。下面，我们就分别介绍如何通过WebServices从服务器下载文件到客户端和从客户端通过Web Services上载文件到服务器。
一：通过web Services显示和下载文件
我们这里建立的webServices的名]]></description>
      <link>http://www.netcsharp.cn/showtopic-304.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:06:00 GMT</pubDate>
    </item>
    <item>
      <title>Web Service 中的身份验证策略--使用自定义SOAP 标题</title>
      <description><![CDATA[自定义SOAP标题可以限制调用服务的用户范围，不让我的服务随便被人使用。下面是个例子: http://www.cnblogs.com/Images/OutliningIndicators/None.gifusing System;
http://www.cnblogs.com/Images/OutliningIndicators/None.gifusing System.Web;
http:/]]></description>
      <link>http://www.netcsharp.cn/showtopic-303.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:04:00 GMT</pubDate>
    </item>
    <item>
      <title>客户端访问Web Service方法的一个细节</title>
      <description><![CDATA[之前遇到一个要求，需要能够取消一个正在进行中的Web Service。这也是我第一次遇到这个功能，不过不难，我想。既然ASP.NETAJAX的客户端与服务器端通信完全通过Microsoft AJAX Library的异步通信层进行，那么我们只要得到正在请求WebService的Sys.Net.WebRequest对象，调用其abort方法就可以了。但是究竟应该如何得到这个对象呢？于是我粗略地阅读了]]></description>
      <link>http://www.netcsharp.cn/showtopic-302.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:03:00 GMT</pubDate>
    </item>
    <item>
      <title>Webservice 的设计和模式</title>
      <description><![CDATA[本文是篇译文（原文在devx），对于想初步了解webservice的朋友可能有些帮助。

Webservice作为一项新的技术出现在我们面前，它的出世是用于解决在不同的平台下的应用的协同的。目前几乎每家厂商都要去开发Webservice应用，然而如果缺乏对Webservice更深的了解，不能很好的在设计阶段处理好一些重要的问题，那么最终完成的系统必然是效率低下，没有可靠性的产品。 

在设]]></description>
      <link>http://www.netcsharp.cn/showtopic-300.aspx</link>
      <category>WebService</category>
      <author>star65225692</author>
      <pubDate>Mon, 17 Mar 2008 12:01:00 GMT</pubDate>
    </item>
  </channel>
</rss>