Re: [appengine-java] Re: pdf creation problem

2011-08-06 Thread siva vs
thanks again for your response gk.. I search that code for the OutputStream implementation method , but i couldn't find better result for my problem i couldn't fix yet , if you suggest any refer link that related that resources On Thu, Aug 4, 2011 at 6:40 PM, gk goran.kar...@googlemail.com wrote:

[appengine-java] Re: pdf creation problem

2011-08-04 Thread vss
Thanks gk.. But now am using pdfjet jar, java sdk 1.5.0 now i hav the exception of Fileoutputstream cannot supported in gae, is there any right way to rectify that.. how can i use Fileoutputstream , thanks in advance On Aug 2, 3:22 am, gk goran.kar...@googlemail.com wrote: See

[appengine-java] Re: pdf creation problem

2011-08-04 Thread gk
FileOutputStream outputs a file - but GAE has a read-only file system. Use another OutputStream implementation or output the stream to the client using HttpServletRespone.getOutputStream() Also read http://groups.google.com/group/google-appengine-java/browse_thread/thread/a06dd822a6cee160 On

[appengine-java] Re: pdf creation problem

2011-08-01 Thread gk
See http://code.google.com/p/googleappengine/wiki/WillItPlayInJava iText is listed therein as not supported - as are many packages that rely on the AWT framework / Graphics 2D. Google App Engine is here like most other headless environments. On Aug 1, 11:09 am, vss technify.s...@gmail.com

[appengine-java] Re: pdf

2010-11-18 Thread Robert Lancer
Try this http://docs.google.com/viewer On Nov 18, 7:23 am, thangavel s thangaveln...@gmail.com wrote: hi,   how to use OCR in pdf and way to convert pdf to image conversion.any viewer for pdf show in browser for rotate. -- You received this message because you are subscribed to the Google

Re: [appengine-java] Re: pdf

2010-11-18 Thread Max
Hi, If anyone has been successful at using this with GAE, please let me know and as this would be great for my application. The application I have is an email and attachment parsing / routing application that organizes all of the documents. It currently relies on Apache POI, PDFBox (an

[appengine-java] Re: PDF Files

2010-07-20 Thread Thomas
Hi: You can't let GAE/J Blobstore API serve the blob for you. You have to read the blob content and serve by yourself. This approach reduces to normal/regular pdf file download which is trivial. On 7月19日, 下午10時36分, chrischelmi michelvo...@gmail.com wrote: You are right conor, i set the

[appengine-java] Re: PDF Files

2010-07-19 Thread chrischelmi
yes exatky On Jul 18, 1:12 pm, Khor Yong Hao fyh...@gmail.com wrote: Your Problem is not using iText to generate PDF content and download it, but is able to allow user upload their own PDF and providing download, right? On Thu, Jul 15, 2010 at 3:25 PM, dovm dovm...@gmail.com wrote: Hi,

[appengine-java] Re: PDF Files

2010-07-19 Thread chrischelmi
You are right conor, i set the content to application/pdf and i cand display it. but my problem is that in some browsers and OS(Mac) ,the pdf is not displyed, the download starts automatically with a default name, i want to have control on the name given to the file before it is downloaded On

Re: [appengine-java] Re: PDF Files

2010-07-18 Thread Khor Yong Hao
Your Problem is not using iText to generate PDF content and download it, but is able to allow user upload their own PDF and providing download, right? On Thu, Jul 15, 2010 at 3:25 PM, dovm dovm...@gmail.com wrote: Hi, Check this one http://www.pdfjet.com/java/index.html They claim to

Re: [appengine-java] Re: PDF Files

2010-07-18 Thread Conor Power
it doesn't sound like you need to generate the PDF using a library if it's stored as a blob ... can't you just set the content type to be application/pdf and stream the blog contents? your servlet just needs the key or some mapping to look up the blob. otherwise, i wrote a summary of my

[appengine-java] Re: PDF Files

2010-07-16 Thread l.denardo
The patch seems to be incompatible with IText license, as you can read in comments at http://sourceforge.net/tracker/?func=detailaid=2810312group_id=15255atid=365255 PDFJet has both a free limited version and a paid one, which adds functions like tables formatting and pagination. I used the free

[appengine-java] Re: PDF Files

2010-07-15 Thread dovm
Hi, Check this one http://www.pdfjet.com/java/index.html They claim to support Google App Engine =Dov On Jul 15, 7:57 am, Daniel vedm...@gmail.com wrote: But it says that on Will it play in App Engine That its incompatible: iText Version(s): ? Status: INCOMPATIBLE     * iText relies

[appengine-java] Re: PDF Files

2010-07-15 Thread Shyam Visamsetty
Yes, it says that iText does not work on AppEngine. But, it works for me. I was able to generate a pdf using that on AppEngine. PDFjet is good.. but i think it is not free. Thanks, Shyam. On Jul 15, 12:25 am, dovm dovm...@gmail.com wrote: Hi, Check this

[appengine-java] Re: PDF Files

2010-07-15 Thread Shyam Visamsetty
See this link for more details. http://blog.rubypdf.com/2009/12/17/how-to-run-itext-on-google-app-engine/ May be we should update the Will it play on App Engine page. Thanks, Shyam Visamsetty On Jul 15, 12:25 am, dovm dovm...@gmail.com wrote: Hi, Check this

[appengine-java] Re: PDF Files

2010-07-14 Thread Shyam Visamsetty
Chris, Did you want to generate a PDF File on the GAE? If yes, you can use the iText library for generating the pdfs on the app engine. You can have a servlet to download the PDF file you generated. Thanks, Shyam Visamsetty On Jul 14, 1:36 pm, chrischelmi michelvo...@gmail.com wrote: Helle

[appengine-java] Re: PDF Files

2010-07-14 Thread Daniel
But it says that on Will it play in App Engine That its incompatible: iText Version(s): ? Status: INCOMPATIBLE * iText relies on several classes not in the JRE class whitelist including java.awt.Color and java.nio.MappedByteBuffer. A bug has been filed at

[appengine-java] Re: PDF Generator Library

2009-11-04 Thread Jason (Google)
Great news, Eugene! Can you please submit it to the open source projects page by following the instructions at the bottom of http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects ? - Jason On Sun, Nov 1, 2009 at 8:55 PM, edragoev drag...@gmail.com wrote:

[appengine-java] Re: PDF Generator Library

2009-11-02 Thread edragoev
Hello Jason, I took Francois tweaks and also added support for PNG files that doesn't depend on the AWT classes. We have new GAE compatible Open Source version now: http://pdfjet.com/os/download.html Best Regards, Eugene P.S. The PNG decoder I wrote currently supports Truecolor PNG files

[appengine-java] Re: PDF Generator Library

2009-09-24 Thread Mian Rashid
Use can use Jasper Report and there is also designer tool available for that is IReport. On Sep 23, 6:57 pm, mably fm2...@mably.com wrote: Does anybody know of a java PDF generator library working with Google App Engine ?  Even a low-level one. Any help would be greatly appreciated. Thanx