Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: numbered
  • Content: Threads
  • Order by date
  1. numbered

    Could not instantiate stub objects for web service invocation

    I'm trying to connect to a webservice with coldfusion. No matter what way I try to create an object I get this error. Could not instantiate stub objects for web service invocation. What does this error mean? I'm running CF7. Thanks!
  2. numbered

    MS SQL temporary table not working

    I'm trying to work with temporary tables using MS sql and coldfusion. It's not working the way it should. <cfquery name="tempTableCreate" datasource="#application.dataSource#"> CREATE TABLE ##table( id int IDENTITY(1,1) PRIMARY KEY, value1 smalldatetime NULL, value2 varchar(5)...
  3. numbered

    Temporary table with coldfusion

    I'm trying to work with temporary tables using MS sql and coldfusion. It's not working the way it should. <cfquery name="tempTableCreate" datasource="#application.dataSource#"> CREATE TABLE ##table( id int IDENTITY(1,1) PRIMARY KEY, value1 smalldatetime NULL, value2 varchar(5) NULL)...
  4. numbered

    can you use a variable for a field name?

    I've spent about 12 hours trying to figure this out. I'm trying to replace the asci for french characters to what it actually is. After the database entry is made, if there are any french characters entered, I need to replace them. I'd like to do this with a loop if I can as I need to check...
  5. numbered

    Can't see files when connecting with RDS

    I'm connected to an outside server using RDS and can see all the folders but, I can't see any files. I've checked my filter and it is set to All Files. Any reason why I can't see the files? Thanks, Seven
  6. numbered

    Can I run a cfm page using Windows Scheduler?

    I can't seem to get the ColdFusion scheduler to work, so I was thinking I would just use Windows scheduler. I'm running MX and I'm not sure if I can run a .cfm page outside of my website. I know 4.5 can do it but, I can't find an .exe file to run the my web page. Can this be done? Thanks!
  7. numbered

    Anyone ever seen this??

    I have a form that sends information to a database using ColdFusion 4.5. The form has worked perfect for about 1000 records so far. Yesterday, a record was recorded but only 3 of 15 mandatory fields were recorded. Is there any browser out there that wouldn't accept coldFusion session variables...
  8. numbered

    How do I run a VB exe file?

    I'm trying to run a visual basic exe file from coldfusion. Can't seem to figure it out. I would assume that <cfexecute> would be the right way. Can anyone help?
  9. numbered

    Can you run 2 versions of CF on 1 server?

    I've seen a question like this before but, can't remember where. Can I run CF 4.5 and MX on 1 server?
  10. numbered

    access 2000 - merge 2 tables into 1 table

    feedback_2001 table 1 feedback_2002 table 2 I'd like to have all the info in table 2 put into table 1. What would be the best way to do this?
  11. numbered

    INNER JOIN tables with Access 2000

    I can't get my query to work :( SELECT t1.first_name, t2.description FROM table_1 as t1 INNER JOIN table_2 as t2 ON t1.type = t2.id Any ideas why it's not working...does INNER JOIN work with access?
  12. numbered

    error when using cgi.script_name ....

    I'm running MX and I'm getting this error with this code: ERROR: Complex object types cannot be converted to simple values. CODE: <CFSET url = &quot;#cgi.script_name#&quot;> <cfoutput>#url#</cfoutput> The code will work if I use <cfoutput>#cgi.script_name#</cfoutput> but, I need to store...
  13. numbered

    What is the best OS to use with PHP?

    I'm a newbie with php. I develop with coldfusion and asp. I'd like to get into php. I have a pc ready and watiing for on operation system. What would you ppl recomend I load onto it?
  14. numbered

    Why am I getting an error with &lt;cfscript&gt;??

    I'm using CF 4.5 The only coldfusion on the page are these 2 tags <cfscript></cfscript>. Why am I getting this error? It's like coldfusion doesn't know what <cfscript> is. Invalid parser construct found on line 10 at position 11. ColdFusion was looking at the following text: </cfscript>
  15. numbered

    query to list all tables in database??

    Is there an sql query to list all tables in an ms access database?
  16. numbered

    repeated words using #summary# with &lt;cfsearch&gt;?

    I'm using MX and searching .pdf files. When I use #summary# with <cfsearch> I get the same words repeated a few times. Is there anyway to get rid of this? Why is it doing this? summary: &quot;Dec. 3 Dec. 3 Dec. 3 Dec. 3 rd rd rd rd , 2001 , 2001 , 2001 , 2001Issue #53Issue #53Issue #53Issue...
  17. numbered

    Is there an SQL query that will list all tables in a specific MSSQL dB

    Is there an SQL query that will list all tables in a specific MSSQL dB?
  18. numbered

    MX...how do I retrieve query string variables?

    <a href=&quot;page.cfm?d=a_date&quot;>Date</a> How do I retrieve the query_string variable? MX won't allow me to use #url.d#
  19. numbered

    Using &lt;cfdirectory&gt; to access files on another server

    I'm using <cfdirectory> and I'm trying to access a directory on another server. If I'm on server 1 I can get to server 2. I can't seem to get from server 1 to server 2 using coldfusion though. I've tried the mapped path and I've tried the hard coded path, neither work. <CFSET LibraryDirectory...
  20. numbered

    Problem with date fromat in access

    I have this in my database jobs jobs_id type start_date end_date 10 management 02/10/2002 11/10/2002 SELECT * FROM jobs WHERE type = 'management' AND (day(start_date) & month(start_date) & year(start_date)) <= (day(now()) & month(now()) & year(now())) AND (day(end_date) & month(end_date) &...

Part and Inventory Search

Back
Top