Re: Reg Ex Help

2005-03-18 Thread Umer Farooq
there are lot of ways to do this.. personally I don't like to use the 
Dot. as it matches everything.. and will get you into trouble.. if you 
have something like the following..

tempstring = "something 'add==insert' whatever 'edit==update'"

the dot will match you.. 'add==insert' whatever 'edit==update'

below will match 'add==insert' and 'edit==update' separately.


re = "('[A-Za-z0-9\s]*)==([A-Za-z0-9\s]*')";
REReplace(tempString, re, "\1=\2", ALL);


more info on regex..

http://www.regular-expressions.info/


Brook Davies wrote:
> Yikes. So is there a better way to do this? I am a bit lost with regular 
> expressions...
> 
> Brook
> 
> At 11:23 AM 3/18/2005, you wrote:
> 
>>First, I think you want ([^']*?) instead of (.*)?.  You want to
>>non-greedily match everything but single quotes, right?
>>
>>Also, keep in mind that this will do two things you're probably not
>>anticipating.  First, it will only replace one set of double-equals per
>>set of single quotes.  Secondly, it's not really reading nested quotes, so
>>'this is in quotes' this == is not 'this is again'
>>will come back with the not-in-quotes double-equals replaced.
>>
>>HTH
>>


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199402
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


spelling suggestion

2005-03-17 Thread Umer Farooq
Hi,

for a person like me.. who can't spell to save his life.. whats the best 
way to enhance a search to have it search by like terms.. what would you 
use.. to do this..  a dictionary to look up the right spelling.. or 
would you store common misspelling in a DB field.. etc..

Any thoughts on this are much appreciated.

Regards,
-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199263
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: REPOST: Two applications sharing cfid/cftoken

2005-02-28 Thread Umer Farooq
>>Are you positive that your cookies file is not corupted..
>>clear the cookies.. and test again..
> 
> 
> This isn't just happening to me. It's been reported by various clients
> (and is reproducible by everyone we've tried it with) since before I
> even started here (it's been an annoyance for a while, apparently). 
> So, I can't imagine everyone has a corrupt cookies file on multiple
> browsers.

I meant to say.. any time you are testing.. clear the cookies before 
hand.. it is possiable that who ever wrote the original code is calling 
this Application.cfm file at multiple locations.. and all you need is 
one call.. to reset/overwrite your stuff..

>>Also add a cfmail tag to both Application.cfm files..
>>and email you some junk.. and make sure both are not running..
> 
> 
> I'm not sure what you're suggesting here.  Both application.cfm files
> need to run (since one includes the other).
> 

Add the cfmail tag.. to one of them.. then.. you should only get one 
email.. if you get multiple copies.. Means the Application.cfm file is 
being called mulitple times..


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Dividing output??

2005-02-28 Thread Umer Farooq
Mid and Left functions should help out here.

Greg Morphis wrote:
> Is it possible (I can't see how) to take a big block of text from the
> database and split it up into 4 columns within a table?
> 
> 
> 
> 
> 

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: REPOST: Two applications sharing cfid/cftoken

2005-02-28 Thread Umer Farooq
Are you positive that your cookies file is not corupted..
clear the cookies.. and test again..

Also add a cfmail tag to both Application.cfm files..
and email you some junk.. and make sure both are not running..

on *Nix "A" needs to be capital on "Application.cfm"

also since you have said previoulsy.. that its crap code.. don't run the 
files in the code.. create a test page.. and run that.. that way you can 
narrow down the problem..


Scott Brady wrote:
> I just tried a quick test (basically, copying the "included"
> application.cfm code into the one that does the including (and
> removing the cfinclude)) so that each app would use its own
> cfapplication tag.
> 
> No difference.  One app "steals" the cfid/cftoken of the other (the
> "sessionid" variable, which appends the application name to the
> cfid/cftoken shows the different application names with the same
> cfid/cftoken values).
> 
> Scott
> 

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196818
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: hosting: rackspace vs maximumASP

2005-02-28 Thread Umer Farooq
We have couple of boxes.. there.. and service been great..
they take care of everything (OS, firwall, load balancer.. etc..) and 
all we gota do is worry about ColdFusion.

RackSpace officially does not support ColdFusion.

Personally if the client did not wanted to go with them.. I would have 
put this up at a colo place.. as the upgrades to hardware just kill you.
 From what I recall.. upgrade of 2GB ram costs around.. 150/mo... uch..

Also.. at the start of service.. couple of the raid hard drives 
constantly crashed.. but they were fast to replace and rebuild them.

But overall its great not having to worry about firwall configs.. 
patching.. etc..

Greg Saunders wrote:
> I'm trying to set up a high-end dedicated CF solution for a client:  2 
> load-balanced web servers with a SQL Server backend (potentially 2 machines 
> in an active/passive configuration).
> 
> For various reasons, I've been looking at http://www.rackspace.com/ and
> http://www.maximumasp.com/default.aspx.
> 
> Does anyone have any experience with either company, ideally experience 
> with hosting CF solutions?
> 
> Thanks,
> 
> Greg Saunders
> Chief Technical Officer
> Socratic Arts
> http://www.socraticarts.com
> 
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196804
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: bugs URL

2005-02-24 Thread Umer Farooq
Well one thing I can say for sure.. that tech support from Macradio was 
superb..

I filled out the online form.. and 15 minutes later.. I had the answer..
absolutely amazing.

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196442
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: bugs URL

2005-02-24 Thread Umer Farooq
Hi,

Thanks for the URL.. but not the right one.. anyhow.. I have gone 
through all the URL's on the site.. but can't seem to find any refrence 
to.. bug 57458 (http://www.petefreitag.com/item/163.cfm)

I tried filling out the form.. to contact support.. to get a status on 
it.. but for some reason the form won't submit.. its just hanging.. 
might just be a mozilla thing.
http://www.macromedia.com/support/email/isupport/main.cgi

will try loading up IE.. and submitting the form.


Sean Corfield wrote:
> On Thu, 24 Feb 2005 14:30:50 -0500, Dave Carabetta <[EMAIL PROTECTED]> wrote:
> 
>>There isn't one in the sense that there's no searchable bug base. I
>>*think* there's a Known Issues document somewhere on Macromedia's
>>site, but a quick search only yields documents that haven't been
>>updated in 2 years.
> 
> 
> http://www.macromedia.com/support/documentation/en/coldfusion/mx7/cfmx7_documentation_known_issues.html
> 
> The up to date known issues list is always part of the release notes
> these days. I'll mention the out of date known issues page (yes, I
> found that from searching the site too) to the CF web producer.

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196387
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


bugs URL

2005-02-24 Thread Umer Farooq
Hi,

Does anyone know the URL of listing of all the known bugs in ColdFusion MX.


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196368
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Webservices Complex data Types

2005-02-21 Thread Umer Farooq
Tom,

Yes. enumeration type. I was able to work out that part..  by looking at 
the WSDL output.. now only thing I need is a way to pass in required 
attributes for an element. If somehow I can get that going.. it be 
amazing. any tips on how that could be done.. or what should I be 
looking.. for.. to build the struct.

Schema URL:
http://developer.ebay.com/DevZone/SOAP/docs/WSDL/xsd/1/element/VerifyAddItemRequest.htm


Working Request:
  
   // set the header
   addItemRequest = StructNew();
   addItemRequest.ErrorLanguage  = "en_US";
   addItemRequest.detailLevel = ArrayNew(1);
   addItemRequest.detailLevel[1] = "ReturnAll";
   addItemRequest.Version = "393";
   addItemRequest.item = StructNew();
   addItemRequest.item.quantity = "1";
   addItemRequest.item.Currency = "USD";
   addItemRequest.item.PrimaryCategory = StructNew();
   addItemRequest.item.PrimaryCategory.CategoryID = "20";


Need:
BuyItNowPrice with required attribute currencyID

--
Regards,

Tom Jordahl wrote:
> Umer,
> 
> If it is an enumeration type (I need to see the actual Schema) then CFMX 6.l
> doesn't handle it, but CFMX 7 should do it fine.  We will construct the Java
> enumeration type that the Axis generated stub requires using the String
> constructor.  This code was missing from 6.1.
> 
> Lawrence is incorrect that CFMX can't handle a complex type inside a complex
> type.  The Web service code should correctly make a JavaBean type from any
> struct that you pass, even if that struct is inside another struct.
> 
> In short, most of the problems with invoking web services with complex types
> are in guessing the CFML structures that will match the JavaBeans generated
> by the Axis engine.
> 
> One of the methods for debugging complex data types is to invoke the Apache
> Axis "WSDL2Java" program directly on the WSDL you are trying to consume.
> This will generate Java classes (sometimes lots of classes) that you can
> then examine to find out what exactly is required for the service.
> 
> Here is how:
> 
> Set your CLASSPATH environment variable to include the following jar files
> cfusion/lib/axis.jar
> cfusion/lib/saaj.jar
> cfusion/lib/jaxrpc.jar
> cfusion/lib/xercesImpl.jar
> cfusion/lib/wsdl4j.jar
> cfusion/lib/commons-logging-1.0.2.jar
> cfusion/lib/commons-discovery.jar
> 
> For example on Windows, change directory to CFusionMX7\lib:
> C:\CFusionMX7\lib>set
> CLASSPATH=axis.jar;saaj.jar;jaxrpc.jar;xercesImpl.jar;wsdl4j.jar;commons-log
> ging-1.0.2.jar;commons-discovery.jar
> 
> Then run
>  java org.apache.axis.wsdl.WSDL2Java -v -o myoutput http://host/to/my/wsdl
> 
> 
> Replace the URL with the URL of your WSDL file and "myoutput" with the
> directory you want the files generate to go to.  Then take a look at the
> files generated.  In particular you can look for the "interface" that will
> contain all of the operations of the web service.  You can then see the Java
> types that CFMX is trying to create from your CFML.
> 
> Hope this helps.
> 
> 
> Tom Jordahl
> Macromedia Server Development 
> 
> -Original Message-


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195854
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Webservices Complex data Types

2005-02-20 Thread Umer Farooq
Larry,

Thanks for the information.. It is just really disappointing.. I sat 
down.. downloaded/installed 7.0 dev.. and got a simple call working.. 
and was all excited.. and jumping up and down.. then.. this.. out goes 
the reason to upgrade to 7.0.. :(

In 7.0, I can pass elements-in-elements but can't pass in element based 
on a complex..

i.e  following Works..


   
   
   


Not.






oh.. also I can pass in a XML Object for the soapHeader.. so I was 
hopping from some magical way of doing this..  but from looks of it 
there is none.

Thanks for the direct post.. option.. I didn't even think about that.. I 
was just gonna go back to the straight XML API.. stupid me..

--
Regards,

Lawrence B. Afrin, M.D. wrote:
> Umer --
> 
> As inferred by Dave Watts, your problem is that ns:DetailLevelCodeType 
> defines a complex datatype, not the simple
> strings defined by the other parameters.  Thus, the service you are trying to 
> talk to requires you pass a
> complex-within-complex datatype, and the reason you are having difficulty 
> figuring out how to do this is that ColdFusion
> can't do it.
> 
> Your problem is exactly the same problem I (and my developer Doug James) have 
> been pestering the cf-talk list about over
> the last few weeks, though the context for our problem (interfacing CF to 
> UDDI web services) has been different from
> yours.  Regardless, ColdFusion has no way to map ColdFusion 
> structures-within-structures to the type of
> element-within-element XML messages required by WSDLs that define 
> complex-within-complex structures.  Why Macromedia
> hasn't yet provided a way to pass CF XML document objects, rather than just 
> CF structures, to web services requiring
> complex-within-complex input arguments..well, I don't know.
> 
> When you define a ColdFusion structure, the structure's keys become the names 
> of XML *attributes* which modify the XML
> root element of the web service input argument to which you are feeding the 
> structure, and the value of each key becomes
> the value of that XML attribute.  For example:
> 
> 
> 
> 
> is equivalent to
> 
> 
> 
> But, if the WSDL requires this...
> 
> 
>   2.0
> 
> 
> ..ah, now you're stuck, for this is a complex-within-complex definition 
> within the WSDL, and there is no way to build
> a structure within CFMX 6.x (nor within CFMX 7, as it turns out) that will 
> get translated by CF into the above XML
> snippet as the Axis engine is building the outgoing SOAP message.  Basically, 
> you can't set up a CF
> structure-within-structure that'll get mapped to an element-within-element 
> XML structure to be sent as the body of the
> SOAP message going out to the web service.  And if you try to build the input 
> XML message yourself and specify the
> resulting XML document object as the input argument in a , CF will 
> just auto-translate this document object
> into a structure -- which will be in the wrong format compared to how Axis, 
> after parsing the WSDL, expects to see the
> input argument.
> 
> Solution?  Yes, there is one.  Basically, you have to bypass CFMX's Axis web 
> services package and all the niceties it
> provides you.  You need to build your own SOAP input message, HTTP POST it to 
> the target web service, and parse the SOAP
> output message, as follows:
> 
>  url="path-to-the-web-service-NOTE-not-the-path-to-the-WSDL">
>   
>   
> 
> 
>   
> 
> 
> 
> Then you can dig deeper into the soapoutputbody XML document object to ferret 
> out the return info you're really looking
> for.
> 
> [Notes: (1) Depending on the web service you're tapping into, you may need to 
> define the SOAPAction header as something
> other than the pair of double-quote marks shown above.  (2) CFMX 6.0 won't 
> suffice for this workaround.  You need 6.1 or
> later, because it wasn't until 6.1 that the type="Header" and type="XML" 
> attributes were added to the cfhttpparam tag,
> and these attributes are critical to making this workaround work.]
> 
> The tough part to making this work is figuring out exactly what kind of a 
> SOAP input message your target web service
> requires.  Once you've got that figured out, doing the cfhttp and wading 
> through an xmlparsing of the service's output
> is pretty straightforward.
> 
> Doug and I recently brought this to Macromedia's attention, so we can hope 
> that a 7.0 Updater, or 7.1, will correct this
> deficiency sometime within the next year or two.
> 
> -- Larry Afrin
>Medical University of South Carolina
>[EMAIL PROTECTED]
> 
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195716
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/li

Re: Webservices Complex data Types

2005-02-19 Thread Umer Farooq
Hi,

It could have one of the following values..

ReturnAll   
ItemReturnDescription   
.

which I've set.. I need to figure out.. how to pass.. a attribute.. that 
in it self is a complex type..

I did test.. the SOAP gateway.. using XMLSpy and writing out the 
evenlope.. it works fine..

Since the service is over SSL.. can't really use TCPmon to look at the 
packet.. is there any way to grab the SOAPEnvelope.. or the body..


Dave Watts wrote:
>>How would one pass data for the following..
>>
>> WSDL Element:
>>  
>>  xs:string
>>  xs:string
>>  xs:string
>>  ns:DetailLevelCodeType
> 
> 
> You should read the rest of the schema to figure out what
> "ns:DetailLevelCodeType" should contain.
> 
> 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!
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195587
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Webservices Complex data Types

2005-02-19 Thread Umer Farooq
Hi,

How would one pass data for the following..

 WSDL Element:
  
xs:string
xs:string
xs:string
ns:DetailLevelCodeType
xs:string
xs:string
xs:string
 

I can pass it as structs.. but when I pass the detailLevel the call 
chokes..

  itemRequest = StructNew();
  itemRequest.MessageID = ""
  itemRequest.ErrorLanguage = "en_CA";
  itemRequest.Version = "393";
  // Choking here.
  itemRequest.detailLevel = "Normal";


-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195558
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Ebay SOAP API

2005-02-18 Thread Umer Farooq
Just an update.. got it working.. needed a good night sleep. :-)

sample code below.

http://developer.ebay.com/webservices/393/eBaySvc.wsdl";)>







XX
XX







   // set the header
   addSOAPRequestHeader(ebayWS, "urn:ebay:apis:eBLBaseComponents",
"RequesterCredentials", "#ebayXMLObj#", false);


   // set the end point

ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","https://api.sandbox.ebay.com/wsapi?callname=#methodToCall#&siteid=0&appid=X&version=393&&Routing=New";);

   // build geteBayOfficialTimeRequest..
   timeRequest = StructNew();
   timeRequest.version = "393";










--
regards,

Umer Farooq wrote:
> Has anyone been able to get ebay SOAP API going with CF. I've tried and 
> I keep on getting:

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in
this document and attachments is confidential and intended only for the
person(s) named above. If you are not the  intended recipient you are
hereby notified that any disclosure, copying, distribution, or any other
use of the information is strictly prohibited.  If you have received
this document by mistake, please notify the sender immediately and
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195520
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Ebay SOAP API

2005-02-18 Thread Umer Farooq
Just an update.. got it working.. needed a good night sleep. :-)

sample code below.

http://developer.ebay.com/webservices/393/eBaySvc.wsdl";)>







XX
XX







   // set the header
   addSOAPRequestHeader(ebayWS, "urn:ebay:apis:eBLBaseComponents", 
"RequesterCredentials", "#ebayXMLObj#", false);


   // set the end point
 
ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","https://api.sandbox.ebay.com/wsapi?callname=#methodToCall#&siteid=0&appid=X&version=393&&Routing=New";);

   // build geteBayOfficialTimeRequest..
   timeRequest = StructNew();
   timeRequest.version = "393";










--
regards,

Umer Farooq wrote:
> Has anyone been able to get ebay SOAP API going with CF. I've tried and 
> I keep on getting:
> 
> coldfusion.xml.rpc.ServiceProxy$ServiceMethodNotFoundException
> 
> this is what i'm doing..
> 
> 
> 
>
>  
>  
>  X
>
> 
> 
> 
> bayWS = CreateObject("webservice", 
> "http://developer.ebay.com/webservices/361/eBaySvc.wsdl";);
> 
> addSOAPRequestHeader(ebayWS, "urn:ebay:api:eBayAPI", 
> "RequesterCredentials", "#ebayXMLObj#");
> 
> //this does not work..
> //ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","https://api.sandbox.ebay.com/wsapi?callname=getFeedback&siteid=0&appid=XXX&version=361";);
> 
> // this seems set the endpoint..
> ebayWS._getService().seteBayAPIEndpointAddress("https://api.sandbox.ebay.com/wsapi?callname=getFeedback&siteid=0&appid=&version=361";);
> 
> 
> TIA.

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195518
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Ebay SOAP API

2005-02-17 Thread Umer Farooq
Has anyone been able to get ebay SOAP API going with CF. I've tried and 
I keep on getting:

coldfusion.xml.rpc.ServiceProxy$ServiceMethodNotFoundException

this is what i'm doing..



   
 
 
 X
   



bayWS = CreateObject("webservice", 
"http://developer.ebay.com/webservices/361/eBaySvc.wsdl";);

addSOAPRequestHeader(ebayWS, "urn:ebay:api:eBayAPI", 
"RequesterCredentials", "#ebayXMLObj#");

//this does not work..
//ebayWS._setProperty("javax.xml.rpc.service.endpoint.address","https://api.sandbox.ebay.com/wsapi?callname=getFeedback&siteid=0&appid=XXX&version=361";);

// this seems set the endpoint..
ebayWS._getService().seteBayAPIEndpointAddress("https://api.sandbox.ebay.com/wsapi?callname=getFeedback&siteid=0&appid=&version=361";);


TIA.
-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195344
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Sql question

2005-02-04 Thread Umer Farooq
Well.. oneway to do it is to create a new relationship table.. i.e

tblRelatedTrails
> relationID
> trailID
> relatedTrailID

and when doing a select for review you can do a sub select on the 
relatedTrails table.. and use IN()

anotherway is to use the geo info of the trails.. and select.. all 
reviews falling in a radius.

John Munyan wrote:
> Yes, the crux of the question is how to handle the subset question. In the 
> below example a review left for SnowLake would 
be availble for the Snowlake Hike only.  If I user left a review for Gem 
lake, then the review should be available for SnowLake or Gemlake since 
you pass by Snow lake on your way to Gem lake.  Similiarly, Wright 
Mountain, would show reviews left for Wright Mountain, but also for Gem 
Lake and Snow lake since you pass by them en route to Wright Mountain.
>  
> Thus how do you handle nesting of these elements where one is a subset of 
> another...
>  
> Thanks,
> 
> John
> 


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193150
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: CFQuery SQL Scope of return?

2005-02-04 Thread Umer Farooq
SELECT TOP x..

However..

MS SQL Server does not support select range type quries.

If your table does not contain lot of data.. look at CFOUTPUT controls..
otherwise.. SQL StoredProc would give you good results..


Nick Baker wrote:
> MS SQL
> CFMX  6.1
> 
> How do you limit the score of info returned?
> or
> The equivalent of MySQL
>   LIMIT #StartRow#, #NumberRows#
> 
> Thanks,
> 
> Nick 


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193144
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Sql question

2005-02-04 Thread Umer Farooq
John Munyan wrote:
> I have a question about how a relationship would be best modeled in SQL.  
> Currently I have a hiking website, which hosts trail reviews.  People can add 
> their own comments which are associated with the hike.
>  
> For instance maybe I hiked snow lake on 12/1/05 and also 6/1/05.  However, 
> the user review gets associated with the instance of the hike either on 
> 12/1/05. or 6/1/05.  I want to combine these reviews so that they are 
> associated with both.  I think a group ID could be assigned so this could be 
> accomplished.

Hmm.. wouldn't just querying to figure out if there is another review 
from the same user.. for a same trail.. take care of that.. am I missing 
something here..

> However...
>  
> The real problem however is how to model something like this where one hike 
> is a subset or superset of another.  Take for instance this example.
>  
> TrailHead---3miles--Snowlake2milesGemlake---1mile---WrightMountain.
>  
> I would like  the Snow lake reviews to be shown when either GemLake is viewed 
> or Wright Mountain.  However, I wouldn't want reviews for Gem Lake when the 
> user is only intending to go to Snowlake.  Thus the problem is how one would 
> handle this superset/subset association of reviews.
>  
> If anyone has any thoughts about how this would be handled I would be 
> grateful for the advice.

Simplest thing that comes to my mind is to create a another table.. 
which holds... review relationship between the trails..

snowLake   :
gemlake    : snowLake,trailHead
wrightMountain : snowLake
trailHead  : gemLake

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193139
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Slightly OT: XHTML (was Re: cfset ?)

2005-02-04 Thread Umer Farooq
you need to create a DTD to encompass all these..
W3C has a good example.. [XHTMLMOD]

http://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/#ref-xhtmlmodschema

frankly I think.. until the XHTML MOD Schema is finalized(working draft 
now) stuff like this gonna be.. a pain.. unless you are a fan of DTD's


Massimo, Tiziana e Federica wrote:
> "Micha Schopman" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> 
>>XHTML in general has to be served as application/xhtml+xml,
>>application/xml or text/xml to be valid. So serving the files with a
>>mimetype other than the required results in invalid XHTML, although the
>>format looks XHTML valid.
> 
> 
> 
> I tend to agree (see my CF tools page with a Gekko based browser), but I
> feel there is more than that. With XHTML you can create compound documents,
> mixing different XML languages inside the same document, like a XHTML file
> that contains SVG, MathML or RSS. In such a scenario XHTML may simply act as
> a container. How about that? What's the "correct" mime-type for such a kind
> of beast?
> 
> I have the feeling a simple mime-type isn't able to express the real nature
> of a compound XML document...
> 
> 
> 
> Massimo Foti
> DW tools: http://www.massimocorner.com
> CF tools:  http://www.olimpo.ch/tmt/
> 
> 
> 
> 
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193131
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Slightly OT: XHTML (was Re: cfset ?)

2005-02-03 Thread Umer Farooq
>> ..
>>3) all attribute values must be in quotes.
>>
>>that's XHTML in a nutshell.
> 
> 
> be lowercase, and there are some HTML tags which don't exist in XHTML if I
> recall correctly.

You are right.. but that's the  beauty of XHTML Modularization.. you can 
easily extend it.. to match whatever you need it to.. one of the most 
common attribute that is not in the XHTML DTD is "target" and you can 
add the following to your doctype dec and get ur self a valid XHTML 
document..



With the coming release of Blackstone (hopefully soon) XHTML and XForms 
combo is gonna be a killer.. I can't wait.. wishing right now I was on 
the beta test.. ;)

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193048
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Need help with query with dates please

2005-01-31 Thread Umer Farooq
assuming you have two date variables.. startDate and endDate..

WHERE (day > #day(startDate)#)
   AND (month > #month(startDate)#)
   AND (day < #day(endDate)#)
   AND (month < #month(endDate)#)

Mike Kear wrote:
> I have a database containing a list of events (birthdays,
> anniversaries etc), and want to produce a listing of the events
> relating to this week, this month, today etc as the user requests on
> the form I give them.
> 
> Because not everyone's birth year is known, not all the birthdays have
> a year.  they all have a day and a month however, but that's all that
> really matters for the selection of the record, I think.
> 
> The relevant parts of the Anniversaries table is as follows: 
> 
> EventID  int  PrimaryKey Identity
> Name  varchar 50
> EventType  varchar 10   (i.e. birthday, deathday, anniv)
> day int
> month int
> year int
> comments varchar 500
> 
> 
> I"m having trouble working out the SQL for this table if i want to
> find the anniversaries that fall between two dates.  (for example from
> last sunday to next sunday)
> 
> IN pseudo code, the SQL goes like this (after turning the form dates
> into a odbcdate object):
> 
> SELECT * from Anniversaries WHERE
> 
> day/month  is greater than beginningday/month
> AND
> day/month  is less than endingday/month
> 
> 
> IT's the date aspect that's giving me the heebeegeebees.  Nothing I
> try generates anything other than error messages.  GRRRR.
> 
> Or perhaps I should change the way I store the anniversary in
> formation to date objects rather than just integer fields.  No?
> 

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 489-1119 voice
+1 (519) 635-2795 mobile
+1 (530) 326-3586 fax


WEB SOLUTIONS FOR NON-PROFIT ORGANIZATION:
http://www.Non-ProfitSites.biz


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192515
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: J2EE Sessions

2005-01-28 Thread Umer Farooq
http://www-106.ibm.com/developerworks/websphere/partners/macromedia/

has a nice article on Websphere and MX clustering..
from my understanding clustering J2EE applications is dependent on the 
J2EE server.

Also, standard and developer versions of CF run on top of JRUN.

Chris Norloff wrote:
> I don't know about CFMX Pro - we use CFMX for J2EE on WebSphere with J2EE 
> sessions. The J2EE session setting makes the CFMX session the same as the 
> J2EE session object. The browser gets a non-persistent cookie with the 
> jsessionid. The session can then be replicated across all the Application 
> Servers.
> 
> Search the Macromedia ColdFusion knowledge base for J2EE and you'll find a 
> lot of info.
> 
> Chris Norloff
> 
> 
> -- Original Message --
> From: Brook Davies <[EMAIL PROTECTED]>
> Reply-To: cf-talk@houseoffusion.com
> Date:  Thu, 27 Jan 2005 18:47:25 -0800
> 
> 
>>I'm trying to cluster 2 CFMX Pro servers using J2EE session vars. I'm told 
>>its possible.
>>
>>Does this require, that when I installed CFMX I selected the "J2EE 
>>configuration (Coldfusion MX with Jrun4)" as opposed to the standard 
>>"Server Configuration" option? I've been reaidng up on J2EE sessions vars, 
>>but have not found how to cluster them.  Can someone point me to an article 
>>or some more info?
>>
>>Brook Davies
>>logiforms.com
>>
>>
>>
>>
> 
> 
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192082
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: software lifecycle/project management tool/process recommendations

2005-01-23 Thread Umer Farooq
Also you can review the following sites...

http://www.dama.org/
http://www.odmg.org/
http://www.pmi.org/
http://www.waria.com/
http://www.wfmc.org

I would also recommend google/book on UMLv2.0..

Robert Munn wrote:
> Ian,
> 
> I like this book for Web development:
> 
> http://www.amazon.com/exec/obidos/tg/detail/-/1558606580/qid=1106425246/sr=1-1/ref=sr_1_1/002-2345314-2646402?v=glance&s=books
> 
> It is called "Usability for the Web", but it is, as much as anything, a book 
> about the process of building Web sites. It isn't focused on engineering, 
> though, so you need a good book on engineering projects. How about this one:
> 
> http://www.amazon.com/exec/obidos/tg/detail/-/1556159005/qid=1106424939/sr=1-1/ref=sr_1_1/002-2345314-2646402?v=glance&s=books
> 
> It is called "Rapid Development". It was published in 1996 and is top rated 
> software lifecycle book on Amazon.
> 
> The other thing you can look at generally is project management training. I 
> recommend training rather than reading alone because it's all about the 
> experience. I personally am not big on lots of formalized project management 
> for smaller sized projects, but having a good understanding of the principles 
> will help you assess your PM needs for a particular project. Even a small 
> amount of project management is better than none.
> 
> I would be happy to continue the discussion offline if you like.
> 
> Rob
> 
> 

> Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
> 

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice ***NEW AS OF 01/05***
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191487
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: A graphic of the db relationship

2005-01-17 Thread Umer Farooq
Try this..

FROM auction_item_categories AS A INNER JOIN 
auction_item_categories_sub AS S1 ON A.id = S1.category_id) INNER JOIN 
auction_item_categories_sub1 AS S2 ON S1.id = S2.category_id) INNER JOIN 
auction_item_categories_sub2 AS S3 ON S2.id = S3.category_id) INNER JOIN 
auction_item_categories_sub3 AS S4 ON S3.id = S4.category_id) INNER JOIN 
auction_item_categories_sub4 AS S5 ON S4.id = S5.category_id

Also in your initial post the join was fine.. but you had the tables in 
FROM... and that was likly your cause.. did you try just using the 
Access Query tool to build you the query.

but as it has already been pointed out.. it would be better to switch to 
one table.

Protoculture wrote:
> Thanks Mike. I will consider your suggestions about putting all the data into 
> one table. I did have a look at that database you mention and the layout was 
> compelling.
> 
> However, if the querying would still cause me headaches I would be no further 
> ahead. Behind in fact, because I've had to redesign the application to fit to 
> the new db structure.
> 
> btw tried your query adn still no luck.
> 
> Server Msg: -3100, State: 42000, [Microsoft][ODBC Microsoft Access Driver]
>  Syntax error (missing operator) in query expression '(A.id = S1.category_id)
> INNER JOIN auction_item_categories_sub2 S2
> ON (S1.id = S2.category_id)
> INNER JOIN auction_item_categories_sub3 S3
> ON (S2.id = S3.cateogyr_id)
> INNER JOIN auction_item_categories_sub4 S4
> ON (S3.id = S4.category_id)
> INNER JOIN auc'.
> 
> 
> 
> 
>>>From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
>>
>>I forgot to change something when copy/pasting.
>>
>>SELECT
>>  A.name
>>FROM
>>  auction_item_categories A
>>  INNER JOIN auction_item_categories_sub S1 
>>  ON (A.id = S1.category_id)
>>  INNER JOIN auction_item_categories_sub2 S2 
>>  ON (S1.id = S2.category_id)
>>  INNER JOIN auction_item_categories_sub3 S3 
>>  ON (S2.id = S3.cateogyr_id)
>>  INNER JOIN auction_item_categories_sub4 S4 
>>  ON (S3.id = S4.category_id)
>>  INNER JOIN auction_item_categories_sub5 S5 
>>  ON (S4.id = S5.category_id)
>>WHERE
>>  A.id = 1
>>
>>Sorry about that..
>>
>>Mike
> 
> 
> 

~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190718
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: DB Survey

2005-01-17 Thread Umer Farooq
Yes..

I second caseStudio very good tool..

and love the fact you can reverse engineer the DB. Only thing I hate 
is RE is not supported on MSSQL 7.

Massimo Foti wrote:
>>I've always been a pen and paper guy, doing data dictionaries first and
>>determing relationships before committing to the DB.
> 
> 
> Me too :-)
> Until now, working on very small teams it hasn't be an issue; but I see your
> point.
> 
> 
> 
>>I'd like soemthing
>>though, that is a bit more portable (and readable) than my chicken
> 
> scratch.
> 
> A few friends of mine love Case Studio. I've seen it in action and I think
> it may be worth a check:
> 
> www.casestudio.com/
> 
> 
> Massimo Foti
> DW tools: http://www.massimocorner.com
> CF tools:  http://www.olimpo.ch/tmt/
> 

~|
Logware: a new and convenient web-based time tracking application. Start 
tracking and documenting hours spent on a project or with a client with Logware 
today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190715
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: regex help

2005-01-15 Thread Umer Farooq
NP..

ya.. it should work out just fine.. as you already have the single 
tag replace code below.. and original will make things faster.. if you 
gota do it over lot of code..



Ewok wrote:
> Sweet nice job! Works great. I only needed to replace the tags one at a time
> though (just [b] not [b][/b]) the way I have my array set up for the
> available tags
> 
> Bbtag[1] = "[b]|";
> Bbtag[2] = "[/b]|";
> Bbtag[3] = "[i]|";
> Bbtag[4] = "[/i]|";
> Etc...
> Etc...
> 
> Slight change and it works great.
> str = rereplace(str, "(\[b\])(?!((?!\[code\]).)*?\[/code\])", "", "ALL");
> 
> I'll probably change my array and use your original as long as it doesn’t
> give me a fit on tags without closing tags smileys, [hr] etc... Thanks
> again. Nice job!
> 
> 
> -Original Message-
> From: Umer Farooq [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, January 15, 2005 9:41 PM
> To: CF-Talk
> Subject: Re: regex help
> 
> Err.. the pre points to  it should be [pre].. fixed one below..
> 
> (\[b\]([Aa-zZ0-9\s]*)\[/b\])(?!((?!\[pre\]).)*?\[/pre\])
> 


-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice ***NEW AS OF 01/05***
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190614
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Database RAID Config w/Client Variables

2005-01-15 Thread Umer Farooq
Or you can just grab two boxes.. as a good dell box (from outlet) with 
7X140GB(10K) dual etc.. etc.. costs around $4300..

but the setup described below does sound sweet.. mu..


Pete Ruckelshaus wrote:
> Wow, that's one serious database server.  How many transactions per
> minute/hour/day/whatever will you be getting?
> 
> Personally, I think you're putting all your eggs in one basket.  I
> would guess that server is going to cost you around $20k?  I would
> instead get a pair of identically configured boxes, probably dual
> Xeons with 2-4GB RAM.  Have the drives RAID5, which I think you can do
> with 3 drives.  Use 10k drives, since the servers will be doing the
> database I/O to the DAS unit I'm going to mention in a second, if
> possible have another standalone small 15K drive in the box to use for
> pagefile.  Then get a DAS (direct attach storage) unit like an EMC,
> fiberchannel RAID (get a FC card in the servers), to use as your data
> "drive" that is common to both of your database servers (which will be
> operating in failover mode).  If you've got a little budget left, also
> get a less expensive NAS box that you will use to offload your
> transaction logs to so you aren't filling your expensive DAS with that
> sort of data.
> 
> In the end, it MIGHT cost a touch more than the server you mentioned
> in your post, but you'll have greater redundancy and flexibility, and
> chances are you'd have better performance.
> 
> Pete
> 
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190613
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: regex help

2005-01-15 Thread Umer Farooq
Err.. the pre points to  it should be [pre].. fixed one below..

(\[b\]([Aa-zZ0-9\s]*)\[/b\])(?!((?!\[pre\]).)*?\[/pre\])

Umer Farooq wrote:
> The following regex should do the trick..
> 
>  "(\[b\]([Aa-zZ0-9\s]*)\[\/b\])(?!((?!).)*?<\/pre>)", "\2", 
> "ALL")>
> 
> note the backrefrence "\2" is to ([Aa-zZ0-9\s]*).. do not use the "dot" 
> notation in there.
> 
> --
> Regards
> 
> Ewok wrote:
> 
>>This is a tough one...
>>
>>It's an old bbml parser I wrote a while back and im trying to modify it a
>>little.
>>
>>I want to search through the string and replace all instances of [b] with
>> UNLESS it falls between [pre] and [/pre]
>>
>>I just can't seem to get it right.
>>
>>Replace [b] with  except when it starts with [code]* and ends with
>>*[/code]
>>
>>Even that sentence was hard to write at 4 in the morning ZZ
>>
>>
>>
>>
> 
> 

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice ***NEW AS OF 01/05***
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
 Save $10 Download ZoneAlarm Security Suite 
http://www.houseoffusion.com/banners/view.cfm?bannerid=66

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190608
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Database RAID Config w/Client Variables

2005-01-15 Thread Umer Farooq
Hi,

I've always gone with option 1.. listed below..

 > Main DB = 4+1 parity RAID 5
 > Main DB tlog = 1+1 mirrored RAID 1


however I never store client variables in DB as it's a very high 
overhead (atleast for me). but incase I had to.. I went with MySQL on 
diffrent box.

--
Regards

Matt Wisdom wrote:
> I realize that the reader doesn't have all of the info for my situation, and
> that there are ways to verify true bottlenecks in a databaes system with
> Perf Mon and other tools that I will address when I can. That said, I'm
> hoping that others can share their experiences if they've been down this
> path. Here is my situation:
> 
> I have one DB server that will host my main site DB and the CFSessions DB
> that is created by the CF Servers to use database-based client variables. I
> would like to maximize performance of the database but I am unsure as to the
> best starting point for allocating hard drives to raid volumes. Client
> variables get moderate usage, although the data contained within is not
> mission critical. The MainDB gets relatively heavy usage, mostly reads. The
> system looks like this:
> 
> SQL Server 2000
> 10 drive raid
> system memory maxed out
> Fast CPUs
> 
> The database files look like this:
> 
> Main DB
> Main DB Translog
> CF Sessions DB
> CF Sessions DB Tlog
> 
> What RAID config would you use for the databases?
> 
> Main DB = 4+1 parity RAID 5
> Main DB tlog = 1+1 mirrored RAID 1
> CF Sessions DB = 1
> CF Sessions DB tlog = 1
> Hot spare = 1
> 
> or splitting the drives based on sequential vs non-sequential reads:
> 
> Main DB and CFSessions DB = 6+1 parity RAID 5
> Main DB tlog CF Sessions DB tlog = 1+1 mirrored RAID 1
> Hot spare = 1
> 
> or something else??
> 
> How important is (battery backed) write cache for the raid? The main
> database doesn't write very much, but the CFSessions DB should be writing
> every pageload. Would you use this?
> 
> Thanks very much in advance,
> Matt
> 
> 
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190607
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: regex help

2005-01-15 Thread Umer Farooq
The following regex should do the trick..

).)*?<\/pre>)", "\2", 
"ALL")>

