从大型机(MVS 或 VM)到 SharePoint 的 FTP?

发布于 2024-07-26 20:48:23 字数 202 浏览 6 评论 0原文

我们正在将我们的网站迁移到 SharePoint。 我们有多个后端作业在我们的大型机上运行,​​并将 ftp 输出文件发送到服务器,并且我们有指向网页上位置的链接,客户端可以访问它们。

现在,当我们迁移到 SharePoint 时,我们发现这是不可能的。我们发现我们将无法通过 ftp 传输到 SharePoint 站点。 我们该怎么做呢? 有人可以帮忙吗?

We are migrating our sites to SharePoint. We have multiple back end jobs that run on our mainframes and ftp output files to the server and we have links to the location on our web pages and clients can access them.

Now when we have moved to SharePoint we have found that this is not possible We have found that we will not be able to ftp to a SharePoint site. How do we do it? Can some one help.

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

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

发布评论

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

评论(5

清晰传感 2024-08-02 20:48:23

您可以使用 WebDAV 协议从 SharePoint 服务器访问内容。
如果您的大型机有某种执行 WebDAV 的方法,那么您可以使用它来代替 FTP 协议。

如果您的大型机支持 Java,则可以查看一些基于 Java 的解决方案此处< /a>.

另一种解决方案还可以开发自定义 Windows 服务,该服务轮询或订阅 FTP 服务器文件夹上的文件创建事件,并使用 SharePoint 对象模型将文档上传到 SharePoint 库。
有很多这样的例子,例如 这个

You can access content from a SharePoint server using the WebDAV protocol.
If your mainframe has some kind of means of doing WebDAV, then you can use that instead of the FTP protocol.

If your mainframe has support for Java, there are a couple of Java based solutions that you can take a look at here.

Another solution would also to develop a custom Windows Service, that either polls or subscribes to file creation events on the FTP server folder and upload the documents to a SharePoint Library using the SharePoint object model.
There are many examples of that out there, for example this one.

不气馁 2024-08-02 20:48:23

Java 在大型机上得到了很好的支持,并且 Sharepoint 提供了 Web 服务 API。 两者应该构成一个非常简单的解决方案。

Java is well supported on the mainframe and Sharepoint provides a web service API. The two should make for a pretty simple solution.

郁金香雨 2024-08-02 20:48:23

首先,大型机确实没有一种好方法可以直接与 Sharepoint 交互。 这是因为所有 Sharepoint 内容都存储在数据库中,而不是作为某个目录中的静态文件。 (大型机 >> Sharepoint == !work)

其次,您可以创建一个自定义 Web 部件,使用连接器直接与大型机对话(Sharepoint >> 大型机 == 昂贵的自定义开发)

第三,您可以创建一个站点有一个链接页面。 这些链接将指向主机通过 FTP 传输文件的服务器。 这样,大型机就不会尝试连接到 Sharepoint 服务器。 (大型机 >> ftp 服务器 << Sharepoint == 快速但肮脏的开箱即用解决方案)

First, it is true that there wouldn't be a good way for the mainframe to interact with Sharepoint directly. This is because all of the Sharepoint content is stored in a database, not as static files in some directory. (mainframe >> Sharepoint == !work)

Second, you could create a custom webpart that uses a connector to talk directly to the mainframe (Sharepoint >> mainframe == expensive custom development)

Thirdly, you could create a site that has a page of links. Those links would be to the server where the mainframe FTPs the files. This way the mainframe isn't trying to connect to the Sharepoint server. (mainframe >> ftp-server << Sharepoint == quick and dirty out-of-the-box solution)

孤檠 2024-08-02 20:48:23

也许一个选项是编写自定义 Web 服务,该服务接受二进制文件和文件名/路径作为参数。 然后将WebService部署到sharepoint。
另一种选择是编写一个 Windows 服务,该服务使用 FileSystemWatcher 来检测您 FTP 到的共享点服务器上的文件夹的更改。 然后该服务将文件移动到共享点。

Maybe an option is a to write a custom Webservice, that accepts the file as binary and the filename / path as parameters. Then deploy the WebService to sharepoint.
Another option is to write a Windows Service that uses a FileSystemWatcher to detect changes to a folder on the sharepoint server you FTP to. The service then moves the file to sharepoint.

手心的温暖 2024-08-02 20:48:23

很抱歉顶部的所有标签混乱。

第三

,您可以创建一个包含链接页面的网站。 这些链接将指向主机通过 FTP 传输文件的服务器。 这样,大型机就不会尝试连接到 Sharepoint 服务器。 (大型机 >> ftp 服务器 << Sharepoint == 快速但肮脏的开箱即用解决方案)。 我们的 FTP 服务器即将停用,因此我们可能无法执行此操作。

其次,您可以创建一个自定义 Web 部件,使用连接器直接与大型机通信(Sharepoint >> mainframe ==昂贵的定制开发)。(需要调查。目前对此一无所知。如果您可以提供一些示例来提供帮助,那就太好了)

共享点站点中列表的电子邮件选项怎么样。大型机是否能够通过电子邮件直接共享点站点?

需要更多建议。

Sorry for all the Tag confusion on the top.

Now

Thirdly, you could create a site that has a page of links. Those links would be to the server where the mainframe FTPs the files. This way the mainframe isn't trying to connect to the Sharepoint server. (mainframe >> ftp-server << Sharepoint == quick and dirty out-of-the-box solution). Our FTP server will be decommisioned soon so we may not able to do it.

Second, you could create a custom webpart that uses a connector to talk directly to the mainframe (Sharepoint >> mainframe == expensive custom development).( Need to investigate. At present have no idea about it.If you can help with few examples it would be great)

What about the Email option to Lists in a share point site.Will mainframes be able to email to share point site directly?

Need more suggestions.

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