<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/gnu-hylafax/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 17 Mar 2015 16:30:47 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/gnu-hylafax/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>#4 Problem sending PDFs with multiple pages</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/4/?limit=25#8992</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;No.  We send multi-page documents all the time.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Jardine</dc:creator><pubDate>Tue, 17 Mar 2015 16:30:47 -0000</pubDate><guid>https://sourceforge.net1a12d9629814b2e796348bd6228c30b95db7c351</guid></item><item><title>Problem sending PDFs with multiple pages</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi is there an issue with sending Documents with more than one page?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jasper Golze</dc:creator><pubDate>Tue, 17 Mar 2015 16:28:54 -0000</pubDate><guid>https://sourceforge.neta832683c1a0abf6200a843f2911accf4f43c9b11</guid></item><item><title>Sending PDF-Doc</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;my problem:&lt;br /&gt;
i can't send any PDFs. I get the message:&lt;br /&gt;
"550 c:\neu\test.jpg: No such file or directory."&lt;/p&gt;
&lt;p&gt;my code:&lt;br /&gt;
import gnu.hylafax.Client;&lt;br /&gt;
import gnu.hylafax.HylaFAXClient;&lt;br /&gt;
import gnu.hylafax.Job;&lt;br /&gt;
import gnu.inet.ftp.FtpClientProtocol;&lt;/p&gt;
&lt;p&gt;import java.io.File;&lt;br /&gt;
import java.util.Vector;&lt;/p&gt;
&lt;p&gt;public class neu {&lt;/p&gt;
&lt;p&gt;/**&lt;br /&gt;
* @param args&lt;br /&gt;
*/&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
Client c = new HylaFAXClient();&lt;br /&gt;
try {&lt;/p&gt;
&lt;p&gt;//Open the host. &lt;br /&gt;
c.open("************");&lt;br /&gt;
c.user("*************");&lt;/p&gt;
&lt;p&gt;//Set the transfer mode and type.  This is important if you are &lt;br /&gt;
//having problems getting the HylaFAX server recognize the files&lt;br /&gt;
//you are sending.&lt;br /&gt;
c.mode(FtpClientProtocol.MODE_STREAM);&lt;br /&gt;
c.type(FtpClientProtocol.TYPE_IMAGE);&lt;/p&gt;
&lt;p&gt;//Do this only is a password is required in the hosts.hfaxd &lt;br /&gt;
//file on the server.&lt;br /&gt;
c.pass("*****");&lt;/p&gt;
&lt;p&gt;//Do this if you want to do admin functions.  Must be configured&lt;br /&gt;
//correctly in the hosts.hfaxd file.&lt;br /&gt;
//c.admin(password);&lt;/p&gt;
&lt;p&gt;//Create a new job.&lt;br /&gt;
Job job = c.createJob();&lt;/p&gt;
&lt;p&gt;//Set the job properties.  This can be any jparm property specified &lt;br /&gt;
//in the hfaxd manual page.  If there is not a native function for&lt;br /&gt;
//the property you are trying to set, use the setProperty function &lt;br /&gt;
//to set it. &lt;br /&gt;
job.setFromUser("hagen Köckritz");&lt;br /&gt;
job.setNotifyAddress("hagen.koeckritz@revolutive-systems.com");&lt;br /&gt;
//              job.setKilltime("");&lt;br /&gt;
job.setMaximumDials(5);&lt;br /&gt;
job.setMaximumTries(5);&lt;br /&gt;
job.setPriority(job.PRIORITY_NORMAL);&lt;br /&gt;
job.setDialstring("0094027882169");&lt;br /&gt;
job.setVerticalResolution(job.RESOLUTION_MEDIUM);&lt;br /&gt;
//              job.setPageDimension(job.p);&lt;br /&gt;
job.setNotifyType(job.NOTIFY_ALL);&lt;br /&gt;
//              job.setChopThreshold(job.CHOP_DEFAULT);&lt;/p&gt;
&lt;p&gt;//Add any documents to send.  As long as the HylaFAX server is setup&lt;br /&gt;
//properly you should be able to send PS, PDF, and TIFF documents.&lt;br /&gt;
//The HylaFAX server always converts them to PS before sending them.&lt;br /&gt;
Vector&amp;lt;String&amp;gt; documents = new Vector&amp;lt;String&amp;gt;();&lt;br /&gt;
documents.add("c:\\neu\\test.jpg");&lt;/p&gt;
&lt;p&gt;File f = new File("c:\\neu\\test.jpg");&lt;br /&gt;
System.out.println(f.exists());&lt;/p&gt;
&lt;p&gt;for (int i = 0; i &amp;lt; documents.size(); i++) {&lt;br /&gt;
String document = (String) documents.elementAt(i);&lt;br /&gt;
job.addDocument(document);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;//Submit the job to the scheduler.&lt;br /&gt;
c.submit(job);&lt;/p&gt;
&lt;p&gt;} catch (Exception e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
} finally {&lt;br /&gt;
//Close the client.&lt;br /&gt;
try {&lt;br /&gt;
c.quit();&lt;br /&gt;
} catch (Exception e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;whats wrong? Can anyone help me?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hagen Köckritz</dc:creator><pubDate>Tue, 13 Nov 2012 14:07:02 -0000</pubDate><guid>https://sourceforge.neta3e1c72c26f958e463269a68002be6bbe3bfc451</guid></item><item><title>ReceiveListener: how to</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I want to catch the receive event when i receive a fax on my server. How can i use Receive Lsitener???? Where the listener have to be registrated?? i didn't found any example of application like this..&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">matte88</dc:creator><pubDate>Tue, 23 Aug 2011 08:12:15 -0000</pubDate><guid>https://sourceforge.net8eac07ebd77ab6d1ac52ca668f983cbd3c61dc3d</guid></item><item><title>Noticeable slowdown when HylaFAX is receiving faxes</title><link>https://sourceforge.net/p/gnu-hylafax/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have noticed that the client library takes longer to query hylafax when it is in the process of receiving faxes. Any commands such as getList, etc take much longer to respond. This is particularly annoying for my UI application. Do you have any idea what causes this?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 15 Mar 2011 14:46:58 -0000</pubDate><guid>https://sourceforge.neteae24e41de1883689492873eb62ab39e8939d4fc</guid></item></channel></rss>