note the backrefrence "\2" is to ([Aa-zZ0-9\s]*).. do not use the "dot" 
notation in there.

--
Regards

Ewok wrote:
> This is a tough one...
> 
> It's an old bbml parser I wrote a while back and im trying to modify it a
> little.
> 
> I want to search through the string and replace all instances of [b] with
>  UNLESS it falls between [pre] and [/pre]
> 
> I just can't seem to get it right.
> 
> Replace [b] with  except when it starts with [code]* and ends with
> *[/code]
> 
> Even that sentence was hard to write at 4 in the morning ZZ
> 
> 
> 
> 

-- 
Umer Farooq
Octadyne Systems
+1 (519) 489-1119 voice ***NEW AS OF 01/05***
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190606
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Can cfmail scale?

2004-12-20 Thread Umer Farooq
No.. just single and the backup(enterprise only)

Whitepaper on the performance.. the hardware used in it.. from todays.. 
standard is nothing.. my desktop is 3x better :-).. but gives you an 
idea.. of the power..

http://www.macromedia.com/software/coldfusion/whitepapers/pdf/6_1/cfmx61_performancebrief.pdf


--
Regards,
Farooq

Victor Moore wrote:
> I have read the article and that's the reason I thought that CFMX
> might work. Can multiple email servers be specified or just the one
> (and backup) in CFadmin?
> 
> What will be a decent hardware platform to support this? Are there any
> white papers on this?
> 
> Thanks
> Victor
> 
> On Mon, 20 Dec 2004 13:18:33 -0500, Umer Farooq <[EMAIL PROTECTED]> wrote:
> 
>>Yes. No problem.
>>
>>However the bottleneck most likly won't be CFMX but your mail server.
>>
>>Make sure to check off.. "Maintain connection to SMTP server"
>>
>>--
>>Regards,
>>Farooq
>>
>>Victor Moore wrote:
>>
>>>Hi,
>>>
>>>I was wondering if CFMX 6.1 Enterprise can be used as a platform for
>>>relative large number of emails to be sent in a short period of time.
>>>This is not for spamming but to notify customers if the service they
>>>had subscribed to is being disrupted. They estimate the need to send
>>>up to 120K emails in 5-10 min.
>>>Can this be done with a CF only solution or another approach is needed.
>>>
>>>Thanks
>>>Victor
>>>
>>>
>>
>>
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188299
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Can cfmail scale?

