changing cfreport format with direct link

2009-12-18 Thread Anthony Doherty

Hi I have designed a number of reports for a user and they are exported into 
PDF format.  I used the report builder to design the reports and also set the 
output to PDF there, but now the user wants to be able to choose between PDF or 
EXCEL so instead of me duplicating every report (about 50) is there a way I can 
pass a URL parameter that will change the output of the cfr file.

I am browsing directly to the report and passing other parameters that the 
report uses to query the DB. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329243
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Server Performance

2009-12-18 Thread Tom Chiverton

On Friday 18 Dec 2009, webmas...@pegweb.com wrote:
 Is there a way through command line or a 3rd party application to see
 what web sites on a CF Pro 8 server are causing the most requests? 

Your web server logs would seem the obvious bet...

-- 
Helping to enthusiastically aggregate unique total schemas as part of the IT 
team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329244
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server Performance

2009-12-18 Thread Mark Kruger

2 things for you.

First, check the DB for blocks and locks - about 9 times out of ten queuing
requests are due to DB requests that are hanging. For some reason we web
developers bang our head against CF over and over thinking there is
something we can do on the web server to solve problems that exist on the DB
server :)

Secondly,  If you are already running perfmon then you can get the
information on which site is busiest (or at least handling the most
requests).

Choose web service and then Current connections and all instances. Use
the report view (the little page icon next to the chart icon on the toolbar)
it is clearer.

Oh... current connections  is appropriate for Wind2003 and above. For
windows 2000 use current anonymous users. 


What you should see (using the report view) is a horizontal list of all your
sites. The _total will be the first item. On a busy server you may need to
scroll to the right to see them all. You can click on them and delete the
ones you know are not the problem. 

Even though seeFusion and fusionReactor are great tools, I set up saved
Perfomon mcc's for all my windows servers - in fact you can view the
counters remotely (if you have the right domain rules in place) and you can
see more than one server at a time in the same perfmon instance. Granted it
is less introspective than one of the Java tools  - but for a quick glimpse
of a server to answer the question - how busy is it - in real time, it's
handy and easy.

-Mark



Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, December 17, 2009 6:20 PM
To: cf-talk
Subject: Server Performance


Is there a way through command line or a 3rd party application to see what
web sites on a CF Pro 8 server are causing the most requests? On one
particular server it is starting to show behavior of page timeouts and
longer running requests. In the Performance Monitor in windows I see the
running requests will max out from time to time and then requests start to
queue. I want to be able to determine which sites are generating the most
requests so I can examine the traffic and the code on those sites for
potential problems. Anybody know of any way to do this?

 

 

 

 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329245
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server Performance

2009-12-18 Thread DURETTE, STEVEN J (ATTASIAIT)

CFMeetup just had a meeting on Homebrewed ColdFusion Monitoring by Wil
Genovese.

It was an awesome meetup and the recording can be viewed at:
http://www.meetup.com/coldfusionmeetup/pages/Recordings_of_the_ColdFusio
n_Meetup-2009/

Or at: http://experts.na3.acrobat.com/p34004904/

Also Wil has put the presentation files up at his blog. They are at:
http://www.trunkful.com/index.cfm/2009/12/10/Homebrewed-ColdFusion-Monit
or-Presentation-Files

Steve


-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com] 
Sent: Friday, December 18, 2009 8:46 AM
To: cf-talk
Subject: RE: Server Performance


2 things for you.

First, check the DB for blocks and locks - about 9 times out of ten
queuing
requests are due to DB requests that are hanging. For some reason we web
developers bang our head against CF over and over thinking there is
something we can do on the web server to solve problems that exist on
the DB
server :)

Secondly,  If you are already running perfmon then you can get the
information on which site is busiest (or at least handling the most
requests).

Choose web service and then Current connections and all instances.
Use
the report view (the little page icon next to the chart icon on the
toolbar)
it is clearer.

