Re: multiple sites with cf 8 and iis

2007-08-21 Thread James Holmes
Assuming you are on windows (a safe bet if you're using IIS) it's typically in c:\windows\system32\drivers\etc\hosts. On 8/21/07, Matthew Smith [EMAIL PROTECTED] wrote: Where is etc/hosts? Thanks for the help. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent:

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Adrian Lynch
On my machine it's in C:\WINDOWS\system32\drivers\etc. And talking of the hosts file. Does anyone have any ideas about setting up a hosts file like system for a LAN without running a DNS server? I'd like a centralised way of defining IP/address mappings that's as simple as the hosts file. This

Coldfusion Service

2007-08-21 Thread vishnu prasad
Hi All I need an help we have done 2 project in coldfusion so far , I told about the getting more coldfusion project in our company. But they are asking me for some presentation or Fact that should tell Coldfusion will be better than .Net or Java or PHP wrt Cost / Implemenation / Time taken

Re: Unit Testing Code Coverage

2007-08-21 Thread Dinner
On 8/20/07, Rich wrote: Is anyone aware of a code coverage tool for CF unit tests? If not, how are the rest of you handling unit test coverage (if at all)? The CFUnit view in CFEclipse is cool, and there's also the TPTP JUnit auto-generated stuff, but honestly, selenium has been the most

RE: Formatting a Date for MSSQL

2007-08-21 Thread Hareni Venkatramanan
Hi Rob, I tried something like this and it worked fine for me: Here is my stored proc in sql 2000 which inserts a datetime value into a table testdate: CREATE procedure updatedate @startdate datetime as begin insert into testdate values (@startdate); end GO And here is the coldfusion code

RE: The Dreaded Vista!

2007-08-21 Thread Robert Rawlins - Think Blue
Haha, Thanks guys, I will agree that Vista is excellent stuff, I used a windows xp system box the other and god did I miss my vista. Now, back to this IIS stuff, I've reinstall IIS and I'm now in a worse position than before :-D I get the same error message, but this time I'm unable to add the

Re: ajax cfgrid and custom buttons

2007-08-21 Thread Jim Rising
anyone have any additional input on this? Jim Rising Sr. Cold Fusion Developer ICGLink Inc. www.icglink.com ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: ajax cfgrid and custom buttons

2007-08-21 Thread Raymond Camden
Did you put single quotes around accountants? You need to pass the _name_, not the actual instance. So if my grid was named 'ray' and the column was 'howsexy', I'd do: foo = Coldfusion.getElementValue('ray', 'howsexy') On 8/20/07, Jim Rising [EMAIL PROTECTED] wrote: thanks ray! burning the

Re: Creating a File Upload Web Service

2007-08-21 Thread Shane Trahan
So there is no other way to create a CF upload service without sending the file through HTTP as a multi-part request? I have tried everything, such as having a cfargument named File and type as any or binary and it just dies on me.. I would presume any language/application that could create

Re: Formatting a Date for MSSQL

2007-08-21 Thread Rob Parkhill
Thanks for the suggestions. I thought that the dbvarname actually did something. My variables were in a different order in the stored proc... So a quick change in order fixed it. Sometimes its just a monday! Thanks again, Rob On 8/21/07, Hareni Venkatramanan [EMAIL PROTECTED] wrote: Hi

Configuring a CF Cluster

2007-08-21 Thread Peterson, Chris
When setting up a CF cluster with multiple front-end web servers behind a load balancer, and multiple CF-Enterprise instances on other servers in a CF-cluster, do I have to have a license for CF on the web / font end servers? They would only be running the j-run connector, and I would think that

Re: Configuring a CF Cluster

2007-08-21 Thread Andy Allan
You only need licenses for the machines running ColdFusion, i.e. the application servers. Your web servers don't need to be licensed. On your web servers you simply run the web server config tool, wsconfig.jar, which you can copy over from one of your application servers. Andy On 21/08/07,

Re: Configuring a CF Cluster

2007-08-21 Thread Brian Kotek
If you are unsure I'd strongly urge you to call Adobe rather than rely on someone replying to a public list like this. (Not to slight Andy, since he is probably right, but for a question like this it would be much better to get the answer from an official source). On 8/21/07, Peterson, Chris

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
And talking of the hosts file. Does anyone have any ideas about setting up a hosts file like system for a LAN without running a DNS server? I'd like a centralised way of defining IP/address mappings that's as simple as the hosts file. Any server that resolves name lookups would be,

RE: Configuring a CF Cluster

2007-08-21 Thread Dave Watts
When setting up a CF cluster with multiple front- end web servers behind a load balancer, and multiple CF-Enterprise instances on other servers in a CF-cluster, do I have to have a license for CF on the web / font end servers? They would only be running the j-run connector, and I would

Re: Creating a File Upload Web Service

2007-08-21 Thread Ian Skinner
So there is no other way to create a CF upload service without sending the file through HTTP as a multi-part request? I have tried everything, such as having a cfargument named File and type as any or binary and it just dies on me.. Define what you mean by file upload. CF runs on the server

RE: Creating a File Upload Web Service

2007-08-21 Thread Dave Watts
So there is no other way to create a CF upload service without sending the file through HTTP as a multi-part request? No. Dave Watts, CTO, Fig Leaf Software ~| Get the answers you are looking for on the ColdFusion Labs

RE: Configuring a CF Cluster

2007-08-21 Thread Peterson, Chris
I found a tech note article that instructs how to manually configure IIS / Apache on a web-only server to connect to Cf installed on another server: http://kb.adobe.com/selfservice/viewContent.do?externalId=18c56b2bslice Id=2 I think that does the trick for me, if Adobe is telling me how to do

RE: Unit Testing Code Coverage

2007-08-21 Thread Rich
What do you mean by code coverage? Per the wonders of wikipedia: Code coverage is a measure used in software testing. It describes the degree to which the source code of a program has been tested. I have just joined a new team, and we have quite a bit of legacy code for older products and we

Re: Unit Testing Code Coverage

2007-08-21 Thread Christopher Vigliotti
@dinner: code coverage determines the percentage of your code that is actually being unit tested. For example, you could have a function in a component that has a test case written for it, but the function could contain if/elself/else statements, switch statements or other conditional logic that

Re: Creating a File Upload Web Service

2007-08-21 Thread Shane Trahan
Ideally I would like to have a client with VB software that will use a CF based web service. The VB client software will pass the date, an identifier, and a file to the webservice. The webservice would return the server filename to the user indicating that the file has been saved to the

CF Administrator weekly scheduled task

2007-08-21 Thread t.o.
hi, does anyone know how to set a weekly shceduled task in CF Administrator? i mean... i have *frequency* witch can be set to 1time-recurring-daily - i choose weekly, but what is the correct syntax to schedule my operation every monday at 6:00? thanks, T.

Re: Creating a File Upload Web Service

2007-08-21 Thread JediHomer
You could potentially convert the local file (with the VB app) to a base64 representation of it, which is then a string to pass to the CF webservice, and have that convert it to a binary object to save on the server? On 21/08/07, Shane Trahan [EMAIL PROTECTED] wrote: Ideally I would like to

Re: Creating a File Upload Web Service

2007-08-21 Thread Ian Skinner
Shane Trahan wrote: Ideally I would like to have a client with VB software that will use a CF based web service. The VB client software will pass the date, an identifier, and a file to the webservice. The webservice would return the server filename to the user indicating that the file has

CF Administrator weekly scheduled task

2007-08-21 Thread t.o.
hi, does anyone know how to set a weekly shceduled task in CF Administrator? i mean... i have *frequency* witch can be set to 1time-recurring-daily - i choose weekly, but what is the correct syntax to schedule my operation every monday at 6:00? thanks, T.

Re: CF Administrator weekly scheduled task

2007-08-21 Thread Ian Skinner
t.o. wrote: hi, does anyone know how to set a weekly shceduled task in CF Administrator? i mean... i have *frequency* witch can be set to 1time-recurring-daily - i choose weekly, but what is the correct syntax to schedule my operation every monday at 6:00? thanks, T. You set it to run

Re: Unit Testing Code Coverage

2007-08-21 Thread John Paul Ashenfelter
On 8/20/07, Rich [EMAIL PROTECTED] wrote: Is anyone aware of a code coverage tool for CF unit tests? If not, how are the rest of you handling unit test coverage (if at all)? I get this question a lot since I'm doing a lot of automation/testing consulting in the CF world and the answer is no.

RE: Unit Testing Code Coverage

2007-08-21 Thread Rich
It looks as though I am going to have to develop a solution for our needs, but I will see if my company will allow me to release our efforts into the public domain. ~| ColdFusion 8 - Build next generation apps today, with easy

Re: Creating a File Upload Web Service

2007-08-21 Thread Shane Trahan
Ideally I would like to have a client with VB software that will use a CF based web service. The VB client software will pass the date, an identifier, and a file to the webservice. The webservice would return the server filename to the user indicating that the file has been saved to the

Re: CF Administrator weekly scheduled task

2007-08-21 Thread Raymond Camden
You could use weekly and do a start date of one particular Monday. I'm not quite sure that will work though. Another way is to just do it daily, and in your code, check the day of the week. In theory this means you are wasting time 6 days a week, but as it will take about 1 ms to determine the day

RE: date UN-mask

2007-08-21 Thread Brad Wood
Are you sure? The first line of the page says, It allows for formatting (date - text), parsing (text - date), and normalization. The text - date is what looked promising. I don't much about Java, so maybe text has another meaning there. ~Brad -Original Message- From: Paul Hastings

Re: cfimage resize running very slow

2007-08-21 Thread Zaphod Beeblebrox
I'm curious what cfimage uses behind the scenes. If it's the java image libraries, I wouldn't be surprised with the speed issues as I had trouble with them when used as a cfobject. On 8/20/07, Steve Sequenzia [EMAIL PROTECTED] wrote: I am trying to figure out if it is normal for the cfimage

RE: Coldfusion Service

2007-08-21 Thread tripura k
Hello Vishnuprasad I am new to cold fusion and I am not knowing from where I should start and how to learn and how to use java files in coldfusion.. can yo suggest me best link or best book or anything else Subject: Coldfusion Service From: [EMAIL PROTECTED] To: cf-talk@houseoffusion.com

RE: cfimage resize running very slow

2007-08-21 Thread Brad Wood
According to what I have heard. The cfimage tag is much more than just the standard Java image manipulation libraries out there. It also incorporates a large amount of proprietary Adobe code which was re-written in Java just for Scorpio. (I'm thinking photoshop...) Personally I think that

Re: Creating a File Upload Web Service

2007-08-21 Thread Claude Schneegans
So there is no other way to create a CF upload service without sending the file through HTTP as a multi-part request? Not what I am aware of. But what so evil about HTTP requests? -- ___ REUSE CODE! Use custom tags; See

CFExchangeMail action=getattachments - MSX error code 501

2007-08-21 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Am having problems getting attachments from Exchange inbox emails. I can get the list of items in teh inbox with no problems, but when I then loop over that query to do an ACTION=GetAttachments CF throws an error: ERROR PERFORMING THE ACTION. EXCHANGE ERROR CODE : 501 I've googled the error

Re: date UN-mask

2007-08-21 Thread Paul Hastings
Brad Wood wrote: Are you sure? The first line of the page says, It allows for formatting (date - text), parsing (text - date), and normalization. The text - date is what looked promising. as i said before, your text isn't in any locale formatting i know about (and i guess i shouldn't have

RE: date UN-mask

2007-08-21 Thread Brad Wood
Wait, I think I get what you might be saying... It ONLY does the text to date stuff IF your text happens to be formatted properly to one of the locale formats? So it's not really a free-for-all, you provide the mask and completely random string of numbers conversion. It's more like you provide

Re: date UN-mask

2007-08-21 Thread Paul Hastings
Brad Wood wrote: random string of numbers conversion. It's more like you provide a string of text which conforms to a specific local formatting, and THEN it can be formatted into a date object. more or less but look at the code...

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
Something else to consider. If you use the imageResize function instead of the cfimage tag, you are given options to control the quality/speed of the transfer. ColdFusion defaults to best output, slowest performance, which I think is a good choice, but you may want to play with the options to see

RE: Coldfusion 8 hosting

2007-08-21 Thread Andy Matthews
I spoke to the product manager and the QA manager for CF8 and they seemed to indicate that they're certain enough of CF8 that they might not release an update. Just passing on their words. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Monday, August 20, 2007 7:42 PM

SQL Reporting Services

2007-08-21 Thread Lee
OK I have done all my home work and searched the archives of this list and the Internet. I need to find a simple example of a CF page calling a SQL Server 2005 Reporting Services report. I'm fairly certain that it requires a Web service. Are there any examples out there? Is anyone doing this?

Re: date UN-mask

2007-08-21 Thread Janet MacKay
So it's not really a free-for-all, you provide the mask and completely random string of numbers conversion. No, its not completely free-for-all. IIRC you can supply a pattern, locale, etc. which gives you some flexibility. Using the correct settings you should be able to parse numeric date

RE: Coldfusion 8 hosting

2007-08-21 Thread Andy Matthews
I spoke to them at CFUnited by the way. Forgot to add that tidbit. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 11:25 AM To: CF-Talk Subject: RE: Coldfusion 8 hosting I spoke to the product manager and the QA manager for CF8 and they

Re: date UN-mask

2007-08-21 Thread Paul Hastings
Janet MacKay wrote: No, its not completely free-for-all. IIRC you can supply a pattern, locale, etc. which gives you some flexibility. Using the correct settings you should be able to parse numeric date strings in formats such as MMDD,MMDD, MMDD, d.M., etc. but you have to

CFIF Pissing me off

2007-08-21 Thread Bruce Sorge
Morning all. I have this select list: select name=Shift cfif (GetScheduleInfoRet.Shift) IS B option value=B selected=selectedBreakfast/option option value=LLunch/option cfelseif (GetScheduleInfoRet.Shift) IS L

Please disregard CFIF issue

2007-08-21 Thread Bruce Sorge
Stupid browser was caching the results. Cleared the cache and it is working fine now. Bruce ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and

Re: CFIF Pissing me off

2007-08-21 Thread Crow T. Robot
I think it is selected=true, or you can just use option value=B selected. Not sure if that is your problem, but that's what jumped out at me. Also, be careful when you test in FF, as it tends to cache your form selections even upon a ctrl-refresh. That has gotten me quite a few times. I usually

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Matthew Smith
I have modified my host file as follows: -- 127.0.0.1 localhost www_redhotkitties_com localhost/www_redhotkitties_com -- When I browse to http://www_redhotkitties_com/, I get Internet Explorer

Re: CFIF Pissing me off

2007-08-21 Thread Gert Franz
You might just use the word selected instead of selected=selected. In both cases HTML finds the keyword selected so it takes the second one. Nothing to do with CFIF... :-) Greetings / GrĂ¼sse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List

Re: CFIF Pissing me off

2007-08-21 Thread Crow T. Robot
Also, what does the page source look like? You can tell which block fired by looking there, and determine if it is really a CF issue or just an html issue. On 8/21/07, Crow T. Robot [EMAIL PROTECTED] wrote: I think it is selected=true, or you can just use option value=B selected. Not sure

Re: cfimage resize running very slow

2007-08-21 Thread Jim Wright
I had done some tests recently to try to determine if I wanted to move some code over to using cfimage...here are some results. I tried to just run these tests with the defaults of each method. This was run on a shared host. Not scientific, but I don't think I will move away from Efflare quite

Re: Please disregard CFIF issue

2007-08-21 Thread Crow T. Robot
Ahhh. On 8/21/07, Bruce Sorge [EMAIL PROTECTED] wrote: Stupid browser was caching the results. Cleared the cache and it is working fine now. Bruce ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8

Re: CFIF Pissing me off

2007-08-21 Thread Claude Schneegans
The problem is not with CFIF but with your HTML. The SELECTED attribute in a SELECT takes no value: option value=B selected -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

Re: CFIF Pissing me off

2007-08-21 Thread Mik Muller
BTW, Lots of code for just two options. Try this: select name=Shift cfloop list=Breakfast,Lunch,Dinner,Supper,Midnight Snack,Elevenses,Afternoon Snack,Purge index=ii option value=#left(ii,1)# cfif GetScheduleInfoRet.Shift eq left(ii,1)selected=selected/cfif#ii#/option /cfloop /select At

Re: CFIF Pissing me off

2007-08-21 Thread Dan Blickensderfer
Bruce, It seems a lot of work... I have always used the following for selecting an option. select name=Shift option value=B cfif (GetScheduleInfoRet.Shift) IS Bselected/cfifBreakfast/option option value=L cfif (GetScheduleInfoRet.Shift) IS Lselected/cfifLunch/option /select Thanks, Dan

Re: CFIF Pissing me off

2007-08-21 Thread Mik Muller
At 12:51 PM 8/21/2007, Crow T. Robot wrote: Also, be careful when you test in FF, as it tends to cache your form selections even upon a ctrl-refresh. That has gotten me quite a few times. I usually test these things in IE just to be safe. I noticed that too. I just click to another page and

Re: date UN-mask

2007-08-21 Thread Janet MacKay
but you have to *know* all this before hand (and if you do, you can parse it yourself w/out resorting to java). Of course. I was simply talking about the usage of the class. Obviously, whichever method you use you must to know the string format, whether you prefer to parse it using string

RE: CFIF Pissing me off

2007-08-21 Thread Bruce Sorge
That is exactly what was happening. Using FF to view the work and I forgot that FF does this. Bruce -Original Message- From: Mik Muller Sent: Tuesday, August 21, 2007 10:04 AM To: CF-Talk Subject: Re: CFIF Pissing me off At 12:51 PM 8/21/2007, Crow T. Robot wrote: Also, be careful when

Re: CFIF Pissing me off

2007-08-21 Thread Charlie Griefer
On 8/21/07, Claude Schneegans [EMAIL PROTECTED] wrote: The problem is not with CFIF but with your HTML. The SELECTED attribute in a SELECT takes no value: option value=B selected it does in XHTML. selected=selected is valid XHTML. the shorthand selected is not. -- Charlie Griefer

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
unless you're using a server version of windows, IIS isn't going to serve more than 1 site at a time. BTW, entries in the hosts file would take on this form: 127.0.0.1localhost 127.0.0.1redhotkitties.com Then, in IIS you'd set up multiple sites and have them use the host header to

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
I have modified my host file as follows: -- 127.0.0.1 localhost www_redhotkitties_com localhost/www_redhotkitties_com -- When I browse to http://www_redhotkitties_com/, I get Internet

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
Again though Jim - you can't just look at speed - but quality of output. Remember that Adobe erred on the side of quality over speed, but lets you change the quality to speed up performance. On 8/21/07, Jim Wright [EMAIL PROTECTED] wrote: I had done some tests recently to try to determine if I

RE: CFIF Pissing me off

2007-08-21 Thread Dave Watts
Yeah, that is the problem with using DWCS3. It installs shit like Selected=Selected. Look at the top line of your HTML document. If it's an XHTML document, then you're getting the right shit. If you choose another DOCTYPE, Dreamweaver will generate valid HTML for that DOCTYPE as well. When

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
unless you're using a server version of windows, IIS isn't going to serve more than 1 site at a time. unless you're using Vista. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

RE: CFIF Pissing me off

2007-08-21 Thread Bruce Sorge
Yeah, that is the problem with using DWCS3. It installs shit like Selected=Selected. I have HS installed, but I cannot find my serial number. Went to the Adobe site to my account, and I guess my products that I bought did not get migrated from when it was MM. Sent them an email and their autobot

RE: CFIF Pissing me off

2007-08-21 Thread Paul Vernon
The problem is not with CFIF but with your HTML. The SELECTED attribute in a SELECT takes no value: option value=B selected It does with XHTML. Just like checkboxes have to be checked=checked :) Paul ~| Download the

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
cool! I had no idea that restriction was lifted for vista. is there a top limit? On 8/21/07, Dave Watts [EMAIL PROTECTED] wrote: unless you're using a server version of windows, IIS isn't going to serve more than 1 site at a time. unless you're using Vista. Dave Watts, CTO, Fig