2004-12-20 Thread Umer Farooq
Yes. No problem.

However the bottleneck most likly won't be CFMX but your mail server.

Make sure to check off.. "Maintain connection to SMTP server"

--
Regards,
Farooq

Victor Moore wrote:
> Hi,
> 
> I was wondering if CFMX 6.1 Enterprise can be used as a platform for
> relative large number of emails to be sent in a short period of time.
> This is not for spamming but to notify customers if the service they
> had subscribed to is being disrupted. They estimate the need to send
> up to 120K emails in 5-10 min.
> Can this be done with a CF only solution or another approach is needed.
> 
> Thanks
> Victor
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188291
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: time to cluster, I thinkL

2004-12-20 Thread Umer Farooq
Just my two cents..

We currently run couple of sites that do about.. constant 7Mbps on 
single CPU 3GB RAM CFMX Pro Server. The system crahses out at around 
18-20Mbps (days after Thanksgiving)

DB is on a seperate box and seperate nic..

When doing cost estimates keep in mind the cost for upgrades to the 
firewall.. .. just updated.. to Cisco Pix 100Mbps and RackSpace is 
charging extra $360.00 month.. (on top of $250 before)

For dedicated hosting I higly recommend RackSpace.. nice tech 
support and good turnaround on updates and new installs.