Oh... current connections  is appropriate for Wind2003 and above. For
windows 2000 use current anonymous users. 


What you should see (using the report view) is a horizontal list of all
your
sites. The _total will be the first item. On a busy server you may
need to
scroll to the right to see them all. You can click on them and delete
the
ones you know are not the problem. 

Even though seeFusion and fusionReactor are great tools, I set up saved
Perfomon mcc's for all my windows servers - in fact you can view the
counters remotely (if you have the right domain rules in place) and you
can
see more than one server at a time in the same perfmon instance. Granted
it
is less introspective than one of the Java tools  - but for a quick
glimpse
of a server to answer the question - how busy is it - in real time, it's
handy and easy.

-Mark



Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, December 17, 2009 6:20 PM
To: cf-talk
Subject: Server Performance


Is there a way through command line or a 3rd party application to see
what
web sites on a CF Pro 8 server are causing the most requests? On one
particular server it is starting to show behavior of page timeouts and
longer running requests. In the Performance Monitor in windows I see the
running requests will max out from time to time and then requests start
to
queue. I want to be able to determine which sites are generating the
most
requests so I can examine the traffic and the code on those sites for
potential problems. Anybody know of any way to do this?

 

 

 

 







~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329246
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


model glue xml file

2009-12-18 Thread Chad Gray

What keeps someone from loading up the model-glue XML file through their 
browser?

How should you protect it?


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329247
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: model glue xml file

2009-12-18 Thread Tom Chiverton

On Friday 18 Dec 2009, Chad Gray wrote:
 What keeps someone from loading up the model-glue XML file through their
 browser?

We've got global rules in our Apache config. that ban sending *.xml files, for 
instance.

-- 
Helping to collaboratively harness turn-key principle-centered eyeballs as 
part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329248
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: model glue xml file

2009-12-18 Thread Dominic Watson

I use IIS / Apache to deny permission. While you're at it, you should
probably deny remote access to /views, /model, /controller, etc.. Only allow
public access to resources that are meant for it (images, css, js and
index.cfm, etc).

HTH

Dominic

2009/12/18 Chad Gray cg...@careyweb.com


 What keeps someone from loading up the model-glue XML file through their
 browser?

 How should you protect it?


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329249
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: model glue xml file

2009-12-18 Thread Charlie Griefer

http://charlie.griefer.com/blog/index.cfm/2009/7/22/Securing-Your-XML-Config-Files:)

On Fri, Dec 18, 2009 at 8:24 AM, Chad Gray cg...@careyweb.com wrote:


 What keeps someone from loading up the model-glue XML file through their
 browser?

 How should you protect it?


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329250
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: model glue xml file

2009-12-18 Thread Dave Watts

 What keeps someone from loading up the model-glue XML file through their 
 browser?

Nothing by default, I suppose.

 How should you protect it?

In general, there are three ways to prevent people from viewing things
on your web server.

1. Don't place it in a web-accessible directory. Off the top of my
head, I don't know how easy it is to do this with MG config files, but
it's probably possible.

2. Use the web server's access controls to prevent it from serving
specific files or URL patterns.

3. Set permissions on the filesystem appropriately. The IIS or Apache
user accounts don't need to read these files.

I prefer (1) if at all possible, because it's the easiest to not screw
up, but any of those approaches will do.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329251
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Mach-II

2009-12-18 Thread Chad Gray

I am studying Model-Glue and MachII by reading the docs and presentations.

Where are the controllers in MachII?

Model-Glue has distinct controllers that tap into the models, I don't see where 
that happens in MachII.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329252
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server Performance

2009-12-18 Thread webmaster

Thanks Mark this actually helped quite a bit. I didn't realize that
option was available in perfmon.

Thanks,
Patrick J. Hedgepath
Pegasus Web Productions
webmas...@pegweb.com
803-996-0578





-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com] 
Sent: Friday, December 18, 2009 8:46 AM
To: cf-talk
Subject: RE: Server Performance


2 things for you.

