Search results

  1. D

    Cold Fusion MX newbie havinf issues with database connection

    Try this example http://www.cfide.org/Excel_DSNLESS.html I blocked out some parts only because its for excel but it could be used for access or text .txt files too. You don't need it to be in a component and don't ask for a DSN because it all goes through one gateway "the ODBC...
  2. D

    Difference from CF MX 6 to 7?

    Well they started embedding my ideas. Starting with my itext for pdf then moving on to gateways because I was looking into jabber at the time. They put in Casting for Q to Q and nulls for java. The list goes on and on.
  3. D

    CFMX database access. Look no hands

    My god I must have been 3 years old when I posted that code. mySQL_connection_test seems to be a java class I made ... but why? Look at this Example: http://www.cfide.org/Excel_DSNLESS.html I got it down to basically two lines of code which should be kept far away from all other...
  4. D

    554 sorry, your envelope sender is in my badmailfrom list (#5.7.1)

    Thanks Yash, I sent in the JodoHost Mass-Mailing Permission Form and got back "We have added your domain to ignore list" What does that mean? Dan
  5. D

    554 sorry, your envelope sender is in my badmailfrom list (#5.7.1)

    The error I am getting is: 554 sorry, your envelope sender is in my badmailfrom list (#5.7.1) My ticket was #50712 sent Mon 2/7/2005 4:38 PM I send out about 280 email to an elite group of specialist. Can I get this unblocked and the spam that's still coming in blocked? Thanks Dan
  6. D

    Is <CFHTTP> a disabled tag?

    Yash, Is there a way to add all local host to this list by default because all web services, cfhttp and remoting tags have been disabled because of windows 2003 over doing it a bit. Thanks Dan
  7. D

    Web services 101 CFMX

    All web services are is nothing more then a CFC that has 1. access set to remote [access="remote" ] 2. ends with wsdl in the URL. [http://www.someURL.com/some.CFC?wsdl]That's it. Close the book on this subject. Another thing to watch out for is CFQUERY and web services. Don't follow any of the...
  8. D

    built in cold fusion flash remoting gateway?

    No a blank page does not mean its working. If you can return data then it is working. I have remoting working locally, but when a port it to the jodo server it stops working. The Example it uses has a port number which is 8500. Yash should just try to return some data from CF to Flash.
  9. D

    built in cold fusion flash remoting gateway?

    The string "http://www.domain.com/flashservices/gateway" "http://www.domain.com/flashservices/gateway/" Nope I just tested it and it did not work because the connection has to be a local one. Remoting will not connect to outside stuff (I wish it did). So to make...
  10. D

    built in cold fusion flash remoting gateway?

    That is right and the port address direct control to servers and so 8500 is CF's default port address which is not working. I guess he has to open a port which we can then use or find another way like using open source remoting.
  11. D

    built in cold fusion flash remoting gateway?

    The only problem is finding the right connection string gw=NetServices.createGatewayConnection(" http://localhost:8500/flashservices/gateway "); Strings that don't work so far http://localhost:8500/flashservices/gateway nope http://66.36.229.91:8500/flashservices/gateway...
  12. D

    ASPMail installation on mssql1.jodoshared.com

    Are you trying to gather a bunch of email addresses from a table and then send them right? If you are then don't use this method. Just turn on Coldfusion in your account. And use their built in emailer which is based on java. You can automate tasks via cf / java too. Does this help. Yash should...
  13. D

    Worst Service I Have Ever Seen

    Yash should only let users have control over SQL statements. Place all the objects inside the "universal application.cfm" The users should only see and use one line: <cfset ResultSet = mySQL.goSQLgo(?SELECT FROM USERS?)> or <cfset ResultSet = sqlserver.goSQLgo(?INSERT INTO...
  14. D

    built in cold fusion flash remoting gateway?

    Yash: First get the ebook "OReilly,.Flash.Remoting.The.Definitive.Guide.chm" edonkey <a...
  15. D

    Accessing the ColdFusion DSN from Java...

    DSNs are only for people who are new to CFMX. Since CFMX is now a J2EE app they stopped using them. The DSNs inside the Admin are just a easier way the edit an XML file and makes it fool proof. Without downloading anything try to follow the example given...
  16. D

    built in cold fusion flash remoting gateway?

    With remoting in the background you can call java class files which are located on the same directory i think. I am getting "status: flashgateway.adapter.NoSuchServiceException: No service named HelloWorld is known to Flash Remoting MX." and "status...
  17. D

    Using Coldfusion MX w/Mysql at jodohost

    <cfset Access_example = CreateObject("java", "Access_CFQUERY")> <cfdump var="#Access_example#"> <cfset Example_results = Access_example.test_connection("c:/reports.mdb", "SELECT TOP 2 * from dailyreport")> <cfdump var="#Example_results#">...
  18. D

    FAQ: Does JodoHost support Flash Remoting?

    well you have to. You can't remove the remoting services from CFMX. The only problem is finding the DefaultGatewayURL.
  19. D

    CFMX database access. Look no hands

    Coldfusion CFMX DSNLESS Connection how-to I guess I called it DNSLESS because the driver embedded the information. So now the JDBC URL is a bit longer then using just the ODBC service and there's no JNDI service helping with connection. The problem with that is its not centralized in place to...
  20. D

    Using Coldfusion MX w/Mysql at jodohost

    I know most of that was your old post, but I studied it more carefully and understood it a little better. I have never been big into programming, so for me to get into it deeply would be tough :) So far to create a table only took 6 lines of code. 5 lines of code are reused 1 line the...
Back
Top