What would cause this wddx message instead of json formatted data?

2009-06-05 Thread Rick Faircloth
Before I get into code, I thought I'd just ask if there is a usual reason why a jquery ajax function (which I have used successfully on other sites) would be returning this mesage in Firebug: Login Successful Instead of the json formatted data I'm expecting? Is is something typical and obvious

Re: (ot) Sending an inline HTML content for email using yahoo

2009-06-05 Thread Don L
Yeah, was asking the question, why the sample HTML code sent via yahoo mail etc. would not display HTML content? Thks. >Are you asking a question? If you are, I'm not sure what you're asking. > >Do you need help sending it? Is it not displaying properly? > >Hi, > >I checked some resources for s

RE: (ot) Sending an inline HTML content for email using yahoo

2009-06-05 Thread Andy Matthews
Are you asking a question? If you are, I'm not sure what you're asking. Do you need help sending it? Is it not displaying properly? -Original Message- From: Don L [mailto:do...@yahoo.com] Sent: Friday, June 05, 2009 4:37 PM To: cf-talk Subject: (ot) Sending an inline HTML content for em

(ot) Sending an inline HTML content for email using yahoo

2009-06-05 Thread Don L
Hi, I checked some resources for sending an inline HTML content via yahoo and other email accounts to no avail, very weird for some simple stuff. no, not cfmail. Have you done anything like that? Tia The inline html code looks like this or my stuff Hi, some fancy content

Re: Generating appopriate transaction IDs

2009-06-05 Thread Dan LeGate
Any aversion to using an auto-increment integer field (if one exists, that is)? I basically use this as a transaction ID in one of my apps. Fawzi Amadu wrote: > I am building a electronic advertisement site and I need to generate > transaction IDs. > Since the page will hopefully be a high vol

RE: Need Regex help for finding and Hyperlinks words in String

2009-06-05 Thread Andy Matthews
Great. Glad to help. I def recommend you learn at least the basics of Regex. It's helpful in a wide range of applications. andy -Original Message- From: Mike Francisco [mailto:cfmike...@gmail.com] Sent: Friday, June 05, 2009 2:53 PM To: cf-talk Subject: RE: Need Regex help for finding

RE: Need Regex help for finding and Hyperlinks words in String

2009-06-05 Thread Mike Francisco
Thanks Andy. That is it. Actually, I did not go very far since I am not that familiar with Regex. I only knew that Regex was the right thing to use. > -Original Message- > From: Andy Matthews [mailto:li...@commadelimited.com] > Sent: Friday, June 05, 2009 12:17 PM > To: cf-talk > Subj

RE: Need Regex help for finding and Hyperlinks words in String

2009-06-05 Thread Andy Matthews
Mike... @\1', 'ALL')> Just curious...how far did you get in your own testing? andy -Original Message- From: Mike Francisco [mailto:cfmike...@gmail.com] Sent: Friday, June 05, 2009 1:46 PM To: cf-talk Subject: Need Regex help for finding and Hyperlinks words in String Happy Frid

Need Regex help for finding and Hyperlinks words in String

2009-06-05 Thread Mike Francisco
Happy Friday everyone. I was hoping if anyone can help me with regex and a UDF. I have a string/paragraph which contains words beginning with a specific character. I'd like to find all those words and then assign a hyperlink URL to them. Example: If the string is: Lorem ipsum dolor sit ame

Re: Moving from CF to Java - redirecting old pages to new ones

2009-06-05 Thread Ryan Letulle
I know someone knows a better way but I have done it in the application.cfm using cfheader statuscode=301, statustext=Moved Permanently then another cfheader name=Location value="new url". First detecting whether it's the page in question of course. -- Ryan LeTulle On Fri, Jun 5, 2009 at 12:22

Moving from CF to Java - redirecting old pages to new ones

2009-06-05 Thread coldfusion . developer
All, We have over 100 cfm pages that we'll need to redirect to a reduced number of new, few jsp pages. Is the best way to do this at the server, IIS level or through the webpage level. I'm thinking, detect all requests globally and if they have a .cfm extension, look up that page in a db and

Re: MS CRM Integration

2009-06-05 Thread John M Bliss
Maybe you could ping this guy to see how he solved his issue: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:58122/sort:1 On Fri, Jun 5, 2009 at 12:09 PM, Michael David wrote: > > Happy Friday to you all > > I have to integrate an existing CF application with Microsoft's

MS CRM Integration