First, check the DB for blocks and locks - about 9 times out of ten
queuing
requests are due to DB requests that are hanging. For some reason we web
developers bang our head against CF over and over thinking there is
something we can do on the web server to solve problems that exist on
the DB
server :)

Secondly,  If you are already running perfmon then you can get the
information on which site is busiest (or at least handling the most
requests).

Choose web service and then Current connections and all instances.
Use
the report view (the little page icon next to the chart icon on the
toolbar)
it is clearer.

Oh... current connections  is appropriate for Wind2003 and above. For
windows 2000 use current anonymous users. 


What you should see (using the report view) is a horizontal list of all
your
sites. The _total will be the first item. On a busy server you may
need to
scroll to the right to see them all. You can click on them and delete
the
ones you know are not the problem. 

Even though seeFusion and fusionReactor are great tools, I set up saved
Perfomon mcc's for all my windows servers - in fact you can view the
counters remotely (if you have the right domain rules in place) and you
can
see more than one server at a time in the same perfmon instance. Granted
it
is less introspective than one of the Java tools  - but for a quick
glimpse
of a server to answer the question - how busy is it - in real time, it's
handy and easy.

-Mark



Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, December 17, 2009 6:20 PM
To: cf-talk
Subject: Server Performance


Is there a way through command line or a 3rd party application to see
what
web sites on a CF Pro 8 server are causing the most requests? On one
particular server it is starting to show behavior of page timeouts and
longer running requests. In the Performance Monitor in windows I see the
running requests will max out from time to time and then requests start
to
queue. I want to be able to determine which sites are generating the
most
requests so I can examine the traffic and the code on those sites for
potential problems. Anybody know of any way to do this?


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329253
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server Performance

2009-12-18 Thread webmaster

Thanks. I will look over these.


-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] 
Sent: Friday, December 18, 2009 9:01 AM
To: cf-talk
Subject: RE: Server Performance


CFMeetup just had a meeting on Homebrewed ColdFusion Monitoring by Wil
Genovese.

It was an awesome meetup and the recording can be viewed at:
http://www.meetup.com/coldfusionmeetup/pages/Recordings_of_the_ColdFusio
n_Meetup-2009/

Or at: http://experts.na3.acrobat.com/p34004904/

Also Wil has put the presentation files up at his blog. They are at:
http://www.trunkful.com/index.cfm/2009/12/10/Homebrewed-ColdFusion-Monit
or-Presentation-Files

Steve


-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com] 
Sent: Friday, December 18, 2009 8:46 AM
To: cf-talk
Subject: RE: Server Performance


2 things for you.

First, check the DB for blocks and locks - about 9 times out of ten
queuing
requests are due to DB requests that are hanging. For some reason we web
developers bang our head against CF over and over thinking there is
something we can do on the web server to solve problems that exist on
the DB
server :)

Secondly,  If you are already running perfmon then you can get the
information on which site is busiest (or at least handling the most
requests).

Choose web service and then Current connections and all instances.
Use
the report view (the little page icon next to the chart icon on the
toolbar)
it is clearer.

Oh... current connections  is appropriate for Wind2003 and above. For
windows 2000 use current anonymous users. 


What you should see (using the report view) is a horizontal list of all
your
sites. The _total will be the first item. On a busy server you may
need to
scroll to the right to see them all. You can click on them and delete
the
ones you know are not the problem. 

Even though seeFusion and fusionReactor are great tools, I set up saved
Perfomon mcc's for all my windows servers - in fact you can view the
counters remotely (if you have the right domain rules in place) and you
can
see more than one server at a time in the same perfmon instance. Granted
it
is less introspective than one of the Java tools  - but for a quick
glimpse
of a server to answer the question - how busy is it - in real time, it's
handy and easy.

-Mark



Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, December 17, 2009 6:20 PM
To: cf-talk
Subject: Server Performance