You can also look into moving images and static content off the 
system.. might free up some resources..

For going to load balancing there is no magic number.. I've seen 
some application run at 75Mbps through output.. (MOD Perl - Cache - 
SharedMem - Custom Compiled Apache at 2048 users) and seen others crash 
at 1mbps..

Clean up the code.. off put as much processing to the DB as you can..

use StoredProcs, Cfqueryparam.. use good coding practice.. etc.. etc..


--
Regards
Farooq

Emmet McGovern wrote:
> Thanks... I always wondered.  I own a couple of hi traffic travel portals
> for our area and was hesitant to give advertising space up for something
> like that.
> 
> e
> 
> -Original Message-
> From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] 
> Sent: Monday, December 20, 2004 12:18 PM
> To: CF-Talk
> Subject: RE: time to cluster, I thinkL
> 
> With a lot of traffic (At least for my website), it practically pays for
> dedicated hosting.
> 



~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188287
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Mail Server Software

2004-12-14 Thread Umer Farooq
My personal choice for Win.. is the IPSwitch IMail.. very easy to use.. 
setup.. etc.. and has pretty much all the features..

For *NIX.. my personal choice is PostFix with Courier IMAP (you can go 
UW IMAP also)

Infact we switched from iMail to postfix.. in 99..

For spam Spamassassin or Barracuda Spam Firewall..


Mark Leder wrote:
> Hi all,
>  
> Just looking for opinions here.
>  
> What do you recommend (and your customer like) for pre-packaged server based
> email messaging software (like iMail, Smartermail, sendMail etc). Could be
> either Win or Unix/Linux based. Would need to have webmail access and the
> ability for end users to connect via pop or imap using standard email
> clients (Outlook, OE, Eudora, etc).
>  
> Also, are there third party server based products that you like and are
> effective for filtering spam? 
>  
> Thanks,
> Mark
> 
> 
> 
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187614
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Server Time/Date

2004-12-14 Thread Umer Farooq
Yes. Sync the time with NTP.. public time server list

http://ntp.isc.org/bin/view/Servers/WebHome

Andrew Grosset wrote:
> Can the time/date on a server be relied upon?
> 
> I'm thinking of an application which relies on an accurate offset from GMT 
> and what would be the concequences if upon a server restart the offset had 
> changed...
> 
> As I am not aware of what exactly happens during a restart of the server and 
> how the Date/Time is reset I thought I'd ask here.
> 
> all comments welcome,
> 
> Andrew.
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187519
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: reReplace()