2009-06-05 Thread Michael David
Happy Friday to you all I have to integrate an existing CF application with Microsoft's CRM. Anyone know of an existing CF component or other code out that to interface with its web services?Because of the urgent time-frame on this, I am hoping I don't have to develop one from

Re: Need a fresh perspective

2009-06-05 Thread Ben Densmore
would you use all joins if you were building the query or do sub queries? I'm still running through in my head how I should write this thing. Ben On Fri, Jun 5, 2009 at 9:51 AM, Azadi Saryev wrote: > > that's a tricky layout... but only from css part! > > on the cf part all you need is one qu

Re: CFHTTP Problem - is file type extension required?

2009-06-05 Thread Ian Skinner
Gerald Weir wrote: > I'm not sure about the sessionID but I'll try to figure something out. I > guess that when CF calls the page from CFHTTP the cookie and session ID are > not established (provided) whereas when viewed through a browser it is. > The cookie is provided when CF calls the pa

Re: CFHTTP Problem - is file type extension required?

2009-06-05 Thread Dave Watts
> I'm not sure about the sessionID but I'll try to figure something out.  I > guess that when CF > calls the page from CFHTTP the cookie and session ID are not established > (provided) > whereas when viewed through a browser it is. Those things aren't provided by default when you use CFHTTP. It

Re: CFHTTP Problem - is file type extension required?

2009-06-05 Thread Gerald Weir
Dave and Brad, Thanks a bunch for your attention to this matter. I finally got to speak with the author of the web service and he told me that the web service is expecting "a web connection with cookie and session ID on the client side." I see Brad noted that a cookie could be part of the pro

Re: XML Issues with webservices

2009-06-05 Thread Dave Watts
> Hi Dave, I've tried doing an xmlParse(variable_name) before performing any > operations but > that errors as well. Is there another method of converting > into xml I should know about? Off the top of my head, I wouldn't be surprised if you have to convert it to a string first. Most Java class

Re: XML Issues with webservices

2009-06-05 Thread Jim Cumming
Hi Dave, I've tried doing an xmlParse(variable_name) before performing any operations but that errors as well. Is there another method of converting into xml I should know about? Cheers Jim > > Have you tried converting it to an XML object? > > Dave Watts, CTO, Fig Leaf Software > http://w

Re: Need a fresh perspective

2009-06-05 Thread Azadi Saryev
that's a tricky layout... but only from css part! on the cf part all you need is one query to pull all data (with 2 extra columns aliased to store extracted YEAR** and MONTH from event's dates) and the nested s with GROUP attributes: first by year column, then month column, then date column, then

Re: Need a fresh perspective

2009-06-05 Thread Ben Densmore
Hi Azadi, Here is an image of what the output should ultimately be. http://wedapstudios.com/table.png Right now my first query to get the Grouped months looks like this: Select mtsch_DateID, date_format(mtsch_DateVal, '%M') as Month, count(*) as Amount From mtsch_dates Where mtsch_Poll

Re: XML Issues with webservices

2009-06-05 Thread Dave Watts
> Ok I've discovered what I think is the root of the problem. I have got the > cfc to do a > dump of the arguments scope into a cfsavecontent tag and pass that back. When > the > component is called locally it passes back my orginal xml request. However > when I > call it as a webservice I get

Re: Need a fresh perspective

2009-06-05 Thread Azadi Saryev
Ben, in my Thunderbird you desired query output looks all warped - i can't make out exactly how you need it diplayed... can you try and post it formatted with tabs, or maybe just describe it in words? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 05/06/2009 12:34, Ben Densmore wrote:

Re: Need a fresh perspective

2009-06-05 Thread Azadi Saryev
@ Jim: i think he does need PollFK in the times table - what if several events are scheduled for same date? @Ben: you data structure look fine. i guess your query that retrieves event's data needs to be tweaked... you definitely DO NOT need SEEVRAL queries - you need just ONE query. can you post

Re: Need a fresh perspective

2009-06-05 Thread Jim Cumming
Not sure if this will help or not, but do you needs the PollFK field in the times table. Surely your relationshp is Event --> Date --> Time. If you do a query with some outer joins you should then be able to return Event 1 Date 1 Time 1 Event 1 Date 1 Time 2 Event 1 Date 2 Time 3 Event 2 Date

Re: XML Issues with webservices

2009-06-05 Thread Jim Cumming
Ok I've discovered what I think is the root of the problem. I have got the cfc to do a dump of the arguments scope into a cfsavecontent tag and pass that back. When the component is called locally it passes back my orginal xml request. However when I call it as a webservice I get back what look