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 Westi 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. keneck

    Null Pointer Exception in Report Builder

    I have started using ColdFusion Report Builder and most of the reports created so far have worked well. However a recent one has produced problems I haven't been able to resolve. When run on our development server, the report output is as expected although the browser tab (IE 7.0) indicates an...
  2. keneck

    cfexecute problem

    Thanks for the response Falconseye. Unfortunately, we've already tried that. We took values of the key name and file name and hard coded them into a batch file that then called the encryption batch file and passed those values as arguments to the encryption process. Then we used <cfexecute> to...
  3. keneck

    cfexecute problem

    Hello, I am using the <cfexecute> tag for the first time and I'm having trouble getting the correct result. I don't get any error message so figuring out what I'm doing wrong has been more than difficult. We are running CFMX 7.0 on Windows 2003. We have a batch file for encrypting an xml file...
  4. keneck

    XML, CF and PHP in one problem

    Found the solution. We had to switch to a default configuration file instead of the recommended configuration file in PHP. The original installation had used the "recommended" config. When the server was restored, we did the same installation. No clue as to what might have changed in the server...
  5. keneck

    XML Problem

    Found the answer. It was indeed the php configuration file. Not sure why, since the original installation had worked. After the server crash, PHP had to be reinstalled. We did this using the "recommended" configuration file as had been done originally. Changing this to the "default" config...
  6. keneck

    XML Problem

    Thanks for the suggestion. We rechecked that and the IIS setting is okay. We have run a couple of other PHP files through the scheduled task interface and they return the correct results e.g. a file that writes some simple XML returns the XML and it is written to a file properly. All the files...
  7. keneck

    XML, CF and PHP in one problem

    Here is where things stand or fall. Still no solution, mostly more mystery. The entire process is running without a hitch on one server, but fails completely on the other server. We have checked the xml file to which the weather data is saved on the server that works and it is valid. We have...
  8. keneck

    XML, CF and PHP in one problem

    I'm not sure this is a CF problem or PHP problem. Both are involved. I am getting a very strange result from a scheduled task that runs code on a PHP page and then writes an XML file with the data returned. The task is set in CF Administrator to run every hour. CF is used to read the XML and...
  9. keneck

    XML Problem

    The script that is running uses the "<?php...?> block. The settings for PHP are the same as before the server was restored. I'm now wondering if there is a problem in the CF server since it is responsible for dealing with the results returned by the PHP script. Have no clue as to what that...
  10. keneck

    XML Problem

    Just to clarify further, here is a link the problematic server. The fact that this page runs indicates that PHP is okay. The problem has to be in the server, but we can't think of anything yet in the server that would produce the bad result. PHP Link: http://206.188.8.194/test.php
  11. keneck

    XML Problem

    Thanks for responding. The script is on a server that is primarily used for running ColdFusion applications. The PHP script is run from a scheduled task in CF Administrator. At the scheduled time, the CF Server retrieves the designated page which contains code that links to the national weather...
  12. keneck

    XML Problem

    I'm getting a very strange result from a PHP process. The file runs as a scheduled task on the server and is supposed to retrieve data from a weather service that is then written to an XML file. This process was working fine before a server crash. Since the server was restored, the script...
  13. keneck

    Data is a list in SQL table

    I have inherited a problem. A SQL Server table contains several thousand records. Some of the data columns contain comma delimited lists for an individual record. Think of it as a badly designed shopping system in which all the details of an order are stored with the order itself. So under a...
  14. keneck

    CFINVOKE question

    Hi, Sorry I can't offer any assistance, but noticed that your problem is similar to mine. Using <cfinvoke> I send a request to a web service and get back an error message that says the operation could not be found. Since I have no way of looking at the requested method, I have no way of knowing...
  15. keneck

    Help with table

    You can group the output from your query by Company Name. <cfquery name="getList" datasource="myDB"> SELECT CompanyName, City FROM myTable ORDER BY CompanyName </cfquery> <cfoutput query="getList" group="CompanyName"> <table> <tr><td>#getList.CompanyName#</td></tr> <cfoutput>...
  16. keneck

    Need to get info from multiple pages into one. Help!!

    Yes, session variables would do it since they will persist across the pages. You will need to loop through the checkboxes for each page to store the current values as you start the next page. Remember that checkbox values don't exist for CF unless they have been checked. So when setting the...
  17. keneck

    Need help debugging a web service request

    I need to get weather forecast information from the national weather service (NWS). The information is returned via the NDFDgen() function which takes a large number of arguments. The following code creates the request: <!--- an associative array is created for weatherParameters ---> <cfset...
  18. keneck

    Handling empty table cells when grouping

    Bombboy Thanks for taking the time to respond. I found the solution to my problem by following a different route altogether. The situation required creating a structure for each record and placing all of these structures inside a one dimensional array. Then the table was created using two...
  19. keneck

    Handling empty table cells when grouping

    Hello, I'm having a problem finding a way to handle the display of a complex table when some cells have no data. I have a query that returns a variable number of advertising records for each Content ID value. I am displaying the data inside a table that uses the group attribute for cfoutput to...
  20. keneck

    Printing Problem - Right Margin

    theogary, Others may have more sophisticated answers for you than I do. I will be happy to learn about alternatives if there are any, but here is my experience. Correcting for content that won't fit is sometimes a matter of advising users that they might have to adjust the left and right print...

Part and Inventory Search

Back
Top