RE: CFIF Pissing me off

2007-08-21 Thread Bruce Sorge
Got-cha!. Thanks. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 10:33 AM To: CF-Talk Subject: RE: CFIF Pissing me off Yeah, that is the problem with using DWCS3. It installs shit like Selected=Selected. Look at the top line of your HTML

Re: CFIF Pissing me off

2007-08-21 Thread Claude Schneegans
it does in XHTML. selected=selected is valid XHTML. the shorthand selected is not. One more reason I don't use XHTML ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Matthew Smith
Thanks for the help, Dave. What I'm trying to do is somehow be able to access different sites locally. Right now, I have to delete everything from wwwroot, then copy over the files of the site I want to work on. It can be a pain to work on the different sites. Also, Dreamweaver complains that

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
is there a top limit? Not to my knowledge. I haven't run into one yet. 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

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Jochem van Dieten
Adrian Lynch wrote: On my machine it's in C:\WINDOWS\system32\drivers\etc. And talking of the hosts file. Does anyone have any ideas about setting up a hosts file like system for a LAN without running a DNS server? Find somebody that has run servers for over 24 years and they will be able

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Jochem van Dieten
Matthew Smith wrote: I have modified my host file as follows: -- 127.0.0.1 localhost www_redhotkitties_com localhost/www_redhotkitties_com That is not a valid record for a hostfile. A host file performs the function of DNS, nothing more,

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Matthew Smith
Is there a way to use the differing ip addresses(127.0.0.2) so that IIS will use a different root directory? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 12:57 PM To: CF-Talk Subject: Re: multiple sites with cf 8 and iis Matthew

