Re: Antwort: Multiple pdf with one match?

2003-03-24 Thread webmaster
hi Matthias,

that is good way!

Thank you for the tip!

My problem is a little bit different because actually I want to send 
this e.g. 4 files to a printer! That I could not to wirth a zip, or could I?

King regards
Thorsten
Stoeckel, Matthias wrote:

Hi Thorsten,

another solution would be the ZipArchiveSerializer.  If your users have an
zip client you could put all your pdf's into one zip file. This would avoid
a javascript hack. One problem with opening windows (assuming that you use
IE on Windows) is that you can have a maximum of 4 requests per browser. So
you will get serious trouble with timeouts as soon as you have to send more
than 4 pdfs.
Cheers
 Matthias
 

-Ursprüngliche Nachricht-
Von: Scherler, Thorsten [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 21. März 2003 14:31
An: Cocoon-Users (E-Mail)
Betreff: Multiple pdf with one match?
Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date 
there should be called 3 different piplines resulting 3 
DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each 
is for one resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.

Any ideas or links or hints?

King regards
Thorsten
   

Mit freundlichem Gruss,

Thorsten Scherler
Marketing / Telefonmarketing
Weidmüller GmbH & Co.
P.O. Box 2807
33058 Paderborn
Tel.:+ 49 - 5252-960-350
Fax:+ 49 - 5252-960-116
eMail: [EMAIL PROTECTED]
http://www.weidmueller.de
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Antwort: Multiple pdf with one match?

2003-03-24 Thread Scherler
hi Matthias,

that is a good way!

Thank you for the tip!

My problem is a little bit different because actually I want to send 
this e.g. 4 files to a printer! That I could not to wirth a zip, or 
could I?

King regards
Thorsten
Stoeckel, Matthias wrote:

Hi Thorsten,

another solution would be the ZipArchiveSerializer.  If your users have an
zip client you could put all your pdf's into one zip file. This would avoid
a javascript hack. One problem with opening windows (assuming that you use
IE on Windows) is that you can have a maximum of 4 requests per browser. So
you will get serious trouble with timeouts as soon as you have to send more
than 4 pdfs.
Cheers
 Matthias
 

-Ursprüngliche Nachricht-
Von: Scherler, Thorsten [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 21. März 2003 14:31
An: Cocoon-Users (E-Mail)
Betreff: Multiple pdf with one match?
Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date 
there should be called 3 different piplines resulting 3 
DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each 
is for one resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.

Any ideas or links or hints?

King regards
Thorsten
   

Mit freundlichem Gruss,

Thorsten Scherler
Marketing / Telefonmarketing
Weidmüller GmbH & Co.
P.O. Box 2807
33058 Paderborn
Tel.:+ 49 - 5252-960-350
Fax:+ 49 - 5252-960-116
eMail: [EMAIL PROTECTED]
http://www.weidmueller.de
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Antwort: Multiple pdf with one match?

2003-03-23 Thread Stoeckel, Matthias
Hi Thorsten,

another solution would be the ZipArchiveSerializer.  If your users have an
zip client you could put all your pdf's into one zip file. This would avoid
a javascript hack. One problem with opening windows (assuming that you use
IE on Windows) is that you can have a maximum of 4 requests per browser. So
you will get serious trouble with timeouts as soon as you have to send more
than 4 pdfs.

Cheers
  Matthias

> -Ursprüngliche Nachricht-
> Von: Scherler, Thorsten [mailto:[EMAIL PROTECTED]
> Gesendet: Freitag, 21. März 2003 14:31
> An: Cocoon-Users (E-Mail)
> Betreff: Multiple pdf with one match?
> 
> 
> Hello group,
> 
> I want to do the following:
> I have on html-Form where I put the date. With this date 
> there should be called 3 different piplines resulting 3 
> DIFFERENT pdf files.
> 
> Some thoughts:
> I thought about open 3 different browser windows where each 
> is for one resulting pdf.
> I can do that with JavaScript but would prefer to do it server sided.
> 
> Any ideas or links or hints?
> 
> King regards
> Thorsten
> 
> > Mit freundlichem Gruss,
> > 
> > Thorsten Scherler
> > Marketing / Telefonmarketing
> > 
> > Weidmüller GmbH & Co.
> > P.O. Box 2807
> > 33058 Paderborn
> > Tel.:+ 49 - 5252-960-350
> > Fax:+ 49 - 5252-960-116
> > eMail: [EMAIL PROTECTED]
> > http://www.weidmueller.de
> > 
> > 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



SOLVED: Re: AW: Antwort: Multiple pdf with one match?

2003-03-21 Thread Eric di Domenico
Here is how to write a pdf(more or less because I am attempting to 
print but this should work for writing a PDF)

Sitemap:







test.xml:

http://apache.org/cocoon/source/1.0";>

http://www.w3.org/1999/XSL/Format"; 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
	
		
			
		
	
	
	
		
			Hello I am the printer
		
	




This means it's possible to create files and save them on the server 
before returning from the pipeline and as soon as I get my 
PrintSource working then printing will also be possible without having 
any ugly Javascript hack

Ciao

Eric

On Vendredi, mars 21, 2003, at 09:58 America/Montreal, Eric di Domenico 
wrote:

I disagree,

I bet you can do this with a FileSource and the pdf serializer 
don't exactly know how yet... but I am working on something right now 
to be able to print from the server.

I will post something on the subject if I get it to work later today

Ciao

Eric

On Vendredi, mars 21, 2003, at 09:04 America/Montreal, Scherler, 
Thorsten wrote:

Thanks Manfred.

One Request - One Response! You are so right!

So really no work around! -> Ok, back to JavaScript!

Thanks again
Thorsten
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 21. März 2003 14:59
An: [EMAIL PROTECTED]
Betreff: Antwort: Multiple pdf with one match?


Hi Thorsten!

There is one big Problem: ONE request ends up in ONE response, there 
is no
way around! (http standard)

But...

if you submit your form to a pipeline which produces a frameset 
splitted up
in three areas, every area could call the real pipeline for producing 
PDF

Your idea doing it by JavaScript with three new windows is also 
pssible!

regards
manfred


[EMAIL PROTECTED] am 21.03.2003 14:30:51

Bitte antworten an [EMAIL PROTECTED]@inet

An:  [EMAIL PROTECTED]
Kopie:
Thema:   Multiple pdf with one match?
Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date there should 
be
called 3 different piplines resulting 3 DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each is for one
resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.
Any ideas or links or hints?

King regards
Thorsten
Mit freundlichem Gruss,

Thorsten Scherler
Marketing / Telefonmarketing
Weidmüller GmbH & Co.
P.O. Box 2807
33058 Paderborn
Tel.:+ 49 - 5252-960-350
Fax:+ 49 - 5252-960-116
eMail: [EMAIL PROTECTED]
http://www.weidmueller.de

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: AW: Antwort: Multiple pdf with one match?

2003-03-21 Thread Eric di Domenico
I disagree,

I bet you can do this with a FileSource and the pdf serializer 
don't exactly know how yet... but I am working on something right now 
to be able to print from the server.

I will post something on the subject if I get it to work later today

Ciao

Eric

On Vendredi, mars 21, 2003, at 09:04 America/Montreal, Scherler, 
Thorsten wrote:

Thanks Manfred.

One Request - One Response! You are so right!

So really no work around! -> Ok, back to JavaScript!

Thanks again
Thorsten
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 21. März 2003 14:59
An: [EMAIL PROTECTED]
Betreff: Antwort: Multiple pdf with one match?


Hi Thorsten!

There is one big Problem: ONE request ends up in ONE response, there 
is no
way around! (http standard)

But...

if you submit your form to a pipeline which produces a frameset 
splitted up
in three areas, every area could call the real pipeline for producing 
PDF

Your idea doing it by JavaScript with three new windows is also 
pssible!

regards
manfred


[EMAIL PROTECTED] am 21.03.2003 14:30:51

Bitte antworten an [EMAIL PROTECTED]@inet

An:  [EMAIL PROTECTED]
Kopie:
Thema:   Multiple pdf with one match?
Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date there should 
be
called 3 different piplines resulting 3 DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each is for one
resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.
Any ideas or links or hints?

King regards
Thorsten
Mit freundlichem Gruss,

Thorsten Scherler
Marketing / Telefonmarketing
Weidmüller GmbH & Co.
P.O. Box 2807
33058 Paderborn
Tel.:+ 49 - 5252-960-350
Fax:+ 49 - 5252-960-116
eMail: [EMAIL PROTECTED]
http://www.weidmueller.de

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


AW: Antwort: Multiple pdf with one match?

2003-03-21 Thread Scherler, Thorsten
Thanks Manfred.

One Request - One Response! You are so right!

So really no work around! -> Ok, back to JavaScript!

Thanks again
Thorsten

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 21. März 2003 14:59
An: [EMAIL PROTECTED]
Betreff: Antwort: Multiple pdf with one match?




Hi Thorsten!

There is one big Problem: ONE request ends up in ONE response, there is no
way around! (http standard)

But...

if you submit your form to a pipeline which produces a frameset splitted up
in three areas, every area could call the real pipeline for producing PDF

Your idea doing it by JavaScript with three new windows is also pssible!

regards
manfred




[EMAIL PROTECTED] am 21.03.2003 14:30:51

Bitte antworten an [EMAIL PROTECTED]@inet

An:  [EMAIL PROTECTED]
Kopie:
Thema:   Multiple pdf with one match?


Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date there should be
called 3 different piplines resulting 3 DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each is for one
resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.

Any ideas or links or hints?

King regards
Thorsten

> Mit freundlichem Gruss,
>
> Thorsten Scherler
> Marketing / Telefonmarketing
>
> Weidmüller GmbH & Co.
> P.O. Box 2807
> 33058 Paderborn
> Tel.:+ 49 - 5252-960-350
> Fax:+ 49 - 5252-960-116
> eMail: [EMAIL PROTECTED]
> http://www.weidmueller.de
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]









-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Antwort: Multiple pdf with one match?

2003-03-21 Thread manfred . weigel


Hi Thorsten!

There is one big Problem: ONE request ends up in ONE response, there is no
way around! (http standard)

But...

if you submit your form to a pipeline which produces a frameset splitted up
in three areas, every area could call the real pipeline for producing PDF

Your idea doing it by JavaScript with three new windows is also pssible!

regards
manfred




[EMAIL PROTECTED] am 21.03.2003 14:30:51

Bitte antworten an [EMAIL PROTECTED]@inet

An:  [EMAIL PROTECTED]
Kopie:
Thema:   Multiple pdf with one match?


Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date there should be
called 3 different piplines resulting 3 DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each is for one
resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.

Any ideas or links or hints?

King regards
Thorsten

> Mit freundlichem Gruss,
>
> Thorsten Scherler
> Marketing / Telefonmarketing
>
> Weidmüller GmbH & Co.
> P.O. Box 2807
> 33058 Paderborn
> Tel.:+ 49 - 5252-960-350
> Fax:+ 49 - 5252-960-116
> eMail: [EMAIL PROTECTED]
> http://www.weidmueller.de
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]









-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Multiple pdf with one match?

2003-03-21 Thread Scherler, Thorsten
Hello group,

I want to do the following:
I have on html-Form where I put the date. With this date there should be called 3 
different piplines resulting 3 DIFFERENT pdf files.

Some thoughts:
I thought about open 3 different browser windows where each is for one resulting pdf.
I can do that with JavaScript but would prefer to do it server sided.

Any ideas or links or hints?

King regards
Thorsten

> Mit freundlichem Gruss,
> 
> Thorsten Scherler
> Marketing / Telefonmarketing
> 
> Weidmüller GmbH & Co.
> P.O. Box 2807
> 33058 Paderborn
> Tel.:+ 49 - 5252-960-350
> Fax:+ 49 - 5252-960-116
> eMail: [EMAIL PROTECTED]
> http://www.weidmueller.de
> 
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]