Re: [ACFUG Discuss] asp version of cfhttp

2006-09-29 Thread Teddy Payne
Ok, I sense a whole people going, huh?Robert, this may not be soemthing the average CF developer or even the above average CF developer doesn't really looks for everyday. We use cfhttp to make our life easy for webservices and referencing remote pages. 
Perhaps those who are familiar with BD .Net may have more insight with comparison code.Sorry Robert,TeddyOn 9/29/06, 
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
Can someone point me to a resource or supply some info if there is an ASP equvilent to cfhttp tag.All I want to do ispost form parameters and get the returned file content and then test it's value.It must be in asp only.
ThanksRobert-To unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform
For more info, see http://www.acfug.org/mailinglistsArchive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com--- cf_payne /
Blog: http://cfpayne.wordpress.com/Atlanta CFUG: http://www.acfug.org



-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-



RE: [ACFUG Discuss] asp version of cfhttp

2006-09-29 Thread axunderwood



Try 
this

http://www.webmasterworld.com/forum47/27.htm

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]On Behalf Of Teddy PayneSent: 
  Friday, September 29, 2006 1:37 PMTo: 
  discussion@acfug.orgSubject: Re: [ACFUG Discuss] asp version of 
  cfhttpOk, I sense a whole people going, 
  "huh?"Robert, this may not be soemthing the average CF developer or 
  even the above average CF developer doesn't really looks for everyday. 
  We use cfhttp to make our life easy for webservices and referencing 
  remote pages. Perhaps those who are familiar with BD .Net may 
  have more insight with comparison code.Sorry Robert,Teddy
  On 9/29/06, [EMAIL PROTECTED] [EMAIL PROTECTED] 
  wrote:
  Can 
someone point me to a resource or supply some info if there is an ASP 
equvilent to cfhttp tag.All I want to do ispost form parameters 
and get the returned file content and then test it's value.It must 
be in asp only. 
ThanksRobert-To 
unsubscribe from this list, manage your profile @http://www.acfug.org?fa=login.edituserform 
For more info, see http://www.acfug.org/mailinglistsArchive 
@ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by http://www.fusionlink.com--- cf_payne / Blog: http://cfpayne.wordpress.com/Atlanta 
  CFUG: http://www.acfug.org 
  - To 
  unsubscribe from this list, manage your profile @ http://www.acfug.org?fa=login.edituserform 
  For more info, see http://www.acfug.org/mailinglists 
  Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
  List hosted by FusionLink 
  - 



RE: [ACFUG Discuss] asp version of cfhttp

2006-09-29 Thread Benjamin Bloodworth
http://msdn2.microsoft.com/en-us/library/system.net.webclient.aspx
If you can use asp.net, you are looking for the WebClient class.

http://www.4guysfromrolla.com/webtech/070601-1.shtml
Has some info on how to do it with classic asp as well as .net in the above
link.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, September 29, 2006 12:46 PM
To: acfug acfug
Subject: [ACFUG Discuss] asp version of cfhttp

Can someone point me to a resource or supply some info if there is an ASP
equvilent to cfhttp tag.

All I want to do is
post form parameters and get the returned file content and then test it's
value.

It must be in asp only.

Thanks
Robert


-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-




-
To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





[ACFUG Discuss] FusionDebug special price reductions through October

2006-09-29 Thread Charlie Arehart



Folks, check out 
news of special FusionDebug price reductions, including a new "community 
(non-commercial) edition", at:

http://carehart.org/blog/client/index.cfm/2006/9/29/fusiondebug_discounted_pricing

/charlie
http://www.carehart.org/blog/




-

To unsubscribe from this list, manage your profile @ 

http://www.acfug.org?fa=login.edituserform



For more info, see http://www.acfug.org/mailinglists

Archive @ http://www.mail-archive.com/discussion%40acfug.org/

List hosted by FusionLink

-




Re: Re: [ACFUG Discuss] Client? Session?