Re: cfimage resize running very slow

2007-08-21 Thread Jim Wright
On 8/21/07, Raymond Camden [EMAIL PROTECTED] wrote: Again though Jim - you can't just look at speed - but quality of output. Remember that Adobe erred on the side of quality over speed, but lets you change the quality to speed up performance. Very true, but if I change the interpolation on

Re: cfimage resize running very slow

2007-08-21 Thread Raymond Camden
Fair enough - I just wanted to make sure you tried those options. On 8/21/07, Jim Wright [EMAIL PROTECTED] wrote: On 8/21/07, Raymond Camden [EMAIL PROTECTED] wrote: Again though Jim - you can't just look at speed - but quality of output. Remember that Adobe erred on the side of quality over

Re: Creating a File Upload Web Service

2007-08-21 Thread Shane Trahan
Jedi; The idea of converting to Base64 seems to have worked beautifully.. In VB I have converted my .Wav files to Base64. Passed that string to the WebService then on the CF side I have converted the string tobinary and saved the file. The actual code in CF looks like this cffile action=write

Text to HTML?

2007-08-21 Thread Paul Vernon
Other than the perl txt2HTML code on sourceforge, I'm struggling to find any code that does this... esp. ColdFusion based. Does anyone know of anything that can do this in CF? It doesn't have to be as complex and full featured as txt2HTML but I'd like it to have a few more features than the