Is there a way through command line or a 3rd party application to see
what
web sites on a CF Pro 8 server are causing the most requests? On one
particular server it is starting to show behavior of page timeouts and
longer running requests. In the Performance Monitor in windows I see the
running requests will max out from time to time and then requests start
to
queue. I want to be able to determine which sites are generating the
most
requests so I can examine the traffic and the code on those sites for
potential problems. Anybody know of any way to do this?

 

 

 

 









~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329254
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Export to Excel Asian locale

2009-12-18 Thread Victor Moore

Hi,

Is it possible to export a form containing Chinese, Korean  words to excel?
I can't figure out how to do it. All the double byte  characters show
as squares (or funny characters if I remove
?xml version=1.0 encoding=UTF-8?
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
xhtml1/xhtml1-transitional.dtd
html xmlns=http://www.w3.org/1999/xhtml; )

This is what I have:
cfheader name=Content-Type charset=utf-8 
value=application/vnd.ms-excel
cfheader name=Content-Disposition charset=utf-8 value=inline;
filename=inv.xls

Any ideas?

Thanks
Victor

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329255
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Server Performance

2009-12-18 Thread Mark Kruger

No prob. 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Friday, December 18, 2009 11:22 AM
To: cf-talk
Subject: RE: Server Performance


Thanks Mark this actually helped quite a bit. I didn't realize that option
was available in perfmon.

Thanks,
Patrick J. Hedgepath
Pegasus Web Productions
webmas...@pegweb.com
803-996-0578





-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com]
Sent: Friday, December 18, 2009 8:46 AM
To: cf-talk
Subject: RE: Server Performance


2 things for you.

First, check the DB for blocks and locks - about 9 times out of ten
queuing
requests are due to DB requests that are hanging. For some reason we web
developers bang our head against CF over and over thinking there is
something we can do on the web server to solve problems that exist on
the DB
server :)

Secondly,  If you are already running perfmon then you can get the
information on which site is busiest (or at least handling the most
requests).

Choose web service and then Current connections and all instances.
Use
the report view (the little page icon next to the chart icon on the
toolbar)
it is clearer.

Oh... current connections  is appropriate for Wind2003 and above. For
windows 2000 use current anonymous users. 


What you should see (using the report view) is a horizontal list of all
your
sites. The _total will be the first item. On a busy server you may
need to
scroll to the right to see them all. You can click on them and delete
the
ones you know are not the problem. 

Even though seeFusion and fusionReactor are great tools, I set up saved
Perfomon mcc's for all my windows servers - in fact you can view the
counters remotely (if you have the right domain rules in place) and you
can
see more than one server at a time in the same perfmon instance. Granted
it
is less introspective than one of the Java tools  - but for a quick
glimpse
of a server to answer the question - how busy is it - in real time, it's
handy and easy.

-Mark



Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] 
Sent: Thursday, December 17, 2009 6:20 PM
To: cf-talk
Subject: Server Performance


Is there a way through command line or a 3rd party application to see
what
web sites on a CF Pro 8 server are causing the most requests? On one
particular server it is starting to show behavior of page timeouts and
longer running requests. In the Performance Monitor in windows I see the
running requests will max out from time to time and then requests start
to
queue. I want to be able to determine which sites are generating the
most
requests so I can examine the traffic and the code on those sites for
potential problems. Anybody know of any way to do this?




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329256
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Export to Excel Asian locale

2009-12-18 Thread Chad Gray

Does your OS that opens the excel file have the support for double byte 
characters?

In windows I think it is under regions and languages.  You should google 
support for double byte characters on your OS.