2006-09-29 Thread Jeremy Allen
Don't use the Client scope! There are only a few reasons to use Client
scope and I would still think long and hard about it after having
maintained an application that was almost purely Client scope for user
state. I think you should avoid the client scope unless you have
a real and hard requirement that you absolutely can't lose session data
in the event of a server failure. I admit, it is kind of nice to still
have all of your user sessions when you restart CF and that benefited
our applications in some cases. However, I still don't think the
benefits for Client scope are not worth it. Sticky sessions are OK in a
load balanced situation. You may get some uneven clumping of clients in
some cases, but in reality it turns out not to be a big deal. Playing
with WDDX and the overheads involved in that and the pain of keeping
track of the serialization state of your data just isn't worth it. 

You can't even serialize a CFC with WDDX, but they will happily live in
the session scope. If you do use client scope make sure you abstract it
with a good layer around it so that what scope you use is transparent
to your application so that you can change it in the future without
your application noticing. Look to the Facade design pattern for that.

JeremyOn 9/27/06, Teddy Payne [EMAIL PROTECTED] wrote:
Allen made a good point about WDDX. I tend to overlook CFWDDX.cfwddx action = "" input = #session# output=client.foo

cfdump var=#client.foo# can dump your session into foo variable stored into the client scope.Your result in the DB would look similar to:foo=wddxPacket version#='1.0'header/datastruct type#='
coldfusion.runtime.MemorySessionScope'var name#='cftoken'string88107569/string/varvar name#='urltoken'stringCFID#=7101amp;CFTOKEN#=88107569/string/varvar name#='cfid'string7101/string/varvar name#='sessionid'stringTESTAPP_7101_88107569/string/var/struct/data/wddxPacket#
TeddyOn 9/27/06, 
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:







Just 
as an aside - you can still store complex structures in client variables but 
you'll have to wddx them into a string and then store them into the client 
variable. Also, if you do this and you have your client variables stored 
in the database, you'll want to make sure your datasource is enabled to retrieve 
BLOB's without the 64k limit.

One 
other thing, if you're running on MX in JRUN configuration (not standalone), you 
can share the sessions between servers (if I remember right). J2EE has 
clustering built in and I believe it supports the equivalent of a session state 
server. 

Allen

  -Original Message-From: [EMAIL PROTECTED]
 
  [mailto:[EMAIL PROTECTED]]On Behalf Of 
  [EMAIL PROTECTED]Sent: Wednesday, September 
  27, 2006 9:22 AMTo: discussion@acfug.orgSubject: Re: Re: 
  [ACFUG Discuss] Client? Session?In general it seems to me that the rule is that once a user is on a 
  server, they are on the same server. Define complex data. I 
  potentially see structures and possibly an occasional object in the shared 
  scope, but honestly I don't know yet. We don't officially have any code 
  written.  mcg 
  
  


  Steven Ross 
[EMAIL PROTECTED] Sent by: 

[EMAIL PROTECTED] 
09/26/2006 08:04 PM 

  
  

  Please respond 
  todiscussion@acfug.org
  

  
  

  To
discussion@acfug.org 
  

  cc

  

  Subject
Re: Re: [ACFUG Discuss] Client? 
  Session?

  
  

Yeah it depends on how you want your requests routed... it is 
  myunderstanding that if you want the machines to round robin 
  eachrequest then you need to do client variables, if you don't care 
  andyou just want users to stay on one server then you can use 
  sessions.On 9/26/06, Teddy Payne [EMAIL PROTECTED] 
  wrote: Are you looking to store complex data in your shared scope? 
  If so, you need some sort of sticky session solution. If 
  you are looking to store simple data, using the datasource option of 
  client variable storeage would make it easier to switch over between 
  servers. Teddy On 9/26/06, 
  [EMAIL PROTECTED]  
  [EMAIL PROTECTED] wrote:   I'm 
  a little confused as to what scope of variables to use in our 
  situation. We have a primary server and a 'backup' server in case 
  the primary fails. Now that is the current situation. 
  Eventually the backup will be replaced with a better machine and 
  the load will be balanced a little more evenly.  Currently the 
  balancing is done via Resonate software (and no one seems to like it). 
  As far as 100% failover, I really don't see that as a necessity, 
  these aren't banking applications. Also these servers don't talk 
  to each other that I know of.   TIA 
Mary-Catherine  
  -