苏珊 - 拼命寻求...... [英] Susan - desperately seeking ...

查看:58
本文介绍了苏珊 - 拼命寻求......的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好(和女孩们),


我有点受约束。我正在寻找一个简单的概念证明。 C#

应用程序(WinForm OR控制台)向一个简单的PHP脚本发送Web请求

并从PHP脚本接收BINARY数据。二进制数据是必要的,因为我希望能够发送文件以及压缩的

(压缩)数据。


示例PHP脚本可以,只需编写一些虚拟数据,然后将
发送到C#应用程序。在过去的几周里,我拼命地试图找到这样一个例子,但到目前为止已经不成功了。我会是

非常感谢能帮助的人。

Hi Guys (and girls),

I am in a bit of a bind. I''m looking for a simple "proof of concept" C#
app (WinForm OR console) that sends a web request to a simple PHP script
and receives BINARY data back from the PHP script. Binary data is
necessary because I want to be able to send files as well as compressed
(zipped) data.

The example PHP script can ofcourse, simply make up some dummy data and
send it to the C# app. I have tried desperately over the last few weeks
to locate such an example, but have been unsuccesful so far. I would be
most grateful for anyone who can help.

推荐答案

为什么不是你只需发布规格然后有人可以为你编码,拉链

并将其贴在某处供你下载。

" Susan Baker" < SB **** @ no.spam.net>在消息中写道

news:do ********** @ nwrdmz03.dmz.ncs.ea.ibs-infra.bt.com ...
Why don''t you just post the specs then someone can code it for you, zip it
and post it somewhere for you to download.
"Susan Baker" <sb****@no.spam.net> wrote in message
news:do**********@nwrdmz03.dmz.ncs.ea.ibs-infra.bt.com...
嗨大家(和女孩),

我有点束缚。我正在寻找一个简单的概念证明。 C#
应用程序(WinForm OR控制台),它向一个简单的PHP脚本发送Web请求,并从PHP脚本接收BINARY数据。二进制数据是必要的,因为我希望能够发送文件以及压缩的(压缩的)数据。

示例PHP脚本可以当然,只需要编写一些虚拟数据数据并将其发送到C#应用程序。在过去的几个星期里,我拼命地试图找到这样一个例子,但到目前为止已经不成功了。对于任何可以提供帮助的人,我都会非常感激。
Hi Guys (and girls),

I am in a bit of a bind. I''m looking for a simple "proof of concept" C#
app (WinForm OR console) that sends a web request to a simple PHP script
and receives BINARY data back from the PHP script. Binary data is
necessary because I want to be able to send files as well as compressed
(zipped) data.

The example PHP script can ofcourse, simply make up some dummy data and
send it to the C# app. I have tried desperately over the last few weeks to
locate such an example, but have been unsuccesful so far. I would be most
grateful for anyone who can help.





Chance Hopkins写道:

Chance Hopkins wrote:
为什么不发布规格然后有人可以为你编写代码,将其压缩
并将其发布到某个地方供你下载。
Why don''t you just post the specs then someone can code it for you, zip it
and post it somewhere for you to download.




嗨机会,感谢您的快速回复。我已经将您的规格作为我的私人电子邮件发送给了您。我期待着您的回复。


问候,


Sue



Hi Chance, Thanks for the quick response. I have sent you the specs as
well as my private email. I look forward to hearing from you.

Regards,

Sue

On Thu,2005年12月22日02:58:41 +0000,Susan Baker写道:
On Thu, 22 Dec 2005 02:58:41 +0000, Susan Baker wrote:
嗨大家(和女孩),

我我有点绑定。我正在寻找一个简单的概念证明。 C#
应用程序(WinForm OR控制台),它向一个简单的PHP脚本发送Web请求,并从PHP脚本接收BINARY数据。二进制数据是必要的,因为我希望能够发送文件以及压缩的(压缩的)数据。

示例PHP脚本可以当然,只需要编写一些虚拟数据数据并将其发送到C#应用程序。在过去的几周里,我拼命想要找到这样一个例子,但到目前为止一直没有成功。我非常感谢任何可以提供帮助的人。
Hi Guys (and girls),

I am in a bit of a bind. I''m looking for a simple "proof of concept" C#
app (WinForm OR console) that sends a web request to a simple PHP script
and receives BINARY data back from the PHP script. Binary data is
necessary because I want to be able to send files as well as compressed
(zipped) data.

The example PHP script can ofcourse, simply make up some dummy data and
send it to the C# app. I have tried desperately over the last few weeks
to locate such an example, but have been unsuccesful so far. I would be
most grateful for anyone who can help.




Susan,为什么不安装PEAR MAIL_Mime包并发送二进制文件
电子邮件数据?基本上,您希望将PHP脚本

中的数据发送到应用程序。这通常是通过消息传递/排队来完成的,例如MQSeries(WebSphere的一部分)或Tibco的RendesVous的
应用程序。

在没有这种复杂的排队系统的情况下,普通的电子邮件

可能会成功。它可以配置和播放,以确保邮件最终在正确的地址上



两个不同系统进行通信的另一个解决方案是共享一个

数据库。二进制数据将作为BLOB字段上传,

行指针将传递给客户端。


-
http://www.mgogala.com



Susan, why don''t you install PEAR MAIL_Mime package and send the binary
data by email? What you want is, basically, to send data from PHP script
to an application. That is usually done through messaging/queueing
applications like MQSeries (part of WebSphere) or Tibco''s RendesVous.
In the absence of such complex queueing systems, an ordinary email
might do the trick. It can be configured and played with, to make sure
that the mail ends up on the right address.
Another solution for two diverse system to communicate is to share a
database. Binary data would then be uploaded as a BLOB field and the
row pointer would be passed to the client.

--
http://www.mgogala.com


这篇关于苏珊 - 拼命寻求......的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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