Re: Creating a File Upload Web Service

2007-08-21 Thread Shane Trahan
There is nothing wrong with the HTTP requests.. In other parts of the application that is being written HTTP requests are not used for web services so to stay consistant I wanted to try and figure out a different way to do this.. Hopefully this will work..

RE: Creating a File Upload Web Service

2007-08-21 Thread Dennis Powers
So there is no other way to create a CF upload service without sending the file through HTTP as a multi-part request? Not what I am aware of. But what so evil about HTTP requests? The only other solution I have found is to utilize an FTP applet to perform the upload to an FTP server. FTP is

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
What I'm trying to do is somehow be able to access different sites locally. Right now, I have to delete everything from wwwroot, then copy over the files of the site I want to work on. It can be a pain to work on the different sites. Also, Dreamweaver complains that the local site root

RE: Creating a File Upload Web Service

2007-08-21 Thread Dave Watts
There is nothing wrong with the HTTP requests.. In other parts of the application that is being written HTTP requests are not used for web services so to stay consistant I wanted to try and figure out a different way to do this.. Hopefully this will work.. By definition, HTTP requests

OT: Javascript MouseOver

2007-08-21 Thread Steve LaBadie
I have created a mouse over effect and it works fine. The only problem I am having is that the top= in the below example does not work in Firefox. Are there any ideas to resolve this issue? The window stay at the top instead of coming down 350px. Code: script type=text/javascript !--

