Re: MS Word document from Web Objects app

2006-08-11 Thread Watkins, Garry
Just embed the RTF for the word file in the HTML.  Put WO tags in their
where you need to insert wo stuff.  Manually edit .wod and put appropriate
bindings, and then Overide appendToResponse method and add the following:
response.setHeader("application/msword", "Content-Type");

Then super.appendToResponse(..);

HTH



On 8/11/06 1:15 PM, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:

> Re: MS Word document from Web Objects app

-- 
Garry Watkins

Database Administrator
Motley Rice LLC
843-216-9639






Confidential & Privileged

Unless otherwise indicated or obvious from its nature, the information 
contained in this communication is attorney-client privileged and confidential 
information/work product. This communication is intended for the use of the 
individual or entity named above.  If the reader of this communication is not 
the intended recipient, you are hereby notified that any dissemination, 
distribution or copying of this communication is strictly prohibited.  If you 
have received this communication in error or are not sure whether it is 
privileged, please immediately notify us by return e-mail and destroy any 
copies--electronic, paper or otherwise--which you may have of this 
communication.



 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread Gary Teter
See also http://www.lowagie.com/iText/ if you can get by with rtf.  
(It's primarily a pdf-generating library, but can also write rtf files.)



On Aug 11, 2006, at 8:22 AM, Jean-François Veillette wrote:

Depending on what you really need, JooReport ( http:// 
jooreports.sourceforge.net ) might be enough.


- jfv

Le 06-08-11, à 11:04, Pascal Robert a écrit :



On 06-08-11, at 08:00, Inessa Weiner wrote:


Hello,

Our client would like an ability to generate a letter - MS Word  
document from Web Objects application.
Can someone who has done a similar thing point me in the right  
direction?


You can use OpenOffice for it.  We use it in a WO application for  
doing mail merge.  I should write an article on this.




--
WireHose: Smart metadata and personalization for WebObjects.
http://www.wirehose.com/

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread Christoph Wick

On 11.08.2006, at 17:00, Inessa Weiner wrote:

Our client would like an ability to generate a letter - MS Word  
document from Web Objects application.
Can someone who has done a similar thing point me in the right  
direction?


Have you checked Aspose.Words (http://www.aspose.com/Products/ 
Aspose.Words/Default.aspx)


I haven't used this, but the one for PowerPoints and works quite  
well. And you have to pay for a licences ... ;-)


C.U.CW
--
Better necessarily means different. (Jonathan 'Wolf' Rentzsch)


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread Jean-François Veillette
Depending on what you really need, JooReport ( 
http://jooreports.sourceforge.net ) might be enough.


- jfv

Le 06-08-11, à 11:04, Pascal Robert a écrit :



On 06-08-11, at 08:00, Inessa Weiner wrote:


Hello,

Our client would like an ability to generate a letter - MS Word 
document from Web Objects application.
Can someone who has done a similar thing point me in the right 
direction?


You can use OpenOffice for it.  We use it in a WO application for 
doing mail merge.  I should write an article on this.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread Zak Burke
Inessa Weiner wrote on 8/11/06 11:00 AM:
> Hello,
> 
> Our client would like an ability to generate a letter - MS Word document
> from Web Objects application.
> Can someone who has done a similar thing point me in the right direction?

http://jakarta.apache.org/poi/index.html

"The POI project consists of APIs for manipulating various file formats
based upon Microsoft's OLE 2 Compound Document format using pure Java
... POI is your Java Excel solution as well as your Java Word solution."

zak.
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread John Larson

Inessa,

The first step is being able to programmatically create the  
document.  Then you have to serve it (which is the easy part).  Can  
you create the document using the Word API?


John

On Aug 11, 2006, at 10:00 AM, Inessa Weiner wrote:


Hello,

Our client would like an ability to generate a letter - MS Word  
document from Web Objects application.
Can someone who has done a similar thing point me in the right  
direction?


Thanks,
Inessa.


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/the_larsons% 
40mac.com


This email sent to [EMAIL PROTECTED]


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: MS Word document from Web Objects app

2006-08-11 Thread Pascal Robert


On 06-08-11, at 08:00, Inessa Weiner wrote:


Hello,

Our client would like an ability to generate a letter - MS Word  
document from Web Objects application.
Can someone who has done a similar thing point me in the right  
direction?


You can use OpenOffice for it.  We use it in a WO application for  
doing mail merge.  I should write an article on this.

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


MS Word document from Web Objects app

2006-08-11 Thread Inessa Weiner

Hello,

Our client would like an ability to generate a letter - MS Word document 
from Web Objects application.

Can someone who has done a similar thing point me in the right direction?

Thanks,
Inessa.


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com