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 SkipVought 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: *

  1. numbered

    Could not instantiate stub objects for web service invocation

    Thanks for the feedback MorthStarDA. It turned out to be a problem with the install of CF7.
  2. 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!
  3. 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)...
  4. numbered

    Temporary table with coldfusion

    I think that might be the problem too but on a .cfm page you cannot have just a single #(pound sign) you have to write it with 2 pound signs, ##tempTable...which will output #tempTable. ####tempTable will output ##tempTable. Maybe sql is reading it as ## and coldfusion is seeing it as #. I...
  5. 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)...
  6. numbered

    can you use a variable for a field name?

    I had to do it a different way but, your code DID help!! thank you zhavic!
  7. 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...
  8. 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
  9. 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!
  10. 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...
  11. 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?
  12. 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?
  13. 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?
  14. numbered

    INNER JOIN tables with Access 2000

    I didn't know that. Thank you very much!! That was exactly what my problem was.
  15. numbered

    INNER JOIN tables with Access 2000

    &quot;Type mismatch in expression&quot; is my error.
  16. 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?
  17. numbered

    error when using cgi.script_name ....

    Thanks Idlost! That was the problem.
  18. 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...
  19. numbered

    What is the best OS to use with PHP?

    What flavor of linux would you recommend? I was thinking about using suse.

Part and Inventory Search

Back
Top