RE: Javascript MouseOver

2007-08-21 Thread Robert Harrison
There is a comma missing between left and top. Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or... It must be .

RE: Javascript MouseOver

2007-08-21 Thread Dave Watts
I have created a mouse over effect and it works fine. The only problem I am having is that the top= in the below example does not work in Firefox. Are there any ideas to resolve this issue? The window stay at the top instead of coming down 350px. ... myWin = window.open(,,

Re: fckeditor not under root and image connector

2007-08-21 Thread Matt Robertson
one thing I remember from monkeying with FCKEditor in my own cms... that application.cfm in its folder structure can be safely removed and that solves at least that part of your problem. -- [EMAIL PROTECTED] Janitor, The Robertson Team mysecretbase.com

Re: OT: Javascript MouseOver

2007-08-21 Thread Matt Williams
missing a comma after left=450 ? On 8/21/07, Steve LaBadie [EMAIL PROTECTED] wrote: I have created a mouse over effect and it works fine. The only problem I am having is that the top= in the below example does not work in Firefox. Are there any ideas to resolve this issue? The window stay

Re: Text to HTML?

2007-08-21 Thread Claude Schneegans
I'm struggling to find any code that does this Hmmm... this what? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: lt;CFExchangeMail action=quot;getattachmentsquot;gt; - MSX error code 501

2007-08-21 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
For grins and giggles I changed the HTTPS to be HTTP. I still get the list of email messages back, but now the error when I try to get the first message's attachments has changed to: Requested Exchange resource was not found on the server The LiveDocs for this tag have errors and

RE: Javascript MouseOver

2007-08-21 Thread Steve LaBadie
Duh Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 2:40 PM To: CF-Talk Subject: RE:

RE: Text to HTML?

2007-08-21 Thread Paul Vernon
I'm struggling to find any code that does this Hmmm... this what? I'd have thought the subject said it all... Text to HTML... Anyway, I'm just testing out http://sebduggan.com/CFX_Markdown/ which seems to do the trick for the most part and covers smart quotes into the bargain! Paul

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Matthew Smith
Do I need to uninstall IIS to run apache? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 1:24 PM To: CF-Talk Subject: RE: multiple sites with cf 8 and iis What I'm trying to do is somehow be able to access different sites locally. Right

error with ColdFusion 8 ODBC Agent

2007-08-21 Thread Matthew Smith
I am trying to add a datasource to my new install of CF8 developer edition. When I went to do so in cf admin, the admin said The ColdFusion ODBC Server service is not running or has not been installed. So I figured the service wasn't set to automatic and went into services to start it up. When

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Dave Watts
Do I need to uninstall IIS to run apache? No, but you will want to either configure each web server to listen on different sockets, or turn IIS off when running Apache (and vice versa). Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

Re: CFIF Pissing me off

2007-08-21 Thread Dominic Watson
One more reason I don't use XHTML ;-) I don't see why that is a reason... is selected=selected so bad? With so much wrong with the HTML format, or more precisely with browsers reading it, why rile against a movement towards XML standards? I realise this is off the question - just reading all

RE: Unit Testing Code Coverage

2007-08-21 Thread Jaime Metcher
Given that a step debugger is basically sitting there watching line numbers fly by waiting for a break-point, it seems to me that if the debugger kept a record of those line numbers you'd have a test coverage tool. I did lodge a feature request with the FusionDebug guys, but I have no notion of

RE: Text to HTML?

2007-08-21 Thread Nathan C. Smith
-Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 2:22 PM To: CF-Talk Subject: RE: Text to HTML? I'm struggling to find any code that does this Hmmm... this what? I'd have thought the subject said it all... Text to HTML...

RE: lt;CFExchangeMail action=quot;getattachmentsquot;gt; - MSX error code 501

2007-08-21 Thread Dawson, Michael
Yes, you need the and characters to form a complete message id. Here is an example: cfexchangefilter name=uid value=[EMAIL PROTECTED] du We don't use secured connection on our mail server, so I can't test this problem. However, I do know that it does work using a non-secured connection.

RE: multiple sites with cf 8 and iis

2007-08-21 Thread Matthew Smith
What service do I disable to turn off IIS? Under Internet Information Services, it only allows a restart. Under Computer ManagementServices and ApplicationsServices, I only see IIS Admin, nothing for IIS itself. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent:

  1   2   >