我有两个.net应用程序。一个是普通的Windows窗体应用程序,而另一个是Microsoft Word COM加载项。我正在用C#开发这两个应用程序。
我需要这两个应用程序来相互通信。我想知道实现这一目标的最佳途径是什么。
我首先要做的是我应该使用双向命名管道来执行此操作,但命名管道是系统范围的,我需要将连接限制为在同一会话中处理运行(这可能会和将来在终端服务器上使用。)
有没有办法将命名管道限制为当前会话?如果我没有什么替代品?
由于
答案 0 :(得分:0)
您可以创建本地Web服务来实现此目的。
要创建您的Web服务,您必须执行类似以下操作:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace WebService1
{
/// <summary>
/// Summary description for Service1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
public int myInt = 0;
[WebMethod]
public int increaseCounter()
{
myInt++;
return myInt;
}
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
}
当您运行Web服务时,您应该看到类似的内容:
您应该能够以:
连接到该服务
最后输入您刚刚创建的服务的网址:
现在,您可以从此控制台应用程序中将该类Service1中的对象实例化为:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication36
{
class Program
{
static void Main(string[] args)
{
localhost.Service1 service = new localhost.Service1();
// here is the part I don't understand..
// from a regular class you will expect myInt to increase every time you call
// the increseCounter method. Even if I call it twice I always get the same result.
int i;
i=service.increaseCounter();
Console.WriteLine(i.ToString());
// you can recive string data as:
string s = service.HelloWorld();
// output response from other program
Console.WriteLine(s);
Console.Read();
}
}
}
使用这种技术,您将能够将大部分内容传递给您的其他应用程序(任何可序列化的)。所以也许你可以创建这个webservice作为第三个线程,使其更有条理。希望这会有所帮助。