Unexpected behavior in xmlparse, work-around found
If you read an XML file from another site like this: <cfset myDoc=XMLParse("http://72.250.245.94/videoshare")> <cfdump var = "#myDoc#"> the UTF-8 coding won't be handled correctly, and...
View ArticleRe: Send data complext to Net Webservice
Thanks BKBK. I already tried a lot of different ways to send the object/parameters and I can't do it. If I send the agente struct empty, it the webservice detects the array. <cfset param=...
View ArticleRe: binary data in a form field gets changed
Don Pedro, I have been busy testing the behaviour of getHttpRequestData(), when a form is submitted with method="post" and enctype="multipart/form-data". I am on ColdFusion 10.0.13.287689. Now, I can...
View ArticleRe: binary data in a form field gets changed
I have just filed a bug report: https://bugbase.adobe.com/index.cfm?event=bug&id=3700163 .
View ArticleRe: How to INSERT INTO a specific row?
Ah, ok, I will try UPDATE. Right now my form looks like this... <cfform name="requestform" role="form"action="resources/requestform.cfm" method="post" width="375" height="350" > <label...
View ArticleRe: How to INSERT INTO a specific row?
Ah..fixed it. Needed single quotes instead of double quotes. Update was the ticket. Thanks.
View ArticleRe: ColdFusion 10 intermittent "service not available"
I've discovered we're having the same issue as well I believe. I just built a fresh Hyper-V Windows 2008 R2 IIS 7.5 with ColdFusion 10 patch 13 and the isapi connectors are all freshly built as the...
View ArticleCFGRID and datatype decimal, NULL not maintained.
I'll try to make it simple, but ask any questions if I need to explain further. I have a situation where fields in the database are datatype decimal. Some of these datatype fields are NULL, which is...
View ArticleRe: ColdFusion 10 intermittent "service not available"
Hey Leith, can you drop me an email directly at charlie@carehart.org. I have some thoughts/suggestions but don’t want to belabor the forum with lots of details, if we may narrow it down together to one...
View ArticleRe: ColdFusion 10 intermittent "service not available"
I email you directly. Odd it told you that email failed as it's my active one and we show no issues with the system currently.
View ArticleRe: CF10 database connection BLOCKED?? - JDBCPool.checkOut/checkIn
Hi, all. My problem was finally solved with changes to our network wiring configuration. Here is the write-up from my IT team explaining exactly what they did: ------------We performed a few upgrades...
View ArticleRe: Intermittent Database Connecitivy Problems in CF10.
Did you ever find a solution this this problem? I think I am having the same issue with CF10 Ent on Win2008/IIS7 connecting to Oracle. Almost every day all the sites with a database connection (i.e.,...
View ArticleRe: Dreamweaver CC Coldfusion 10 extension?
Is there a fix for this? We moved our entire suite from CS6 to CC. We also upgraded to Coldfusion 10 and need the Coldfusion 10 DreamWeaver Extension to work. I am running Windows 7 64 bit. I have...
View ArticleRe: ColdFusion 10 intermittent "service not available"
Actually, it’s off by a letter. Emailing you a reply with that and more. /charlie
View ArticleRe: ColdFusion 10 intermittent "service not available"
Doh, never mind. It was my copy/paste of it that missed a letter. Again, email to you directly with more, to come. /charlie
View ArticlexmlParse errror - Premature end of file
I have a file that queries orders and writes them out in xml to be polled by some software that reads the order into an erp system. It reads fine but I can't parse an xml reponse that will update order...
View ArticleRe: Dreamweaver CC Coldfusion 10 extension?
I found the solution. Took me a while but got it done. I am running Windows 7 64bit, so do not know if solution will work for your system or not. So Here are the steps you have to take to get...
View ArticleHow to access J2C alias using CF
Hi, We have a ColdFusion (9.01) application deployed under WebSphere 7. There are some application credentials stored in a J2C alias that was configured using the WAS console. I would like to know if...
View ArticleRe: xmlParse errror - Premature end of file
You can put a try/catch block around the xmlparse and then use an alternate parsing method is xmlparse fails -- maybe regular expression search. I guess the key is to determine why xmlparse is failing....
View ArticleRe: xmlParse errror - Premature end of file
Hi Steve , I think it's an xmlParse bug because that 's where it breaks. Essentially , without too much detail. the flow goes something like this : <cfset content type="text/xml"> <cfquery...
View Article