2004-12-13 Thread Umer Farooq
its a backreference.. to (#chr(10)##chr(13)#)

following page will explain better then I can.
http://www.regular-expressions.info/brackets.html


Tony Weeg wrote:
> thank you umer...
> 
> now, what does the \1 mean in the 3rd parameter?
> 
> thanks.
> tony
> 
> 
> On Mon, 13 Dec 2004 19:02:10 -0500, Umer Farooq <[EMAIL PROTECTED]> wrote:
> 
>>reReplace(string,'(#chr(10)##chr(13)#)|(#chr(10)#|#chr(13)#|#chr(32)#)','\1','all'
>>
>>Tony Weeg wrote:
>>
>>>so this reads:
>>>
>>>reReplace(string,'#chr(10)#|#chr(13)#|#chr(32)#','','all'
>>>
>>>replace all 10's 13's and 32's regardless of anything
>>>
>>>is there a way to say, dont remove where you find a (couplet)
>>>
>>>#chr(10)##chr(13)#
>>>
>>>just where you find either that arent together?
>>>
>>
>>-- 
>>Umer Farooq
>>Octadyne Systems
>>[EMAIL PROTECTED]
>>+1 (519) 772-5424 voice
>>+1 (519) 635-2795 mobile
>>+1 (208) 275-3824 fax
>>
>>LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com
>>
>>WARNING: --- The information contained in
>>this document and attachments is confidential and intended only for the
>>person(s) named above. If you are not the  intended recipient you are
>>hereby notified that any disclosure, copying, distribution, or any other
>>use of the information is strictly prohibited.  If you have received
>>this document by mistake, please notify the sender immediately and
>>destroy this document and attachments without making any copy of any kind.
>>
>>
> 
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187498
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: reReplace()

2004-12-13 Thread Umer Farooq
reReplace(string,'(#chr(10)##chr(13)#)|(#chr(10)#|#chr(13)#|#chr(32)#)','\1','all'

Tony Weeg wrote:
> so this reads:
> 
> reReplace(string,'#chr(10)#|#chr(13)#|#chr(32)#','','all'
> 
> replace all 10's 13's and 32's regardless of anything
> 
> is there a way to say, dont remove where you find a (couplet)
> 
> #chr(10)##chr(13)#
> 
> just where you find either that arent together?
> 

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187486
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: odd.. cfoutput group and cfloop over query

2004-12-13 Thread Umer Farooq
Thanks for clarification...

Did not find any posts.. matching my request.. so posted..

just a FYI.. nested loops over queries worked fine for me.. in MX6.1.. 
infact I still have 2 systems without the 6.1 updater applied.. on which 
I tested the code.. however I think this point has been discussed 101X 
on this list.. so there goes 102 times.. :-)


--
Regards,

Pascal Peters wrote:
> This has always been like this (and must have been discussed a 100x on
> this list). When you have nested loops over queries (it doesn't matter
> if you are using cfoutput or cfloop), coldfusion looses the reference to
> the first query when looping the second. This means that you can't drop
> the prefix (which you shouldn't in the first place) and that
> q1.currentRow will always return 1 (and q1.column will always return the
> value from the first record. You have already found the solution for
> that problem: set the value to a variable before the second loop.
> 
> If you have a lot of fields from the first query to access in the second
> loop, just save the currentRow in a variable and use array notation for
> the first query.
> 
> 
>   
>   
> 
> do something
>       
>   
> 
> 
> Pascal
> 
> 
>>-Original Message-
>>From: Umer Farooq [mailto:[EMAIL PROTECTED]
>>Sent: 10 December 2004 02:54
>>To: CF-Talk
>>Subject: odd.. cfoutput group and cfloop over query
>>
>>Hi,
>>
>>I'm getting this odd.. problem.. when doing..
>>
>>
>>   
>> 
>>  SOMETHING
>> 
>>   
>>
>>
>>in the loop QUERYONE.XID will keep the first row value.
>>
>>if I remove the prefix from XID.. it gives me an error saying its
>>not defined. Which is odd by itself.
>>
>>I can get away from the error by setting a variable.. before the
>>loop and then compare on it..
>>
>>Any thoughts on this..
> 
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187348
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: help with some form validation

2004-12-09 Thread Umer Farooq
^([0-9]{3})-([0-9]{4})

dave wrote:
> i need a field to be like 123-1234 only
> anyone got anything good off hand?
> 
> tia 
> 
> 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186948
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


odd.. cfoutput group and cfloop over query

2004-12-09 Thread Umer Farooq
Hi,

I'm getting this odd.. problem.. when doing..


   
 
  SOMETHING
 
   


in the loop QUERYONE.XID will keep the first row value.

if I remove the prefix from XID.. it gives me an error saying its 
not defined. Which is odd by itself.

I can get away from the error by setting a variable.. before the 
loop and then compare on it..

Any thoughts on this..

Regards,
-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186934
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 6.1 - java.lang.NullPointerException

2004-12-08 Thread Umer Farooq
Errr..

this is still driving me crazy. It has gotten worse..
now I don't even get the full error message.. just.. the following

Error
java.lang.NullPointerException

And now seeing.. messages.. saying client variables need to be enabled.. 
on each request.. but they are enabled.. to fix it.. I have to refresh 
the modification time on Application.cfm and the problem goes away..


any suggestions..



Martin Parry wrote:
> Based on the stack trace I would certainly start with disabling "global
> updates" in the client variables settings.
> 
> This has caused me quite a few problems with SQL server before as it
> chomps up disk space by filling the log file at an alarming rate.
> 
> Hope it works.
> 
> Martin Parry
> Macromedia Certified Developer
> http://www.BeetrootStreet.co.uk
> 
> -Original Message-
> From: Umer Farooq [mailto:[EMAIL PROTECTED] 
> Sent: 29 November 2004 20:32
> To: CF-Talk
> Subject: CFMX 6.1 - java.lang.NullPointerException
> 
> Hi,
> 
> If any one could help on this.. it is much appreciated..
> 
> We are seeing this error happen.. about every four hours.. and then 
> we have to restart CFMX.
> 
> Redhat AS 2.1
> Apache 2.0.50
> CFMX 6.1 (83762)
> 
> 
> java.lang.NullPointerException
>  at coldfusion.runtime.Cast._double(Cast.java:510)
>  at coldfusion.runtime.Cast._int(Cast.java:322)
>  at 
> coldfusion.runtime.ClientScope.UpdateGlobals(ClientScope.java:112)
> 
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186648
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Hiding an action statement

2004-12-06 Thread Umer Farooq
Hi,

   You can not encrypt the domain.. you can always hide it by pointing 
to a IP(if not on Virtual Hosting).. or by getting an another domain 
name.. that has no meaning.. like what GAP does for their mailings.. 
www.m0.net..

   For query strings.. etc.. you can use.. URLEncrypt and URLDecrypt UDF 
from CFLIB.org

   you can go a step further and use URLCheckHash and URLHash.. for 
higher security..


Terry Troxel wrote:
> What is the best way to hide/encrypt/disguise a url in an action statement
> in CF5,
> especially if they view source?
> 
> I have a client with multiple sites with a submit form that points to ONE
> site which
> we would like to not display. The submittion goes there, appends a record to
> a database
> and generates a cfmail then does a cflocate back to the original site.
> 
> I would appreciate any suggestions.
> 
> Terry
> 
> 
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186416
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: Browser Stats (stirring the pot)

2004-12-06 Thread Umer Farooq
> Bug #1:
> 
> If I create a simple page to open a window, and close the parent Firefox
> behaves very bad, that's all I need to say Not browser specific
> code!!
> 

Not able to produce the problem.. likly something wrong with the 
JavaScript event listner.  again.. not sure as to how you are closing 
the window.. programmatically or trying to figure out if user closed the 
window..


> Bug#2:
> 
> The problem is with the URL in the style attribute, the image does not
> appear at all.

The width of the background image.. in ur code is set to 1PX..

> Bug #3:
> We have and Iframe that contains 2 more Iframes, and will not display in
> Firefox, this is also not IE specific code!!

Again.. not able to reproduce the problem.. I created.. three level deep 
  iframes..

> And as far as IE specific code goes, we are using a lot of it to deliver
> content management and Business Logic that we can not deliver in
> Firefox, Opera or even Netscape.

With no alternative to IE for a long time.. I understand this.. and if 
you have Windows specific code.. nothing much can be done about it.. as 
90% of the users are still on IE/Win.. and if you can add the 
functionality to place your app higher up then the others.. might as 
well do it.. but with FireFox going at the pace it is.. I wouldn't wana 
be left without support for it..

> If you would like me to send you the images for you to look at then I am
> more than happy to send an HTML email for you to see the problems at
> hand.

Sure.. email address below..

> But the point is that if our application can't run in anything else than
> a browser then we are creating more usability for MS products, that's
> the point I was trying to make.


Yes.. for a long time to come IE will still rule the web.. But as 
developers we can stop the push to MS products by adding cross 
compatibility.. and with FireFox, it just makes the whole thing lot 
easier.. to implement.. sell to higher up.. etc.. etc.. For me I'm just 
glad I don't have to do compatibility test with NN4.7 and NN6.0.. :-)

Regards,
-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com




~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186415
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: Browser Stats (stirring the pot)

2004-12-06 Thread Umer Farooq
Andrew Scott wrote:
> First of all there is no Var variable so I don't know what you're
> talking about, secondly the problem with the CSS is the actual url style
> and nothing else.

First off.. the initial comment was regarding this.. "BUG #1"

 >>Lets talk about opening another window and trying to close the main
 >>window first, this under IE will give focus to our new window under
 >>Firefox it keeps the old window focused even if you try to focus the
 >>other window with the browser, which means that even the Javascript is
 >>not even compatible! Bug #1.
 >>

Now.. like I said.. I don't know how you are openning windows.. or 
closing..

> Did you actually try the code, or just make the assumption?

Yes.. I did try the code.. hence the reference.. to cursor='hand'.. 
prop.. being only IE thing.. also.. what CSS url style issue are you 
referring to..


> Thridly IFrame is a w3c standard, and even that doesn't work. I have
> also looked at many other things that we use in IE that are needed for
> our application that we can tie down to one application across the
> entire organisation, what that means is we have an application that is
> fully configurable easy to create and less work for us with our
> framework and we can create anything within minutes.

Again.. I'm not aware of any IFrame parts.. that are in w3c standard and 
not supported by FireFox.. if you know of any.. plz enlighten me to 
them.. as I would like to know.. I think.. this from one of your 
previous posts sums it all up..

 > delivering our application to the end user, we use specific
 > IE only functionality and it works.



Regards,
-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186411
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: Browser Stats (stirring the pot)

2004-12-06 Thread Umer Farooq
Okay...

  For the first one... I'm assuming that... you got a var in js that is 
holding the new window... if its in the function that calls 
openwindow... try declaring it outside...  since I don't have ur code... 
can't really comment on the exact cause..

  For #2... In the CSS spec there is no attribute.. "hand" for cursor.. 
try using "pointer".. I think that was the only problem there.. if wrong 
plz correct me

  http://www.w3schools.com/css/pr_class_cursor.asp

for #3 don't have the screen shot so can't comment.

 From the looks of it.. most of these are issues were IE has gone away 
from the standards.. or you have coded just for one browser.. which in 
my opinion defeats the purpose of having a web app.. anyhow if you were 
to compare browsers on standard compliance.. FireFox will win.. and with 
any application.. the closely you follow standards.. the better off you 
are in the long run.. As eventually ev1 comes back to the standards.


--
Regards,

Andrew Scott wrote:
>  
> Hmmm,
>  
> Lets talk about opening another window and trying to close the main
> window first, this under IE will give focus to our new window under
> Firefox it keeps the old window focused even if you try to focus the
> other window with the browser, which means that even the Javascript is
> not even compatible! Bug #1.
>  
> Bug #2, in the following bit of code this will not work under Firefox.
>  onmouseover="this.style.cursor = 'hand';"
> onclick="window.location.replace('nuMenu.cfm?MenuGroupCode=ARMASTER');">
>  
> Bug #3, As you can see by the attached images that it will not display
> IFrames correctly either.
>  
> Internet Explorer was used
> 
>  
> FireFox used to browse
> 
>  

>  

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186409
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: valid e-mail addresses

2004-12-06 Thread Umer Farooq
You can also checkout.. isEmail UDF at www.cflib.org


Spike wrote:
> It's actually fiendishly difficult to write a regex, or even a set of 
> regexes to fully validate the syntax of an email address.
> 
> Once you've done that you still have the problem of people entering 
> emails like [EMAIL PROTECTED] which is almost certainly not their own.
> 
> The most reliable approach is usually to send an email that requires the 
> recipient to take some action to verify that they received the message.
> 
> Beyond that, I typically use a very simple regex something like 
> "[EMAIL PROTECTED]" to validate that the basic syntax could be an email 
> address.
> 
> Spike
> 


-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186400
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: Browser Stats (stirring the pot)

2004-12-06 Thread Umer Farooq
Ahh.. yes.. tab browsing.. do you find ur self hitting.. Ctrl+T in IE.. 
:-) I do it all the time..

Duncan I Loxton wrote:
> Real Estate site in Australia:
> 
> 92% IE in November of 18 million visits. Down from 93.19% in October
> of 17 million visits.
> 
> We administer this site and all of IT have moved over to Firefox - I
> do all my browsing in it, because its got a warm fuzzy feeling and it
> works. It uses proper standards, has tabbed browsing (love it) and the
> developer toolbar helps a load for looking for faults etc.
> 
> 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186399
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOT: Browser Stats (stirring the pot)

2004-12-06 Thread Umer Farooq
Im now very curious to know what "certian" Iframe and javascript you are 
doing that.. can't be done in FireFox.. a hint plz.. i'm dying to know..


Andrew Scott wrote:
> I ran our intranet system we designed for a client, and it did not work
> under firefox 1.0... I would love to show you but we use iframes heavily
> with certain javascript and IE features to create a complex intranet
> application. Firefox can't even provide the first step to our login
> approach.
> 

> 

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com



~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186393
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 6.1 - java.lang.NullPointerException

2004-11-30 Thread Umer Farooq
Hi Matt,

Thanks for the reply.

Can't find any thing wrong with client scope.. not calling any 
custom tags.. on that server..

it worked before the MX6.1 updater.. now this error comes.. and will 
eventually eat up all the mem and I get OutOFMem errors.. and gota 
restart MX.

--
Regards

Matthew Drayer wrote:
> The stack trace does seem to report an issue with casting a particular 
> variable as a "double" datatype, and which is somehow related to the update 
> of data in the client scope.
> 
> In my experience, however, NullPointerException errors are triggered by 
> invalid custom tag references.  ie, the filename is 
> "generate_main_navbar.cfm", but you call it as 
> .  Might be another thing to look for if you 
> can't determine the client-scope issue.
> 
> Matt
> 
> Matthew Drayer


-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185770
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX 6.1 - java.lang.NullPointerException

2004-11-30 Thread Umer Farooq
Hi Martin,

  Thanks for the reply..

  this error is just driving me nuts.. will disable gloabl updates.. 
and reports results.. back..

Regards,


Martin Parry wrote:
> Based on the stack trace I would certainly start with disabling "global
> updates" in the client variables settings.
> 
> This has caused me quite a few problems with SQL server before as it
> chomps up disk space by filling the log file at an alarming rate.
> 
> Hope it works.
> 
> Martin Parry
> Macromedia Certified Developer
> http://www.BeetrootStreet.co.uk
> 


-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185769
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: MX Methodologies (Mach2?? Fusebox??)

2004-11-29 Thread Umer Farooq
> Exact, there is nothing more procedural than a Web application:

Don't you mean a web page.. when.. someone talks to me about a web 
application.. i'm more thinking in terms of web services..

> There is ONE request to a server for a page from a user, and ONE answer from 
> the server to the user.

Hmm.. how about RemoteScripting (JSRS), Flash..

> Now, if some want absolutely to see Objects or even EVENTS there, well good 
> for them if it can make them happy ;-)
> But the fact is that any CF page is nothing but ONE call to a procedure, and 
> a "CF application" is nothing else than a bunch of pages.

I think.. again you are reffering to a CF Web Site.. CF applications.. 
are little diffrent then.. CF powered web sites/pages..



-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185630
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


CFMX 6.1 - java.lang.NullPointerException

2004-11-29 Thread Umer Farooq
Hi,

If any one could help on this.. it is much appreciated..

We are seeing this error happen.. about every four hours.. and then 
we have to restart CFMX.

Redhat AS 2.1
Apache 2.0.50
CFMX 6.1 (83762)


java.lang.NullPointerException
 at coldfusion.runtime.Cast._double(Cast.java:510)
 at coldfusion.runtime.Cast._int(Cast.java:322)
 at 
coldfusion.runtime.ClientScope.UpdateGlobals(ClientScope.java:112)
 at 
coldfusion.runtime.ClientScopeServiceImpl.UpdateGlobals(ClientScopeServiceImpl.java:224)
 at 
coldfusion.runtime.ClientScopeServiceImpl.PersistClientVariablesForRequest(ClientScopeServiceImpl.java:191)
 at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:32)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
 at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
 at 
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
 at coldfusion.CfmServlet.service(CfmServlet.java:105)
 at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
 at 
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
 at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:249)
 at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
 at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
 at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:348)
 at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451)
 at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:294)
 at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185582
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sessions, losing CFID/CFTOKEN

2004-11-24 Thread Umer Farooq
Are you positive  that there is no session sharing going on..

its possible that two users are sharing sessions.. and one logs out.. 
kicking the other one out..



Ken Dunnington wrote:
> Thanks for the tip, but I'm afraid that wasn't it either (though
> that's good to know for the future!)
> 
> I'm at the point now where the machines that lose session info are
> losing it immediately after it's set! In other words, if I add an item
> to a shopping cart, as soon as the user clicks off the View Cart page,
> the session is gone. Yet, my workstation (and several others around
> the office) don't have this problem. I checked to see if cookies were
> enabled (they are) and I've tried several combinations of
> cfapplication tag properties.
> 
> This whole thing has me baffled. I know I shouldn't be mucking around
> this much just to get session management working properly.
> 
> On Tue, 23 Nov 2004 15:27:43 -0500, Sandy Clark <[EMAIL PROTECTED]> wrote:
> 
>>The set domain cookies issue losing CFID/CFTOKEN is an IE issue.
>>
>>I can't find the knowledge base item, but I remember I ran into this a long
>>time ago.  Try it in another "better" browser.  If it works there, you still
>>have the issue, but at least you know what is causing it.
>>
>>


-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax


LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com


WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185284
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Somewhat OT: sending formatted faxes

2004-10-26 Thread Umer Farooq
We use HTMLDOC (HTML > PDF) and HylaFax 4.2.0 (www.hylafax.org)

all open source.. :-) and pretty easy to setup.. customize and manage.



James Sullivan wrote:
> We want the ability to send dynamically-created faxes to our clients featuring 
> text-formatting, images, etc.
> 
> Obviously, CF can dynamically create documents in a variety of formats (HTML, but 
> also Word Docs, PDFs, etc using custom tags).  The problem is finding a way to send 
> these documents, with all the formatting preserved, via fax.  Our mail server has an 
> email-to-fax feature, but it seems to be very limited in what it can send as far as 
> content goes: just text and a few basic attachments (bmp, txt, etc).
> 
> Does anyone know of a solution that would allow us to send a dynamically-created 
> faxes with text formatting, images, table layouts, etc.
> 
> --
> Jim Sullivan 
> Programmer/Designer 
> New Media Publishing, Inc. 
> (631) 863-0170  ext. 54 
> 
> This e-mail and its attachments are for use by the intended recipient(s) only and 
> may contain legally privileged and/or confidential information. If you are not the 
> intended recipient(s) or if you receive this email in error please notify the sender 
> and permanently delete this email and any copies and printouts thereof. 
> 
> --
> 
> 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=35

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182633
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: site size utility?

2004-10-25 Thread Umer Farooq
Wouldn't these utils inflate the size of the site.. if the site got lot 
of dynamic content..

Also.. when you can get a 1GB of space for 9.95 a month.. I hope.. the 
web space is not that huge of a factor in your pricing..

[EMAIL PROTECTED] wrote:
> Cant you whack it?  You could whack it then just look at the folder
> properties for the size.
> 
> There are utilities that will go through an entire site following all the
> links downloading all the results.  We have used these tools in the past
> when a competitor wont release a clients files.
> 
> Here is one. There are free apps too, this is 50 bucks.
> http://www.bluesquirrel.com/products/whacker/
> 
> David
> 
> 
> 
> 
> 
> -Original Message-
> From: Ray Champagne [mailto:[EMAIL PROTECTED]
> Sent: Monday, October 25, 2004 2:59 PM
> To: CF-Talk
> Subject: site size utility?
> 
> 
> Does anyone know if there is a utility out there to find out the estimated
> total size of a site without having the FTP info?
> 
> We are trying to estimate hosting prices for a potential client, and the
> size of the site will be a determining factor.
> 
> GO SOX!!!  (and Patriots!)
> 
> Thanks,
> 
> Ray
> 
> =
> Ray Champagne - Senior Application Developer
> CrystalVision Web Site Design and Internet Services
> 603.433.9559
> www.crystalvision.org
> =
> 
> The information contained in this transmission (including any attached
> files) is CONFIDENTIAL and is intended only for the person(s) named
> above. If you received this transmission in error, please delete it
> from your system and notify us immediately. If you are not an intended
> recipient, please note that any use or dissemination of the information
> contained in this transmission (including any attached files) and the
> copying, printing, or retransmission of that information is strictly
> prohibited. You can notify us by return email or by phone at 603.433.9559.
> Thank you.
> 
> 
> 
> 
> 
> 

~|
Get the mailserver that powers this list at 
http://www.houseoffusion.com/banners/view.cfm?bannerid=17

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182549
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Survey Creation Application

2004-10-25 Thread Umer Farooq
for building of the questions... look into the db layout of Miva 
Marchent attributes.. and where attribute templates could represent.. 
pages..


also for some inspiration.. checkout.. http://www.inviewsion.com/








Jason Lemahieu wrote:
> We're looking to make our own application that lets people create surveys - similar 
> to Zoomerang (ww.zoomerang.com).  We've played around with possible DB schemas and 
> it just seems to get more and more complicated.  I was wondering if any of you have 
> tried implementing such an application, or if you would otherwise have any insight 
> into the matter.
> 
> It would need to let people do stuff like:
>  - Add, edit, delete, move questions
>  - Allow lots of different types of questions
>  (ex: multiple choice, open ended, rating)
>  - Arrange the questions across pages
>  - Distribute the survey via links in emails, and track which response came from 
> which email address
>  - Generate reports based on the data collected
> 
> 
> We currently use Zoomerang - and think it works pretty well. We are looking for an 
> alternative in-house solution so that we can put surveys into existing webpage 
> templates.  Thanks.
> 
> 

~|
The annual ColdFusion User Conference is being held Sat 6/26 - Sun 6/27/04 8am-5pm in 
the Washington DC Area. 
http://www.houseoffusion.com/banners/view.cfm?bannerid=44

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182547
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: AOL and spam filtering

2004-10-24 Thread Umer Farooq
Hey..

   If the error is not resolved.. checkout the following..

   http://postmaster.aol.com/guidelines/sender.html

   Also if you run your own SMTP server.. good idea to sign up.. for AOL 
white list.. so you get a report every time.. someone reports.. one of 
your messages as spam.. and track down the cause of the problem..

   Its important that you try to get on the white list as during the 
approval process you will work out any kinks..



[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
> Thank you all for your suggestions. I have implemented both the mailer-id and 
> x-mailer and will see what happens.
> 
> Strange thing is that I am not sending large amounts. Each day only about 850 emails 
> are being sent and out of that only a percentage is AOL.
> 
> Sebastian
> 
> 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=36

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182466
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: HTMLDOC - I'm looking for...

2004-10-20 Thread Umer Farooq
ya.. sorry just noticed that..

i have.. 1.8.8 bin from easySW.. if you want that.. I can send u that 
ASAP..

I'm also compiling.. 1.8.23 win right now.. as soon as FLTK is 
downloaded.. and can send.. hopefully FLTK is the last dep problem..



Marco Antonio C. Santos wrote:
> Thanx Umer but htmldoc.org haves only source code files and I don't
> have C++ to compile that... htmldoc.exe 1.8.23 previous version was
> open source. But now moved to paid services.
> 
> Cheers
> 
> Marco
> 
> 
> On Wed, 20 Oct 2004 15:20:50 -0400, Umer Farooq <[EMAIL PROTECTED]> wrote:
> 
>>http://www.htmldoc.org/
>>
>>
>>
>>Marco Antonio C. Santos wrote:
>>
>>>Yesterday open source, HTMLDOC now is paid. Anyone have ghtmldoc.exe
>>>previous version(1.8.23) to send for me?
>>>
>>>Thanx
>>>
>>>
>>
>>
> 
> 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=36

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182079
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: HTMLDOC - I'm looking for...

2004-10-20 Thread Umer Farooq
http://www.htmldoc.org/

Marco Antonio C. Santos wrote:
> Yesterday open source, HTMLDOC now is paid. Anyone have ghtmldoc.exe
> previous version(1.8.23) to send for me?
> 
> Thanx
> 
> 

~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182073
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SQL Deadlock

2004-10-20 Thread Umer Farooq
Deadlocks are hard to trouble shoot..

don't overly use  with select... i.e espcially.. when 
doing Select MAX(ID) instead use..  following in the insert..

   SELECT @@IDENTITY AS whateverFiledName;
   set nocount off

   

also for updates and deletes.. try... WITH(ROWLOCK)

Ryan Duckworth wrote:
> Does anyone have any ideas on how to prevent/handle database deadlock?
> 
> Error Executing Database Query. [Macromedia][SQLServer JDBC
> Driver][SQLServer]Transaction (Process ID 132) was deadlocked on lock
> resources with another process and has been chosen as the deadlock
> victim. Rerun the transaction.
> 
> We get a message similar to the one above about once a week.
> 
> My guess is that the deadlock occurred b/c the same row was attempting
> to be read and written to at the same time.
> 
> 
> Ryan Duckworth 
> Macromedia ColdFusion Certified Professional
> Uhlig Communications 
> 10983 Granada Lane 
> Overland Park, KS 66211
> (913) 754-4272
> 
> 
> 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=34

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182065
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Query string in db field

2004-10-20 Thread Umer Farooq
Sample code-- no error checking.. bunch of other ways to do it also..







 http://www.houseoffusion.com/banners/view.cfm?bannerid=44

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182059
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CSS and Debugging

2004-10-19 Thread Umer Farooq
It depends on what kind of data you need to present. If you need to do 
lot of columns then stick with tables .. as column layout is in CSS3 and 
heck even doing a three column layout in the current browsers CSS2.0- is 
a pain.. not all browser support CSS2 fully..

Good place to look for nice css sites.. and comments on how they over 
came challenges..

www.cssvault.com
www.stylegala.com
www.weeklystandards.com  (note to take full advantage of css.. you need 
to learn the css hacks.. this site will list out all the hacks 
implemented for each site..  )

nice resources..

www.mezblue.com
www.htmldog.com (very nice quick reference for XHTML and CSS )



Mike Kear wrote:
> Andy it's a whole 'nother discipline in web development.  Happily it
> is something you can ease into, and dont have to learn all at once.  
> And every step you take learning how CSS can work, will make your life
> coding pages in ColdFusion easier.
> 
> The best thing I can suggest is togo look at the web standards
> group site, and perhaps join their mailing list.  Very knowledgeable
> and friendly folks.  The list isnt quite as high volume as CF-TALK so
> it's not too much traffic to handle.   The site has lots of helpful
> stuff, including beginners stuff.   Plenty of how-tos on almost
> everything you'd want to do, or if not directly there, there are links
> to somewhere else that does show you how to do what you're wanting to
> do.
> 
> It's at www.webstandardsgroup.org.   Tell 'em Mike Kear said to come by.
> 
> 
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> AFP Webworks
> http://afpwebworks.com
> .com,.net,.org domains from AUD$20/Year
> 
> 
> On Tue, 19 Oct 2004 17:46:46 -0500, Andy Ousterhout
> <[EMAIL PROTECTED]> wrote:
> 
>>Shannon:
>>I'd like to start using CSS for tables, but don't know how.  Can you provide
>>a sample table?
>>
>>Andy
>>
> 
> 
> 

~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=38

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:181963
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: GODaddy SSL certs

2004-10-15 Thread Umer Farooq
http://www.securityspace.com/s_survey/sdata/200409/certca.html

break down of market share.. I don't see ValiCert (go daddy) in there...

SSLReivew.com doesn't exist no more.. but checkout some of there pages 
on WayBackMachine.. http://www.archive.org/web/web.php

We use GeoTrust QuickSSL ($45.00/yr).. used to be with thawte but once 
veriSign took over.. kissed them goodby..

If you need a SSL seal.. then go with a certificate that provides one.. 
(GeoT QuickSSL Pro, VeriSign, Comodo.. etc..) stay away from vendors 
that relay on Baltimore Tech Root.. in the past they seem to have had 
many problems..

Damien McKenna wrote:
> Tim Laureska wrote:
> 
>  >Yeah, I know what you said in the previous email... but where do you
>  >check stats like that ... is there a web site that tracks this or how
>  >would you determine their "stats" other than relying on what they say in
>  >their web site?
>  >  
>  >
> I don't know of any off hand.  I would say that if a base install of IE
> 5.0 (e.g. Windows 2000) can't support them then you might consider
> something else.
> -- 
> *Damien McKenna* - Web Developer - [EMAIL PROTECTED]
> 
> The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
> "Nothing endures but change." - Heraclitus
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: How to prevent multiple logins

2004-10-15 Thread Umer Farooq
At login store the users IP . ... and keep checking the IP against the 
one stored... on each request..

if it changes... log the current user... out and say.. someone else from 
another IP has logged in...

Burns, John D wrote:
> I think the biggest decision that the person who asked will have to make
> is the business logic for when a session that is currently logged in is
> no longer logged in.  For instance:
> 
> If User A logs in at 10AM and is given a 60 minute session and is
> somehow flagged as logged in (either in DB or app structure).  The user
> does 1 quick thing on the site and then closes the browser at 10:05AM.
> This user gets up and moves to another computer and attempts to log into
> the site.  He won't be allowed until 11AM if you do it this way.  Since
> there's no real-time checking if the client is still there (unless you
> use flash remoting or a "ping" type iframe - which I would say is
> overkill) then you can't really handle this type of situation without
> sacrificing, that once someone logs in, no one can log in with that
> account until the session expires (even the person who started the
> session...unless they're on the same machine and have a cookie or
> something).
> 
> John
> 
> -Original Message-
> From: Matt Robertson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, October 14, 2004 4:15 PM
> To: CF-Talk
> Subject: Re: How to prevent multiple logins
> 
> Barney Boisvert wrote:
>  > Add a two fields to your user table: isLoggedIn and lastAccessDate.
> 
> Or do it in an application structure and save yourself the db overhead.
> I use/maintain a 2d array to show a bunch of stuff as part of a Who's On
> app.  When a user logs in their user ID is planted in their who's on
> 'record', (which defaults to zero if they are not logged in and just a
> visitor).
> 
> Then when anyone tries to log in the array is checked to see if they are
> already logged in.  Steps are taken from there.  Those steps can vary
> depending on your application (i.e. force the first user off the system,
> deny the second user the login, kick them both off, alert the sysadmin
> etc.)
> 
> You can find the Who's On code in the link below.  Just add a few array
> elements to the code in the article to do what you need.
> 
> http://mysecretbase.com/How_To_Build_A_Who_Is_On_Application_With_ColdFu
> sion.cfm
> 
> And when you're done you also get a Who's On app as a byproduct. Just
> build something to loop over the array and display its contents.
> 
> 
> I'm bringing out AccessMonger Pro in a couple of days and it does all
> this stuff and gee whiz a whole lot more.
> 
> 
> --
> --Matt Robertson--
> President, Janitor
> MSB Designs, Inc.
> mysecretbase.com
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: flashblog Translation plz

2004-10-12 Thread Umer Farooq
try the fish..

http://babelfish.altavista.com/

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Trading Card Database Application

2004-10-12 Thread Umer Farooq
The query is just horrific..

use structs for checkboxes.. where.. the key is the value.. there are 
other ways to do it.. but.. I think this be easier to understand down 
the road..


 colorCodes = StructNew();
 StructInsert(colorCodes, "W", "White");
 StructInsert(colorCodes, "U", "Blue");
 StructInsert(colorCodes, "B", "black");
 


    then loop over the collection to build your check boxes.. and name 
the checkbox.. one thing..

    then you can simpley do...

     AND tblColor.colorCode IN (CHECKBOXNAME)

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: cfinclude or cflocation

2004-10-12 Thread Umer Farooq
What do you mean by code.. you can't include CFML code using "http://"
but if you need just the HTML output.. grab it using cfhttp and then 
#cfhttp.filecontent#

Robert Orlini wrote:
> I have a slight problem. I need to include code from one page into 
> another. I tried cfinclude but it won't allow a logical path using 
> "http:\\..."
> 
> CFlocation sends me right to the url bypassing the page.
> 
> I need something similar to what is found in html using an insert to put 
> in a portion of another page only this is for .cfm pages.
> 
> Any suggestions or other tags I could use?
> 
> Thx.
> 
> Robert O.

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Web services in FB3

2004-10-12 Thread Umer Farooq
Hi,

    Sorry.. I don't get exactly what you are trying to do.. are you 
trying to create your current FB3 app as a web service... can't you just 
wrap the web service in the FB3..

    Or just include ur fbx_settings.cfm file in the webservice app.

Kyle McNamara wrote:
> Hello,
> 
> I am trying to create a web service that requires may of the same global 
> vars as my FB3 app that it pertains to. Rather than trying to recreate 
> all the vars, I would like to somehow have people call it remotely from 
> other apps, using syntax that would invoke it from inside the FB3 
> architecture.
> 
> Do you know if that is that possible?
> 
> Thank you!
> 
> the_tree
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Outputting Structure Key Problem

2004-10-11 Thread Umer Farooq
hmm.. just dump out score..

 to see whats in there..

[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
>  >#Score["Sleep"]#
> 
> Tried that and got the following errror:
> 
> Element Sleep is undefined in a CFML structure referenced as part of an 
> _expression_
> 
> Interestingly if I hard code the structure with
> 
> 
> 

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Here you.. go.. returns.. orderId, date, customerId, customer name,
paymentReceived, amount due (per order)... ,

    SELECT orders.orderId, order.orderDate, orders.customerID,
   customers.customerName, customerPayment.PaymentReceived
   (SELECT sum(unitPrice * quantity)
  FROM orderDetails
 WHERE orderDetails.orderID = orders.orderID ) AS amountDue,

  FROM (orders LEFT JOIN customerPayment
  ON customerPayment.orderID = orders.orderID)
   LEFT JOIN customer
  ON customer.customerID = orders.customerID

Nomad wrote:

>  > > The Database tables and fields are:
>  > > Orders (orderid,customerid,Orderdate)
>  > > OrderDetails(Orderid,UnitPrice,productid,quantity)
>  > > Customer(Customerid, customername, address)
>  > > CustomerPayments(orderid,PaymentReceived)
>  > >
>  > > My purpose is to track the account status of the customer for each 
> order
>  > > they have placed.
>  > >
>  > > The desired format of result obtained from the query is like this:
>  > >
>  > > Customername, Orderid, Orderdate,AmountReceived, AmountDue(this is a
>  > > calculated column).

-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Hi,

   Here you.. go.. returns.. orderId, date, customerId, customer name, 
paymentReceived, amount due per order... ,

   SELECT orders.orderId, order.orderDate, orders.customerID,
  customers.customerName, customerPayment.PaymentReceived
  (SELECT sum(unitPrice * quantity)
 FROM orderDetails
WHERE orderDetails.orderID = orders.orderID ) AS amountDue,

 FROM (orders LEFT JOIN customerPayment
 ON customerPayment.orderID = orders.orderID)
  LEFT JOIN customer
 ON customer.customerID = orders.customerID

Nomad wrote:
> Hi Josh,
> Thanks for your reply.
> Your query is similar to what I have been trying.
> 
> My query is:
> 
> SELECT
> customer.Customercompanyname,
> orders.Orderid,
> orders.Orderdate,
> (Orderdetails.unitprice * Orderdetails.quantity) As OrderValue,
> CustomerPayments.PRIG As PaymentsReceived
> 
> FROM  Orders , OrderDetails, Customer, CustomerPayments
> WHERE 0=0
> AND Orderdetails.orderid=Orders.orderid
> AND CustomerPayments.orderid=Orders.orderid
> AND Orders.customerid=Customer.customerid
> 
> The result is something like this which is wrong:
> Notice the repetition of the OrderId field. Ideally there should be one row
> for each order.
> 
> Customer Name   OrderID, OrderDate, OrderValue   Payments
> Received.
> 
> Company 1 1 11/10/2004    55
> 500
> Company 1 1 11/10/2004  31898
> 500
> Company 1 1 11/10/20045678
> 500
> Company5  4 11/10/20042320
> 400
> Company5  4 11/10/20044740
> 400
> Company5  4 11/10/2004  26400
> 400
> Company5  4 11/10/2004544600
> 400
> - Original Message -
> From: "Josh" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, October 11, 2004 6:07 PM
> Subject: Re: SQL Query Help Please.
> 
>  > Here's a start, though you'll have to explain your tables and your
>  > calculations further.
>  >
>  > SELECT
>  > c.Customername,
>  > a.Orderid,
>  > a.Orderdate,
>  > ( where is this being stored? AmountReceived maybe this could be
>  > d.PaymentReceived  AS AmountReceived ? ),
>  > ( put your formula for calculating AmountDue here, possibly a subquery )
>  > FROM  Orders a, OrderDetails b, Customer c, CustomerPayments d
>  > WHERE a.orderid = b.orderid
>  > AND a.orderid = d.orderid
>  > AND c.customerid = a.customerid
>  >
>  > Hope that helps some...
>  >
>  > I would recomend the SQL book by forta, or just look online for a good
>  > tutorial.
>  >
>  > -Josh
>  >
>  > --
>  > Exciteworks, Inc
>  > Expert Hosting for less!
>  > *Ask for a free 30 day trial!*
>  > http://exciteworks.com
>  >
>  > Plans starting at -$12.95- including MS SQL Server!
>  >
>  >
>  >
>  >
>  > Nomad wrote:
>  >
>  > > Hello!
>  > >
>  > > I am trying to create a join of four tables to get data from a db 
> in the
>  > > format I want.
>  > >
>  > > The Database tables and fields are:
>  > > Orders (orderid,customerid,Orderdate)
>  > > OrderDetails(Orderid,UnitPrice,productid,quantity)
>  > > Customer(Customerid, customername, address)
>  > > CustomerPayments(orderid,PaymentReceived)
>  > >
>  > > My purpose is to track the account status of the customer for each 
> order
>  > > they have placed.
>  > >
>  > > The desired format of result obtained from the query is like this:
>  > >
>  > > Customername, Orderid, Orderdate,AmountReceived, AmountDue(this is a
>  > > calculated column).
>  > >
>  > > I am using Access 2000 with CFusion.
>  > >
>  > > 1.)Can someone  help me with the SQL syntax please. I have tried 
> several
>  > > permutations and combinations of sql (to the best of my knowledge) but
>  > > without success.
>  > > 2.) Can someone please suggest a good book on SQL syntax that will 
> clear
>  > > thing up for me.
>  > >
>  > > Many Thanks in Advance,
>  > >
>  > > Mark Taylor
>  > > Admin
>  > >
>  >
>  >
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: ot: css ?

2004-10-11 Thread Umer Farooq
are you sure.. as this works.. in IE and Firefox..




	<br>
	 body { background: #FF url(/images/spacer.gif) repeat-x; }<br>
	

dave wrote:
> i had already tried something similiar with no success
> :(
> 
> -- Original Message ------
> From: Umer Farooq <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date:  Mon, 11 Oct 2004 18:29:46 -0400
> 
>  >just define a new css body tag for that page.. with transparent image as
>  >background...  CSS takes the last defined setting...
>  >
>  >dave wrote:
>  >> is there a way to override a body tag?
>  >>
>  >> what the problem is that i have 1 page that i want a white bg on but in
>  >> my css i have an image bg in my body tag and i need the css file in
>  >> there and dont really want to add another for validation purposes.
>  >>
>  >> so again, is there a way to be able to over ride the css files settings?
>  >> thank ya
>  >>
>  >
>  >
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SQL Query Help Please.

2004-10-11 Thread Umer Farooq
Hi,

http://www.techonthenet.com/access/queries/joins1.htm

For beginner I would suggest.. SAMS SQL in 21 Days..

and Google.. :-)

Nomad wrote:
> Hello!
> 
> I am trying to create a join of four tables to get data from a db in the
> format I want.
> 
> The Database tables and fields are:
> Orders (orderid,customerid,Orderdate)
> OrderDetails(Orderid,UnitPrice,productid,quantity)
> Customer(Customerid, customername, address)
> CustomerPayments(orderid,PaymentReceived)
> 
> My purpose is to track the account status of the customer for each order
> they have placed.
> 
> The desired format of result obtained from the query is like this:
> 
> Customername, Orderid, Orderdate,AmountReceived, AmountDue(this is a
> calculated column).
> 
> I am using Access 2000 with CFusion.
> 
> 1.)Can someone  help me with the SQL syntax please. I have tried several
> permutations and combinations of sql (to the best of my knowledge) but
> without success.
> 2.) Can someone please suggest a good book on SQL syntax that will clear
> thing up for me.
> 
> Many Thanks in Advance,
> 
> Mark Taylor
> Admin
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: ot: css ?

