14

How can i send fax programatically with java?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Argiropoulos Stavros
  • 9,436
  • 11
  • 61
  • 79

4 Answers4

16

Woo, Google: fax4j.

UPDATE: The fax4j project has moved to github. Latest releases hosted here.

Jordi Castilla
  • 26,609
  • 8
  • 70
  • 109
Travis Gockel
  • 26,877
  • 14
  • 89
  • 116
4

Try out phaxio, it'll probably be the simplest path towards implementation. It's a RESTful api, much cheaper than interfax and it's built specifically for developers.

user901118
  • 41
  • 1
3

For even more options, Google: java fax api

For a commercial service with a jar, code samples and a free developer program: http://www.interfax.net/en/dev/java

Adam M
  • 136
  • 6
1

Hoiio provides a simple RESTful API to send a fax. http://developer.hoiio.com/docs/fax_send.html

You can also receive fax all the same. The charges are by "per minute", since fax are nothing but transmitted data over a phone call.

The Hoiio Java SDK currently does not include fax. But you may fork the SDK and easily add the code for fax.

Disclaimer: I work for Hoiio

samwize
  • 25,675
  • 15
  • 141
  • 186