Showing posts with label PDF. Show all posts
Showing posts with label PDF. Show all posts

Friday, October 30, 2009

How to Use the Email Feature in UniPrint?

UniPrint's Server has a nice feature: in addition to being able to print, the user can also email the printout directly to a recipient. In order to use this feature, certain settings have to be set up in the UniPrint Management Console.

Start UniPrint Management Console on the UniPrint Server. Click Driver Properties under Performance & Maintenance. Click the Optional Features tab. The top panel is the Email setup.

Email Setup 1

 

Check the Enable email checkbox, fill in the correct email server name (or its IP address). Leave the port to the default value of 25, unless you know your email server uses a different port.

Assuming your email server allows unauthenticated connections, leave the Server requires authentication checkbox unchecked. Fill in the Global sender email address. A weird description that simply means the name that will be displayed on the TO: in the email header when you receive an email.

If your server requires authentication, read our bug report. For now, just click save.

Now log on to the UniPrint Server via a remote session (Microsoft’s Terminal Services RDP connection, or Citrix’s ICA connection. Open up a document (or type something in Notepad), and click print. When the printer dialog shows up, select the Uniprint printer (if you have more than one printer installed), and click the preferences button. The Uniprint driver dialog box shows up.

Email setup 2

 

Click the Email tab. Fill in all the fields, or at least the TO: field, and click OK to close the UniPrint Driver dialog box. Next click Print on the Printer dialog box. Voila! In a few moments, you (or mail recipient you specified in the TO: field) should get an email with the printout as a PDF attachment.



Click here to see a complete list of articles


To contact us: uniprint.user@gmail.com.

 


Friday, September 25, 2009

How to Test FTP Printers?

We talked about what FTP printers are. But how do you know that a printer is an FTP printer? Or a better question, how do you know that an FTP printer is actually working?

Essentially, the question is: How to test FTP printers? The following steps show you how:

Let’s assume:

  1. we have a Lexmark printer model T630, which is supposed to be an FTP printer;
  2. we are running Windows (any newer version of Windows) on our PC, and
  3. the Lexmark T630 printer is connected to our Windows PC not via a direct cable, but via a network path.

Let’s further assume that the machine name for this Lexmark T630 is LEX630, and its ip address is 192.168.1.10. We need either piece of information to print to it.

  1. Open a command Windows. (To do this: Click Start button -> Run, and type in cmd in the open box, and click OK.)
  2. Next, we need to reassure ourselves that our PC can actually “talk” to the printer. We use the ping command.

    In the command window, type
      ping LEX630

    If it comes back to say something like
      Ping request could not find host LEX630
    it means that perhaps our name server is not set up properly, but let’s not worry about it now.

    Instead, we turn to the printer’s ip address, which we try to ping:
      ping 192.168.1.10

    If it comes back with:
      Pinging 192.168.1.10 with 32 bytes of data:
      Reply from 192.168.1.10: bytes=32 time<1ms TTL=254
    that means success; our PC and “talk” to the printer directly. But if it comes back with:
      Pinging 192.168.1.10 with 32 bytes of data:
      Request timed out.
      Request timed out.
    that means problems, usually hardware and/or network problems. Troubleshooting it is beyond the scope of this article. We just assume that we are successful in establishing connection between our PC and the printer, and we move on with our experiment.

  3. Next, let’s further assume that we have a valid pdf file called test.pdf in our temp folder. Still inside the command window, type:
      cd %temp%

    The %temp% is a variable that represents the actual path to our temp folder. Windows will translate the variable %temp% and set our default folder to our temp folder. And we can do the test to make sure that test.pdf is actually here. Type:
      dir test.pdf

  4. Now it’s the exciting part: We are actually going to ftp into the printer. Still in the same command window, type:   >ftp 192.168.1.10

    It comes back with:
      Connected to 192.168.1.10
      220 Lexmark T630 FTP Server 55.0.39 ready.
      User:

    Please note that the exact wording may vary on different implementations of the FTP server by different vendors.

  5. Here it’s asking for a user account. FTP printers should have an anonymous account, so type “anonymous”. This account usually does not require a password. We should see something like this:
      230 User anonymous logged in.

    Some implementations do require a password, a common password to use is “guest”. If not, the password is usually given in the response after we typed in “anonymous” like:
      Use welcome as password.

    If we see the prompt becomes
      ftp>
    that means we have successfully logged in to the FTP server (or the printer in our case).

  6. Here comes the meat: we are to transfer test.pdf file directly to the printer. In the ftp prompt, type:
      ftp> put test.pdf

    We should see responses like:
      200 PORT command successful.
      150 Opening ASCII data connection.
      226 Transfer complete. 9375 bytes sent.

    The printer then prints out our pdf file.

  7. To exit the ftp program, type “bye” at the ftp prompt.

And this concludes our little experiment on testing FTP printers.



Click here to see a complete list of articles


To contact us: uniprint.user@gmail.com.

 


Friday, September 18, 2009

What are FTP Printers?

What is FTP?

FTP stands for File Transfer Protocol, which is one of the standard protocols used on the internet. FTP is specifically for transferring files from one machine to another over the internet originally, now via any network.

Some printer vendors (like HP and Lexmark) manufacture FTP printers. These printers have a little built-in FTP engine that accepts PDF (Portable Document Format) file as print jobs and prints them.

The printers will also have a built-in pdf engine to render print jobs to actual physical paper output. Thus individual computers do not need to have the printer driver for that particular model installed in order to print properly.

Based on a similar principle, UniPrint’s universal printer driver basically converts (through some third-party PDF engine) the output of a document’s printing function to a pdf file and sends it to the printer for rendering. The 3rd-party pdf engine UniPrint driver uses is Amyuni (for all versions of Uniprint's core products) and Foxit (for the newer versions of UniPrint's core products).

How do you know that a printer is an FTP printer? Or a better question, how do you know that an FTP printer is actually working?

Essentially, the question is: How to test FTP printers? Read on.



Click here to see a complete list of articles


To contact us: uniprint.user@gmail.com.