客户端的silverlight流程

发布于 2024-10-18 14:18:01 字数 214 浏览 1 评论 0原文

我是一名php开发人员,对silverlight了解不多,我正在开发一个需要在客户端浏览器上处理请求的项目,例如发布http请求并处理它们,它是一个自动目录提交器,可以在silverlight应用程序中完成吗?

我希望用户打开 silverlight 应用程序,它将从客户端提交 post 请求,并处理成功和失败的过程。

是否可以?

请指导我。

谢谢

i am a php developer, not knowing much about silverlight, i am working on a project which needs to process request on client browser, like post httprequests and process them, its a auto directory submitter, can it be done in silverlight application?

i want the user to open the silverlight application, which will submit the post request from client side, and also process for success and failure.

is it possible?

please guide me.

thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高速公鹿 2024-10-25 14:18:01

当您运行 silverlight 应用程序时,您基本上会下载一个 .xap 文件(其中包含 dll)。这些是在您的机器上执行的。我不是 PHP 专家,但我似乎记得 PHP 是在服务器端执行的 - 所以现在您知道其中的区别了。

为了与服务器通信,您可以使用一种流行的方法:

  • 使用 WCF Web 服务
  • 使用 WCF Ria Web 服务
  • 使用 WCF REST Web 服务
  • 使用套接字

我不确定,但我认为使用 WebClient 对象也可以通过POST 动词(不过你需要查找它)。

您可以访问 silverlight.net 的学习部分,获取一些有关使用 WCF 服务或动手实验室的精彩视频。我还推荐 Matthew McDonald 的 Pro Silverlight(3 或 4)书籍,其中有一些很好的套接字示例。

希望有帮助。

问候

When you run a silverlight application, you basically download a .xap file (with dlls inside). Those are executed on your machine. I'm no PHP expert but I seem to recall that PHP is executed server-side - so now you know the difference.

In order to communicate with the server you can use one of the popular methods :

  • use a WCF Webservice
  • use a WCF Ria WebService
  • use a WCF REST Webservice
  • use Sockets

I'm not sure but I think that using a WebClient object is also possible with a POST verb (you'd need to look it up though).

You can access silverlight.net's learning section for some good videos about using WCF services or hand-on labs. I'd also recommend Matthew McDonald's Pro Silverlight (3 or 4) books, those have some good socket examples.

Hope that helps.

Regards

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文