2004-10-11 Thread Umer Farooq
just define a new css body tag for that page.. with transparent image as 
background...  CSS takes the last defined setting...

dave wrote:
> is there a way to override a body tag?
> 
> what the problem is that i have 1 page that i want a white bg on but in 
> my css i have an image bg in my body tag and i need the css file in 
> there and dont really want to add another for validation purposes.
> 
> so again, is there a way to be able to over ride the css files settings?
> thank ya
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Slightly OT, load testing CF Applications.

2004-10-11 Thread Umer Farooq
too bad OpenSTA has only win GUI..

try Jmeter

http://jakarta.apache.org/jmeter/

If you need to get a hold of... system resource data.. etc.. etc.. try 
Nagios (windows plugins are available) and have the output put into a 
DB.. and then use CF to graph.. and it won't taint your results.. I 
think the plugins take.. max 300K mem..

If you are going with Commercial ware.. I would only recommend that 
course.. if you need to graph out rest of your network performance.. and 
other hardware...

Regards,
-- 
Umer Farooq
Octadyne Systems
[EMAIL PROTECTED]
+1 (519) 772-5424 voice
+1 (519) 635-2795 mobile
+1 (208) 275-3824 fax

LOOKING FOR A USED CAR IN IOWA VISIT: http://www.IowaMotors.com

