大图问题(Web Services,RegNow) [英] Big-Picture Question (Web Services, RegNow)

查看:59
本文介绍了大图问题(Web Services,RegNow)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道你们中的一些人是否可以就以下问题向我提出建议。


我将生成共享软件许可证的代码移植到C#类。我希望

到达在线完成的程度(并最终自动完成

)。


在Web上公开此功能的最佳方法是什么? Web

服务答案 - 我几乎一无所知吗?


我也想和RegNow合作。虽然他们目前似乎不会通过网络服务支持注册,但是如果推动它们可能会被推迟。


我是否在这里?这看起来像是一种合理的方法吗?任何人都可以将b $ b指向我可以找到有关这些问题的更多信息吗?


谢谢!


- -

Jonathan Wood

SoftCircuits编程
http://www.softcircuits.com

I was wondering if some of you could advise me on the following issue.

I ported my code that generates shareware licenses to a C# class. I''d like
to get to the point where this is done online (and eventually done
automatically).

What is the best way to expose this functionality on the Web? Are Web
services the answer--I know almost nothing about them?

I''m also wanting to work with RegNow. While they don''t seem to currently
support registration via Web services, they might if pushed.

Am I on track here? Does this seem like a reasonable approach? Can anyone
point me to where I could find more information on these issues?

Thanks!

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com

推荐答案

" Jonathan Wood" < jw *** @ softcircuits.com写信息

新闻:%2 **************** @ TK2MSFTNGP04.phx.gbl ...


Web服务是您遇到以下两种

情况的解决方案:


1)您的代码需要通过网络提供(呃!)


2)您的代码需要在多个网络应用程序中提供


你是打算提供某种类型的门户网站,其他组织可以使用它来为他们的应用程序提供在线许可证密钥,或者

可能用于微软的在线软件激活方式(现在其他人)

做...?
"Jonathan Wood" <jw***@softcircuits.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...

Webservices are the solution when you are faced with the following two
situations:

1) your code needs to be available over the web (duh!)

2) your code needs to be available in more than one web app

Are you intending to provide some sort of web portal which other
organisations can use to provide on-line licence keys for their apps, or
maybe for online software activation the way Microsoft (and now others)
do...?

任何人都可以指出我可以在哪里找到更多关于这些的信息

问题?
Can anyone point me to where I could find more information on these
issues?



网上有数百个例子 - 只有Google ...


编写网络服务真的很简单这些天用Visual

Studio.NET - 它几乎将开发人员与所有SOAP内容隔离开来

(当然,它仍然在那里) - 你很漂亮只需点击并点击

即可将web服务添加到现有站点,填写代码,编译,测试和

deploy。

There are literally hundreds of examples on the net - just Google...

Writing a webservice really is very simple these days with Visual
Studio.NET - it pretty much isolates the developer from all the SOAP stuff
(though it''s still there, of course) - you pretty much just point and click
to add a webservice to an existing site, fill in the code, compile, test and
deploy.


嗨Mark,


Mark Rae写道:
Hi Mark,

Mark Rae wrote:

" Jonathan Wood" < jw *** @ softcircuits.com写信息

新闻:%2 **************** @ TK2MSFTNGP04.phx.gbl ...


Web服务是您遇到以下两种

情况的解决方案:


1)您的代码需要通过网络提供(呃!)


2)您的代码需要在多个网络应用程序中提供
"Jonathan Wood" <jw***@softcircuits.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...

Webservices are the solution when you are faced with the following two
situations:

1) your code needs to be available over the web (duh!)

2) your code needs to be available in more than one web app



我至少看到使用网络服务的另一个原因:


3)你想传输(相对)复杂的对象,而不必与
交易序列化/反序列化机制。


对我来说,这是我在一个简单的ASHX自定义处理程序上使用SOAP Web服务的主要原因,例如。为你的应用程序添加一个web

引用并为你自动创建

是很好的...


HTH,
Laurent

-

Laurent Bugnion,GalaSoft

软件工程: http://www.galasoft-LB.ch

PhotoAlbum : http://www.galasoft-LB.ch/pictures

支持加尔各答的儿童: http://www.calcutta-espoir.ch

I see at least one more reason to use web services:

3) You want to transmit (relatively) complex objects without having to
deal with the serialization/deserialization mechanisms.

To me, it''s the main reason why I would use SOAP web services over a
simple ASHX custom handler, for example. It''s neat to add a web
reference to your application and to have the whole proxy created
automatically for you...

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch


感谢您的输入。我正在联系RegNow,看看为什么这不是一个

选项。


BTW,有没有人知道从Web返回多个字段的方法服务?

我只能看到如何返回单个字段(函数'返回

值)。


谢谢。


-

Jonathan Wood

SoftCircuits编程
http://www.softcircuits.com

" Mark Rae" < ma ** @ markNOSPAMrae.com写信息

新闻:%2 **************** @ TK2MSFTNGP03.phx.gbl ...
Thanks for the input. I''m contacting RegNow to see why this is not an
option.

BTW, does anyone know of a way to return multiple fields from a Web service?
I''m only able to see how to return a single field (the function''s return
value).

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com
"Mark Rae" <ma**@markNOSPAMrae.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...

" Jonathan Wood" < jw *** @ softcircuits.com写信息

新闻:%2 **************** @ TK2MSFTNGP04.phx.gbl ...


Web服务是您遇到以下两种

情况的解决方案:


1)您的代码需要通过网络提供(呃!)


2)您的代码需要在多个网络应用程序中提供


你是打算提供某种类型的门户网站,其他组织可以使用它来为他们的应用程序提供在线许可证密钥,或者

可能用于微软的在线软件激活方式(现在其他人)

做...?
"Jonathan Wood" <jw***@softcircuits.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...

Webservices are the solution when you are faced with the following two
situations:

1) your code needs to be available over the web (duh!)

2) your code needs to be available in more than one web app

Are you intending to provide some sort of web portal which other
organisations can use to provide on-line licence keys for their apps, or
maybe for online software activation the way Microsoft (and now others)
do...?

>任何人都可以指出我在哪里可以找到关于这些的更多信息/>问题是什么?
>Can anyone point me to where I could find more information on these
issues?



网上有几百个例子 - 只有Google ...


编写网络服务真的很简单这些天用Visual

Studio.NET - 它几乎将开发人员与所有SOAP内容隔离开来

(当然,它仍然在那里) - 你很漂亮很简单点和

点击将web服务添加到现有站点,填写代码,编译,

测试和部署。


There are literally hundreds of examples on the net - just Google...

Writing a webservice really is very simple these days with Visual
Studio.NET - it pretty much isolates the developer from all the SOAP stuff
(though it''s still there, of course) - you pretty much just point and
click to add a webservice to an existing site, fill in the code, compile,
test and deploy.



这篇关于大图问题(Web Services,RegNow)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