I found this real quick:
http://mandarin.about.com/od/characters/ss/display_chars.htm


 -Original Message-
 From: Victor Moore [mailto:victor.mo...@gmail.com]
 Sent: Friday, December 18, 2009 1:15 PM
 To: cf-talk
 Subject: Export to Excel Asian locale
 
 
 Hi,
 
 Is it possible to export a form containing Chinese, Korean  words to
 excel?
 I can't figure out how to do it. All the double byte  characters show
 as squares (or funny characters if I remove
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
 xhtml1/xhtml1-transitional.dtd
 html xmlns=http://www.w3.org/1999/xhtml; )
 
 This is what I have:
   cfheader name=Content-Type charset=utf-8
 value=application/vnd.ms-excel
   cfheader name=Content-Disposition charset=utf-8 value=inline;
 filename=inv.xls
 
 Any ideas?
 
 Thanks
 Victor
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329257
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


DoD ECA PKI

2009-12-18 Thread Chad Baloga

Has anyone worked with DoD ECA PKI certs?  I want to pull information from the 
user's cert to verify who they are. Thanks 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329258
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Export to Excel Asian locale

2009-12-18 Thread Victor Moore

Data is displayed OK on the page. it's just in the excel file that is
not showing properly, but if I cut and paste manually in the excel
file then it shows OK.

Thanks

On Fri, Dec 18, 2009 at 1:51 PM, Chad Gray cg...@careyweb.com wrote:

 Does your OS that opens the excel file have the support for double byte 
 characters?

 In windows I think it is under regions and languages.  You should google 
 support for double byte characters on your OS.

 I found this real quick:
 http://mandarin.about.com/od/characters/ss/display_chars.htm


 -Original Message-
 From: Victor Moore [mailto:victor.mo...@gmail.com]
 Sent: Friday, December 18, 2009 1:15 PM
 To: cf-talk
 Subject: Export to Excel Asian locale


 Hi,

 Is it possible to export a form containing Chinese, Korean  words to
 excel?
 I can't figure out how to do it. All the double byte  characters show
 as squares (or funny characters if I remove
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
 xhtml1/xhtml1-transitional.dtd
 html xmlns=http://www.w3.org/1999/xhtml; )

 This is what I have:
       cfheader name=Content-Type charset=utf-8
 value=application/vnd.ms-excel
       cfheader name=Content-Disposition charset=utf-8 value=inline;
 filename=inv.xls

 Any ideas?

 Thanks
 Victor



 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329259
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: DoD ECA PKI

2009-12-18 Thread Dave Watts

 Has anyone worked with DoD ECA PKI certs?  I want to pull information from 
 the user's cert to verify who they are. Thanks

You can configure IIS to require client certificates, and if they're
present, IIS will populate CGI variables using some of the cert
values.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329260
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: DoD ECA PKI

2009-12-18 Thread Chad Baloga

We are using Apache on our web servers.  Do you know what I need to add to my 
virtual host in the httpd file?  The CGI variables are currently displaying 
empty in the browser. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329261
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cftree and blackberry

2009-12-18 Thread sam Detweiler

I have a cf 9 app that uses cftree with the bind: parameter to dynamically 
create a tree... there are a couple buttons on that page too..

the buttons appear, but the body doesn't. it is all javascript. 

any suggestions on config, where to look to resolve this?

thanks

Sam 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329262
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: DoD ECA PKI

2009-12-18 Thread Dave Watts

 We are using Apache on our web servers.  Do you know what I need to add to my 
 virtual host in the httpd file?  The CGI variables
 are currently displaying empty in the browser.

I have no experience using client certificates with Apache  CF.
Sorry. If you're not seeing the CGI variables, you may have to change
and recompile the CF Apache module, I suppose. Alternatively, can you
see any info using the getHttpRequestData function?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more informatio

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329263
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Export to Excel Asian locale

2009-12-18 Thread Paul Hastings

On 12/19/2009 1:15 AM, Victor Moore wrote:
 I can't figure out how to do it. All the double byte  characters show
 as squares (or funny characters if I remove

squares (empty ones) usually mean that the app can't render those glyphs. 
either 
a small encoding error or it doesn't have the right font. try another font that 
contains those glyphs first (off the top of me head, i know of only arial 
unicode ms that contains both chinese  korean, and pretty much everything 
else).

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329264
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4