I developed and hosted a SOAP web service (written in java and hosted on tomcat using xfire webservices) on a hylafax machine, and I named the web service from .net
- hylafax, . . , .
public class HylaFaxService{
public String sendFax(String faxno, byte[] bytContent){
Runtime.getRuntime().exec("sendfax -n -d 5551212 -d 5551313 /etc/networktemp/f1.pdf");
}
}