作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有发送传真的 .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/
我有发送传真的 .net 应用程序,我正在考虑使用 hylaFAX 发送传真。 我找不到如何从 .net 调用 hylafax 服务器。是否有任何图书馆或任何我可以用来从 .net 调用 hylafa
我是一名优秀的程序员,十分优秀!