WARNING: --- The information contained in 
this document and attachments is confidential and intended only for the 
person(s) named above. If you are not the  intended recipient you are 
hereby notified that any disclosure, copying, distribution, or any other 
use of the information is strictly prohibited.  If you have received 
this document by mistake, please notify the sender immediately and 
destroy this document and attachments without making any copy of any kind.

Spike wrote:
> I've used OpenSTA in the past with pretty good results.
> 
> If you want to do some really heavy duty testing and can afford the
> licenses there are a couple that I'm aware of.
> 
> When I used to teach the ColdFusion Performance Tuning class a few years
> back we used Segue SilkPerformer. It was one of the best tools on the
> market at the time and had a feature set similar to OpenSTA. I haven't
> used it since about 2000 though and can't comment on what they've done
> with the prodcut since then.
> 
> I've also heard good things about Mercury LoadRunner, but I haven't used
> it myself.
> 
> Spike
> 
> Craig Dudley wrote:
>  > What do people you to test their CF Applications/Sites?
>  >
>  > Any advice on what to avoid/try?
>  >
>  > Thanks
>  >
>  > Craig Dudley
>  > Senior Developer
>  > Netstep Corporate Communications Ltd
>  > Direct Line: +44(0) 1422 319712
>  > Phone: +44(0) 1422 200308
>  > Fax: +44(0) 1422 200306
>  > e-mail: [EMAIL PROTECTED]
>  > MS Messenger: [EMAIL PROTECTED]
>  > www: www.netstep.co.uk
>  >
>  >
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFHTTP 408 Request Time-Out

2004-10-11 Thread Umer Farooq
Hi,

   For some reason... out of the blue.. CFHTTP would start giving out 408 Request Time-Outs to A https URL... I have tested the URL with wget it works fine.. and telnet to the port 443... can connect from diffrent MX6.1 servers... and I can connect to other SSL URLs fine from the same server.. but not the URL where I get the 408 Request Time-Out untill I restart cold fusion server... any suggestions are very much appreciated.. 

   RedHat As 2.1
   Apache 2.0.50
   CFMX 6,1,0,63958
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]