gpt4 book ai didi

.net - HylaFax,如何从 .net 应用程序使用它

转载 作者:行者123 更新时间:2023-12-01 08:32:43 25 4
gpt4 key购买 nike

我有发送传真的 .net 应用程序,我正在考虑使用 hylaFAX 发送传真。

我找不到如何从 .net 调用 hylafax 服务器。是否有任何图书馆或任何我可以用来从 .net 调用 hylafax 的东西?

最佳答案

我已经在 hylafax 机器上开发和托管了 SOAP 网络服务(用 java 编写并使用 xfire webservices 在 tomcat 中托管),我从 .net 调用了网络服务

Web 服务代码将执行命令行进行 hylafax 操作,请参阅部分代码。我过去做过这个,而且效果很好。

public class HylaFaxService{

public String sendFax(String faxno, byte[] bytContent){
// sendfax -n -d 5551212 -d 5551313 /etc/networktemp/f1.pdf

// 1. save the bytContent in some temp file say /etc/networktemp/f1.pdf
// 2. now call the hylafax sendcommand

Runtime.getRuntime().exec("sendfax -n -d 5551212 -d 5551313 /etc/networktemp/f1.pdf");

}
}

关于.net - HylaFax,如何从 .net 应用程序使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1255780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com