<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-606</id>
	<title>Nabble - Cold Fusion - Java</title>
	<updated>2009-10-13T19:24:32Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Cold-Fusion---Java-f606.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cold-Fusion---Java-f606.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-25884393</id>
	<title>Re: Web Services :: Java to Coldfusion CFC</title>
	<published>2009-10-13T19:24:32Z</published>
	<updated>2009-10-13T19:24:32Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">&lt;br&gt;I'd chuck out the WSDL part of the call and just call the CFC directly.
&lt;br&gt;&lt;br&gt;mxAjax / CFAjax docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;2009/10/14 Joshua Rowe &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25884393&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jrowe@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We are currently developing a BlackBerry application to pull information from an XML file generated by ColdFusion web services.  Information entered into our website (written in ColdFusion) is saved into a MySQL database and XML file.  A CFC exists containing functions to read and parse through the XML files and return the information needed from the files.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The BlackBerry application (written in Java) needs to be able to call these functions in the CFC and grab the returned information (XML file).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; An example of one of the functions in our Webservices.cfc CFC is this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;cffunction name=&amp;quot;fcnAccountsGet&amp;quot; returntype=&amp;quot;xml&amp;quot; access=&amp;quot;remote&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;cffile action=&amp;quot;read&amp;quot; file=&amp;quot;___fileLocation___&amp;quot; variable=&amp;quot;fileData&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;cfset xmlData = XMLParse(fileData)&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;cfreturn xmlData&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/cffunction&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This function reads the XML file and returns its' contents.  We are calling this CFC from the Java app like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.ourwebsite.com/WebServices.cfc?WSDL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/WebServices.cfc?WSDL&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And here is the Java code:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; String serviceUrl=&amp;quot;&lt;a href=&quot;http://www.ourwebsite.com/WebServices.cfc?WSDL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/WebServices.cfc?WSDL&lt;/a&gt;&amp;quot;;
&lt;br&gt;&amp;gt;          String namespace=&amp;quot;&lt;a href=&quot;http://www.ourwebsite.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/&lt;/a&gt;&amp;quot;;
&lt;br&gt;&amp;gt;          String action=&amp;quot;fcnAccountsGet&amp;quot;;
&lt;br&gt;&amp;gt;          String method=&amp;quot;fcnAccountsGet&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;   private void getXMLConfigData()
&lt;br&gt;&amp;gt;    {
&lt;br&gt;&amp;gt;         try
&lt;br&gt;&amp;gt;        {
&lt;br&gt;&amp;gt;            // Build a document based on the XML file.
&lt;br&gt;&amp;gt;            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
&lt;br&gt;&amp;gt;            DocumentBuilder builder = factory.newDocumentBuilder();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;            InputStream inputStream = getClass().getResourceAsStream( _xmlConfigFileName );
&lt;br&gt;&amp;gt;            Document document = builder.parse( inputStream );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;            // Normalize the root element of the XML document.  This ensures that all Text
&lt;br&gt;&amp;gt;            // nodes under the root node are put into a &amp;quot;normal&amp;quot; form, which means that
&lt;br&gt;&amp;gt;            // there are neither adjacent Text nodes nor empty Text nodes in the document.
&lt;br&gt;&amp;gt;            // See Node.normalize().
&lt;br&gt;&amp;gt;            Element rootElement = document.getDocumentElement();
&lt;br&gt;&amp;gt;            rootElement.normalize();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;            NodeList nodeLst = rootElement.getChildNodes();
&lt;br&gt;&amp;gt;            //private static final String XPATH_EXPRESSION = &amp;quot;/traceGroup/trace/text()&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;            boolean skip = false;
&lt;br&gt;&amp;gt;            for (int i = 0; i &amp;lt; nodeLst.getLength(); i++)
&lt;br&gt;&amp;gt;            {
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                Node n = nodeLst.item(i);
&lt;br&gt;&amp;gt;                String nameNode = n.getNodeName();
&lt;br&gt;&amp;gt;                if(nameNode.equals(&amp;quot;Login&amp;quot;))
&lt;br&gt;&amp;gt;                {
&lt;br&gt;&amp;gt;                    String LoginValue = n.getFirstChild().getNodeValue();
&lt;br&gt;&amp;gt;                    if(LoginValue.equals(&amp;quot;1&amp;quot;))
&lt;br&gt;&amp;gt;                    {
&lt;br&gt;&amp;gt;                        skip = true;
&lt;br&gt;&amp;gt;                    }
&lt;br&gt;&amp;gt;                    break;
&lt;br&gt;&amp;gt;                }
&lt;br&gt;&amp;gt;            }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;            if(skip == true)
&lt;br&gt;&amp;gt;            {
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;               if(_projectsDisplay == null)
&lt;br&gt;&amp;gt;               {
&lt;br&gt;&amp;gt;                    _projectsDisplay = new ProjectsDisplay(this);
&lt;br&gt;&amp;gt;                }
&lt;br&gt;&amp;gt;                pushScreen(_projectsDisplay);
&lt;br&gt;&amp;gt;            }
&lt;br&gt;&amp;gt;            else
&lt;br&gt;&amp;gt;            {
&lt;br&gt;&amp;gt;                 if(_loginScreen == null)
&lt;br&gt;&amp;gt;                 {
&lt;br&gt;&amp;gt;                    _loginScreen = new LoginScreen(this);
&lt;br&gt;&amp;gt;                 }
&lt;br&gt;&amp;gt;                 pushScreen(_loginScreen);
&lt;br&gt;&amp;gt;            }
&lt;br&gt;&amp;gt;         }
&lt;br&gt;&amp;gt;        catch ( Exception e )
&lt;br&gt;&amp;gt;        {
&lt;br&gt;&amp;gt;            System.out.println( e.toString() );
&lt;br&gt;&amp;gt;        }
&lt;br&gt;&amp;gt;    }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please confirm what needs to be changed or if there is another way we should be going about this.  Thank you for your help!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists
&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:6146&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:6146&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Web-Services-%3A%3A-Java-to-Coldfusion-CFC-tp25881905p25884393.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25881905</id>
	<title>Web Services :: Java to Coldfusion CFC</title>
	<published>2009-10-13T15:04:03Z</published>
	<updated>2009-10-13T15:04:03Z</updated>
	<author>
		<name>Joshua Rowe-2</name>
	</author>
	<content type="html">&lt;br&gt;Hello,
&lt;br&gt;&lt;br&gt;We are currently developing a BlackBerry application to pull information from an XML file generated by ColdFusion web services. &amp;nbsp;Information entered into our website (written in ColdFusion) is saved into a MySQL database and XML file. &amp;nbsp;A CFC exists containing functions to read and parse through the XML files and return the information needed from the files.
&lt;br&gt;&lt;br&gt;The BlackBerry application (written in Java) needs to be able to call these functions in the CFC and grab the returned information (XML file).
&lt;br&gt;&lt;br&gt;An example of one of the functions in our Webservices.cfc CFC is this:
&lt;br&gt;&lt;br&gt;&amp;lt;cffunction name=&amp;quot;fcnAccountsGet&amp;quot; returntype=&amp;quot;xml&amp;quot; access=&amp;quot;remote&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;cffile action=&amp;quot;read&amp;quot; file=&amp;quot;___fileLocation___&amp;quot; variable=&amp;quot;fileData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;cfset xmlData = XMLParse(fileData)&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;cfreturn xmlData&amp;gt;
&lt;br&gt;&amp;lt;/cffunction&amp;gt;
&lt;br&gt;&lt;br&gt;This function reads the XML file and returns its' contents. &amp;nbsp;We are calling this CFC from the Java app like this:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.ourwebsite.com/WebServices.cfc?WSDL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/WebServices.cfc?WSDL&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;And here is the Java code:
&lt;br&gt;&lt;br&gt;String serviceUrl=&amp;quot;&lt;a href=&quot;http://www.ourwebsite.com/WebServices.cfc?WSDL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/WebServices.cfc?WSDL&lt;/a&gt;&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String namespace=&amp;quot;&lt;a href=&quot;http://www.ourwebsite.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ourwebsite.com/&lt;/a&gt;&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String action=&amp;quot;fcnAccountsGet&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String method=&amp;quot;fcnAccountsGet&amp;quot;;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;private void getXMLConfigData()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Build a document based on the XML file.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DocumentBuilder builder = factory.newDocumentBuilder();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; InputStream inputStream = getClass().getResourceAsStream( _xmlConfigFileName );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Document document = builder.parse( inputStream );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Normalize the root element of the XML document. &amp;nbsp;This ensures that all Text 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // nodes under the root node are put into a &amp;quot;normal&amp;quot; form, which means that 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // there are neither adjacent Text nodes nor empty Text nodes in the document.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // See Node.normalize().
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Element rootElement = document.getDocumentElement();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rootElement.normalize();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NodeList nodeLst = rootElement.getChildNodes();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //private static final String XPATH_EXPRESSION = &amp;quot;/traceGroup/trace/text()&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; boolean skip = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (int i = 0; i &amp;lt; nodeLst.getLength(); i++) 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Node n = nodeLst.item(i);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String nameNode = n.getNodeName();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(nameNode.equals(&amp;quot;Login&amp;quot;))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String LoginValue = n.getFirstChild().getNodeValue();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(LoginValue.equals(&amp;quot;1&amp;quot;))
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; skip = true;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(skip == true)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(_projectsDisplay == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _projectsDisplay = new ProjectsDisplay(this);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pushScreen(_projectsDisplay);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(_loginScreen == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _loginScreen = new LoginScreen(this);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;pushScreen(_loginScreen);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch ( Exception e ) 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println( e.toString() );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;Please confirm what needs to be changed or if there is another way we should be going about this. &amp;nbsp;Thank you for your help! 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists
&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:6144&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:6144&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Web-Services-%3A%3A-Java-to-Coldfusion-CFC-tp25881905p25881905.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21296138</id>
	<title>RE: Coldfusion or Java Leap Year Error?</title>
	<published>2009-01-05T10:12:39Z</published>
	<updated>2009-01-05T10:12:39Z</updated>
	<author>
		<name>Charlie Arehart-2</name>
	</author>
	<content type="html">Is this some robot that keeps submitting this question? :-) We've had it
&lt;br&gt;today, and twice on 12/28
&lt;br&gt;(&lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5626&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5626&lt;/a&gt;&amp;nbsp;and
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5622&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5622&lt;/a&gt;). &amp;nbsp;Paul
&lt;br&gt;quipped about the 2nd one, too, at the time.
&lt;br&gt;&lt;br&gt;Les, an answer was offered
&lt;br&gt;(&lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5624&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5624&lt;/a&gt;). Any
&lt;br&gt;thoughts on that? Are you repeating the question because you missed that? Or
&lt;br&gt;just that you didn't find it responsive? Help us help you. :-)
&lt;br&gt;&lt;br&gt;/charlie
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Les Schmidt [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21296138&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;les242non@...&lt;/a&gt;] 
&lt;br&gt;Sent: Sunday, January 04, 2009 6:20 PM
&lt;br&gt;To: java
&lt;br&gt;Subject: Coldfusion or Java Leap Year Error?
&lt;br&gt;&lt;br&gt;I have a CF application that collects data every 5 minutes from a weather
&lt;br&gt;station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29),
&lt;br&gt;or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter,
&lt;br&gt;the web page that displays &amp;nbsp;data for today vs. the same time yesterday
&lt;br&gt;stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to
&lt;br&gt;java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now()
&lt;br&gt;correctly reports local time), then the WHERE clause would have been looking
&lt;br&gt;for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possibl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possibl&lt;/a&gt;&lt;br&gt;e-Leap-Year-bug
&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm
&lt;br&gt;suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any
&lt;br&gt;suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5631&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5631&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21287708p21296138.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21287708</id>
	<title>Coldfusion or Java Leap Year Error?</title>
	<published>2009-01-04T15:20:17Z</published>
	<updated>2009-01-04T15:20:17Z</updated>
	<author>
		<name>Les Schmidt</name>
	</author>
	<content type="html">I have a CF application that collects data every 5 minutes from a weather station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the web page that displays &amp;nbsp;data for today vs. the same time yesterday stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now() correctly reports local time), then the WHERE clause would have been looking for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&lt;/a&gt;&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5630&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5630&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21287708p21287708.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21199775</id>
	<title>Re: Coldfusion or Java Leap Year Error?</title>
	<published>2008-12-28T23:15:02Z</published>
	<updated>2008-12-28T23:15:02Z</updated>
	<author>
		<name>Paul Hastings</name>
	</author>
	<content type="html">Les Schmidt wrote:
&lt;br&gt;&amp;gt; I have a CF application that collects data every 5 minutes from a weather
&lt;br&gt;&amp;gt; station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or
&lt;br&gt;&amp;gt; midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the
&lt;br&gt;&lt;br&gt;uh, is this some kind of time traveling email?
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5627&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5627&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21199101p21199775.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21197614</id>
	<title>RE: deviceatlas database(DA.jar) and ColdFusion</title>
	<published>2008-12-28T16:32:20Z</published>
	<updated>2008-12-28T16:32:20Z</updated>
	<author>
		<name>Charlie Arehart-2</name>
	</author>
	<content type="html">Going back to this question from months ago, Piotr, are you still looking
&lt;br&gt;for your answer? You refer to using CFIMPORT, but that's for using JSP
&lt;br&gt;Custom Tags (at least with regard to Java integration in CF). I don't see
&lt;br&gt;any mention on that site of this being an API driven by custom tags. Yet you
&lt;br&gt;say you &amp;quot;tried to import the file DA.tld&amp;quot;. So is there one? I found no
&lt;br&gt;mention of it on the site (I'll admit I didn't download the API because it
&lt;br&gt;required a login.)
&lt;br&gt;&lt;br&gt;If perhaps you just assumed that integration of Java with CF required using
&lt;br&gt;CFIMPORT (or JSP custom tags), that's just a misunderstanding. There are
&lt;br&gt;many ways to do Java integration, including just calling java object
&lt;br&gt;methods. That may be the way for you to go in this case. &amp;nbsp;I'll point you to
&lt;br&gt;a few resources to get started. First, the CF docs themselves have a chapter
&lt;br&gt;on this. I'm not talking about the CFML Reference, though. It's in the
&lt;br&gt;Developer's Guide:
&lt;br&gt;&lt;a href=&quot;http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Java_1.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Java_1.htm&lt;/a&gt;&lt;br&gt;l (and while that's the CF8 docs, the info and features related to this
&lt;br&gt;topic really haven't changed since CF6.)
&lt;br&gt;&lt;br&gt;I also wrote an article introducing the concepts of integrating CFML and
&lt;br&gt;Java (and .NET, as a bonus) back in 2005:
&lt;br&gt;&lt;br&gt;Getting Started Integrating CFML with Java &amp; .NET
&lt;br&gt;&lt;a href=&quot;http://coldfusion.sys-con.com/node/86127&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://coldfusion.sys-con.com/node/86127&lt;/a&gt;&lt;br&gt;&lt;br&gt;That was actually part of a whole issue in the CFDJ that was said to be on
&lt;br&gt;CF/Java integration, though it wasn't really too much
&lt;br&gt;(&lt;a href=&quot;http://coldfusion.sys-con.com/issue/595&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://coldfusion.sys-con.com/issue/595&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;Finally, beyond that, if one really does want to get into using JSP custom
&lt;br&gt;tags in CF, I wrote an article on it several years ago:
&lt;br&gt;&lt;br&gt;Using JSP Custom Tags in CFMX: What, Why, and How
&lt;br&gt;&lt;a href=&quot;http://cfdj.sys-con.com/read/41747.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cfdj.sys-con.com/read/41747.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;Hope that helps.
&lt;br&gt;&lt;br&gt;/charlie
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Piotr Artman [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21197614&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peter.artman@...&lt;/a&gt;] 
&lt;br&gt;Sent: Sunday, June 15, 2008 11:54 AM
&lt;br&gt;To: Java
&lt;br&gt;Subject: deviceatlas database(DA.jar) and ColdFusion
&lt;br&gt;&lt;br&gt;Hello,
&lt;br&gt;I am new in ColdFusion and I want to connect ColdFusion server with a
&lt;br&gt;database of mobile devices known as &amp;quot;Deviceatlas&amp;quot;. When I was trying to
&lt;br&gt;import the Da.jar file (&amp;lt;cfimport&amp;gt; tag) I received the message: &amp;quot;Cannot
&lt;br&gt;import the tag library specified by &lt;a href=&quot;http://localhost/test/lib/DA.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/test/lib/DA.jar&lt;/a&gt;&amp;quot;.
&lt;br&gt;The same message appeared when I tried to import the file DA.tld.
&lt;br&gt;&lt;br&gt;Someone help me find a solution?
&lt;br&gt;&lt;br&gt;Deviceatlas database is free for developers. You can find it here:
&lt;br&gt;&lt;a href=&quot;http://deviceatlas.com/downloads&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://deviceatlas.com/downloads&lt;/a&gt;&lt;br&gt;&lt;br&gt;I will be grateful for any assistance.
&lt;br&gt;Greetings from Poland
&lt;br&gt;&lt;br&gt;Piotr 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5623&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5623&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/deviceatlas-database%28DA.jar%29-and-ColdFusion-tp17870254p21197614.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21197617</id>
	<title>RE: Coldfusion or Java Leap Year Error?</title>
	<published>2008-12-28T16:32:20Z</published>
	<updated>2008-12-28T16:32:20Z</updated>
	<author>
		<name>Charlie Arehart-2</name>
	</author>
	<content type="html">Les, I'm curious if you've just outputted the value of the variable to see
&lt;br&gt;what's being used for the comparison. It seems from what you're writing that
&lt;br&gt;you're guessing at it, so simply outputting it to know for sure may give you
&lt;br&gt;your answer. 
&lt;br&gt;&lt;br&gt;Also, though it may not be related, I'll say it seems odd to see you doing
&lt;br&gt;your comparison with the column on the right. That's not typical, though
&lt;br&gt;it's reasonable to assume that a SQL engine wouldn't care. Still, while we
&lt;br&gt;could/should hope that the CF query of query engine has been designed to
&lt;br&gt;handle it, perhaps it has an issue in some situations. That's a total wild
&lt;br&gt;stab in the dark and perhaps not an issue at all (I realize you're saying
&lt;br&gt;it's worked fine for 3 years.) Again, that's why it would be all the more
&lt;br&gt;helpful to see the data being compared.
&lt;br&gt;&lt;br&gt;Finally, if these don't help or you get no other answers, I'll suggest that
&lt;br&gt;you may want to raise your question on cf-talk or some other general
&lt;br&gt;interest CF list. What you've raised here isn't really a java problem. The
&lt;br&gt;reference to Java in your message is just because CF runs atop Java, and
&lt;br&gt;under the cover all datatypes are in fact java data types. 
&lt;br&gt;&lt;br&gt;Hope something there's helpful.
&lt;br&gt;&lt;br&gt;/charlie
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Les Schmidt [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21197617&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;les242non@...&lt;/a&gt;] 
&lt;br&gt;Sent: Sunday, December 28, 2008 5:23 PM
&lt;br&gt;To: java
&lt;br&gt;Subject: Coldfusion or Java Leap Year Error?
&lt;br&gt;&lt;br&gt;I have a CF application that collects data every 5 minutes from a weather
&lt;br&gt;station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29),
&lt;br&gt;or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter,
&lt;br&gt;the web page that displays &amp;nbsp;data for today vs. the same time yesterday
&lt;br&gt;stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to
&lt;br&gt;java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now()
&lt;br&gt;correctly reports local time), then the WHERE clause would have been looking
&lt;br&gt;for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possibl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possibl&lt;/a&gt;&lt;br&gt;e-Leap-Year-bug
&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm
&lt;br&gt;suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any
&lt;br&gt;suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5624&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5624&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21197130p21197617.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21199101</id>
	<title>Coldfusion or Java Leap Year Error?</title>
	<published>2008-12-28T16:13:10Z</published>
	<updated>2008-12-28T16:13:10Z</updated>
	<author>
		<name>Les Schmidt</name>
	</author>
	<content type="html">I have a CF application that collects data every 5 minutes from a weather station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the web page that displays &amp;nbsp;data for today vs. the same time yesterday stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now() correctly reports local time), then the WHERE clause would have been looking for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&lt;/a&gt;&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5626&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5626&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21199101p21199101.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21197130</id>
	<title>Coldfusion or Java Leap Year Error?</title>
	<published>2008-12-28T14:23:25Z</published>
	<updated>2008-12-28T14:23:25Z</updated>
	<author>
		<name>Les Schmidt</name>
	</author>
	<content type="html">I have a CF application that collects data every 5 minutes from a weather station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the web page that displays &amp;nbsp;data for today vs. the same time yesterday stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now() correctly reports local time), then the WHERE clause would have been looking for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&lt;/a&gt;&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5622&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/message.cfm/messageid:5622&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp21197130p21197130.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19490239</id>
	<title>500 Server Error running 3rd party jar files</title>
	<published>2008-09-15T03:09:50Z</published>
	<updated>2008-09-15T03:09:50Z</updated>
	<author>
		<name>Lawrensium</name>
	</author>
	<content type="html">Hi guys,
&lt;br&gt;&lt;br&gt;I'm trying to run a set of jar files, a 3rd-party api with Coldfusion MX 7. But I got 500 Server error. When I dump the same set of jar files into tomcat 6 with standard configuration, it just works. Any idea how to find out what's actually wrong and make it work in Coldfusion environment? Please kindly share your opinion or suggestion. Thank you.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/500-Server-Error-running-3rd-party-jar-files-tp19490239p19490239.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18569867</id>
	<title>FT &amp; Contract Java Developer &amp; Architect Opportunities in Ft. Collins, CO (no telecommuting)</title>
	<published>2008-07-21T07:30:47Z</published>
	<updated>2008-07-21T07:30:47Z</updated>
	<author>
		<name>Kelly_Ackerman</name>
	</author>
	<content type="html">FT &amp; Contract Java Developer &amp; Architect Opportunities in Ft. Collins,
&lt;br&gt;CO (no telecommuting) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Don't miss this exciting career opportunity!!! My client is seeking
&lt;br&gt;multiple direct-hire and contract-to-hire Java Developers - from mid to
&lt;br&gt;architect level. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Required Skills: 
&lt;br&gt;* No less than 5 years of development with Java; we seek mid to
&lt;br&gt;architect level 
&lt;br&gt;* Prior experience working with JSP, J2EE 
&lt;br&gt;* 5+ years software development including: requirements analysis,
&lt;br&gt;functional specifications, design specifications, OO implementation,
&lt;br&gt;testing, validation, installation. 
&lt;br&gt;* Experience with customer interfacing. 
&lt;br&gt;* Experience with full software development lifecycle and best practices
&lt;br&gt;methodologies. 
&lt;br&gt;* 4-year bachelor's degree in CS, CIS or related discipline.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Additional Desired Skills: 
&lt;br&gt;* Technical experience a plus in any of the following platforms:
&lt;br&gt;Windows, Unix, Eclipse, WebLogic, Oracle.
&lt;br&gt;* Strong verbal and written communications. 
&lt;br&gt;* Motivated self-starting professional with high integrity, honesty and
&lt;br&gt;self confidence. 
&lt;br&gt;* Understanding of product development (within medical device is a major
&lt;br&gt;plus).
&lt;br&gt;* Strong team, interpersonal and client-facing consulting skills. 
&lt;br&gt;* Experienced in working with complex systems in various customer
&lt;br&gt;environments.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Fort Collins, CO, located at the foothills of the Rocky Mountains, is
&lt;br&gt;ranked as the #3 city for Business and Careers by Forbes magazine (2008)
&lt;br&gt;and ranked as the #1 city in America by Money magazine in 2006.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;My client has a strong work / life balance and an excellent benefits
&lt;br&gt;package including medical, dental, vision, short and long-term
&lt;br&gt;disability, safe harbor 401k, company profit sharing, stock grants and
&lt;br&gt;options for high-performing employees, tuition reimbursement,
&lt;br&gt;educational training, paid time off, 11 paid holidays and more. They
&lt;br&gt;offer a casual work environment with flexible work hours. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;For more information and to apply to the positions, please visit:
&lt;br&gt;&lt;a href=&quot;http://www.MyChoiceEngine.com/Role/46749&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.MyChoiceEngine.com/Role/46749&lt;/a&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;**For immediate consideration, please send a copy of your MS Word resume
&lt;br&gt;with the words &amp;quot;Java Developer in Ft. Collins, CO&amp;quot; in the SUBJECT line
&lt;br&gt;to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18569867&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kelly_ackerman@...&lt;/a&gt; and please include the # of years of
&lt;br&gt;Java and J2EE development that you have in the body of the email. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;Kelly Ackerman
&lt;br&gt;IT Recruiting and Outplacement Specialist
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Administaff - Serving America's Best Small Businesses
&lt;br&gt;3600 Minnesota Drive | Suite 70 | Edina, MN 55435
&lt;br&gt;www.administaff.com &amp;lt;&lt;a href=&quot;http://www.administaff.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.administaff.com/&lt;/a&gt;&amp;gt; 
&lt;br&gt;OFFICE: 952-960-5331 
&lt;br&gt;TOLL FREE: 866-210-2471 x9605331 
&lt;br&gt;FAX: 800-521-9556
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5423&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5423&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FT---Contract-Java-Developer---Architect-Opportunities-in-Ft.-Collins%2C-CO-%28no-telecommuting%29-tp18569867p18569867.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17870254</id>
	<title>deviceatlas database(DA.jar) and ColdFusion</title>
	<published>2008-06-15T08:54:16Z</published>
	<updated>2008-06-15T08:54:16Z</updated>
	<author>
		<name>Piotr Artman</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;I am new in ColdFusion and I want to connect ColdFusion server with a database of mobile devices known as &amp;quot;Deviceatlas&amp;quot;. When I was trying to import the Da.jar file (&amp;lt;cfimport&amp;gt; tag) I received the message: &amp;quot;Cannot import the tag library specified by &lt;a href=&quot;http://localhost/test/lib/DA.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost/test/lib/DA.jar&lt;/a&gt;&amp;quot;.
&lt;br&gt;The same message appeared when I tried to import the file DA.tld.
&lt;br&gt;&lt;br&gt;Someone help me find a solution?
&lt;br&gt;&lt;br&gt;Deviceatlas database is free for developers. You can find it here: &lt;a href=&quot;http://deviceatlas.com/downloads&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://deviceatlas.com/downloads&lt;/a&gt;&lt;br&gt;&lt;br&gt;I will be grateful for any assistance.
&lt;br&gt;Greetings from Poland
&lt;br&gt;&lt;br&gt;Piotr 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5332&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5332&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/deviceatlas-database%28DA.jar%29-and-ColdFusion-tp17870254p17870254.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16461566</id>
	<title>6 months - Perm - CACI - Norfolk - Va</title>
	<published>2008-04-02T14:13:09Z</published>
	<updated>2008-04-02T14:13:09Z</updated>
	<author>
		<name>Michael P. Huddleston</name>
	</author>
	<content type="html">&amp;nbsp; 
&lt;br&gt;Mid - Sr. Java Programmer - Norfolk 
&lt;br&gt;&lt;br&gt;need Clearable people, no clearance needed
&lt;br&gt;&lt;br&gt;Person will be working on programming for the cash register system that
&lt;br&gt;is located in all commissary's aboard naval ships (thus the Navy
&lt;br&gt;Exchange end client) 
&lt;br&gt;&lt;br&gt;Project is called the ROM DS (Retail operational management for distance
&lt;br&gt;support system) 
&lt;br&gt;&lt;br&gt;Required: Java, SQL, VBA, XML, WSDL, HTML, JavaScript
&lt;br&gt;Desired: XSLT, CSS, AJAX, JSP, EJB, Struts, Java Servlets, Hibernate,
&lt;br&gt;JBoss, JUnit, Eclipse, ActiveX/COM, Requirements/Use case development,
&lt;br&gt;Access,
&lt;br&gt;SQL DB. 
&lt;br&gt;&lt;br&gt;Strong emphasis on Java. Contract-hire (backfill for someone who was
&lt;br&gt;permanent) Hire off phone screen. 
&lt;br&gt;&lt;br&gt;Mike Huddleston
&lt;br&gt;&lt;br&gt;Technical Recruiter
&lt;br&gt;&lt;br&gt;APEX Systems, Inc.
&lt;br&gt;4400 Cox Road
&lt;br&gt;&lt;br&gt;Richmond, VA - 23060
&lt;br&gt;&lt;br&gt;804-254-2600
&lt;br&gt;&lt;br&gt;800-452-7391
&lt;br&gt;&lt;br&gt;804-254-7290
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16461566&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mhuddleston@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;www.apexsystemsinc.com &amp;lt;&lt;a href=&quot;http://www.apexsystemsinc.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apexsystemsinc.com/&lt;/a&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5154&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5154&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/6-months---Perm---CACI---Norfolk---Va-tp16461566p16461566.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16262678</id>
	<title>Java Developers needed in KC</title>
	<published>2008-03-24T14:52:00Z</published>
	<updated>2008-03-24T14:52:00Z</updated>
	<author>
		<name>Lindsey Vosters</name>
	</author>
	<content type="html">We are currently looking to fill a 3 month contract-to-hire programmer analyst position ASAP! 
&lt;br&gt;&lt;br&gt;This position will be involved in the development of web based applications for use on the Internet. The position requires an understanding of the SCRUM software development lifecycle, service oriented architecture, object-oriented theory, web application design, and development principles. This developer will work directly with multiple IT areas and the business partners to design, develop, implement, and support business solutions. &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Qualifications:
&lt;br&gt;&lt;br&gt;Required
&lt;br&gt;&lt;br&gt;â¢ Professional with Bachelorâs degree preferred with 3+ years experience or equivalent combination of education and experience
&lt;br&gt;&lt;br&gt;â¢ Individual must be self-motivated and proactive with excellent interpersonal skills
&lt;br&gt;&lt;br&gt;â¢ Demonstrated ability to communicate clearly &amp; effectively with multiple technical &amp; non-technical groups
&lt;br&gt;&lt;br&gt;â¢ Intermediate to advanced experience with SCRUM software development lifecycle
&lt;br&gt;&lt;br&gt;â¢ Advanced understanding of application security and secure application development
&lt;br&gt;&lt;br&gt;â¢ Intermediate understanding of SOA concepts and practices 
&lt;br&gt;&lt;br&gt;â¢ Experience designing and developing test frameworks and processes to ensure code quality.
&lt;br&gt;&lt;br&gt;â¢ Advanced knowledge of these technologies: Java, JSP, Spring, Struts, XML and WSDL
&lt;br&gt;&lt;br&gt;â¢ Intermediate development experience with SQL (Select, Insert, Update, Delete, Stored Procedures, Query Optimization, SQL Tuning). Basic understanding of relational database concepts and design processes
&lt;br&gt;&lt;br&gt;â¢ Intermediate understanding of Windows operating systems and basic knowledge of Unix
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;Desired:
&lt;br&gt;&lt;br&gt;â¢ Experience developing ColdFusion solutions
&lt;br&gt;&lt;br&gt;â¢ Prior experience developing or supporting software in the financial services industry
&lt;br&gt;&lt;br&gt;â¢ Experience with automated testing tools
&lt;br&gt;&lt;br&gt;â¢ Experience with architecture, design and development of Portal Applications
&lt;br&gt;&lt;br&gt;*Please contact Lindsey Vosters at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16262678&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lvosters@...&lt;/a&gt; for more information regarding this position or for information about more Java contract opportunities.
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;AdobeÂ® ColdFusionÂ® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5136&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5136&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Java-Developers-needed-in-KC-tp16262678p16262678.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16262446</id>
	<title>Direct Placement Java Opportunity</title>
	<published>2008-03-24T14:41:48Z</published>
	<updated>2008-03-24T14:41:48Z</updated>
	<author>
		<name>Lindsey Vosters</name>
	</author>
	<content type="html">There is currently an Sustaining Developer position available in the Kansas City area. &amp;nbsp;The position will mainly consist of providing customer support for a company's international client base and developing maintenance releases for personalization &amp; mobile Internet solutions.
&lt;br&gt;&lt;br&gt;Duties &amp; Responsibilities:
&lt;br&gt;-Troubleshoot customer problems
&lt;br&gt;-Develop ClixSmart Product maintenance releases
&lt;br&gt;-Develop bug fixes for customer problems
&lt;br&gt;-Develop monthly support reports for all customers
&lt;br&gt;-Maintain the support section of the intranet
&lt;br&gt;-Answer customer questions
&lt;br&gt;-On-going input to processes &amp; product improvements
&lt;br&gt;-Assist in building strong customer relationships
&lt;br&gt;-On-Call support
&lt;br&gt;&lt;br&gt;Qualifications:
&lt;br&gt;-Degree in Computer Science or equivalent
&lt;br&gt;&lt;br&gt;Required Skills:
&lt;br&gt;-Java programming, candidates must demonstrate a desire to reach expert status in Java development
&lt;br&gt;-Candidates should have excellent customer service skills
&lt;br&gt;-Self-motivated, strong problem solving and analytical skills
&lt;br&gt;-Good knowldege of Internet technologies (e.g. Servlets, JSPs, HTTP, XML, XSLT)
&lt;br&gt;-Capable of working independently or in a team environment
&lt;br&gt;-Excellent verbal and written communication skills
&lt;br&gt;-Capable of working to tight deadlines when required
&lt;br&gt;&lt;br&gt;Desirable Skills and Experience:
&lt;br&gt;-Technical Support
&lt;br&gt;-Knowledge of Personalisation and Artificial Intelligence
&lt;br&gt;-Experience working with customers in different regions
&lt;br&gt;-Java and shell scripting
&lt;br&gt;-Unix
&lt;br&gt;-Oracle
&lt;br&gt;-Experience of various application servers
&lt;br&gt;&lt;br&gt;*Some travel may be required 
&lt;br&gt;*Excellent benefit package included
&lt;br&gt;&lt;br&gt;Please contact Lindsey Vosters at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16262446&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lvosters@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5135&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5135&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Direct-Placement-Java-Opportunity-tp16262446p16262446.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15773604</id>
	<title>Coldfusion or Java Leap Year Error?</title>
	<published>2008-02-29T23:08:14Z</published>
	<updated>2008-02-29T23:08:14Z</updated>
	<author>
		<name>Les Schmidt</name>
	</author>
	<content type="html">I have a CF application that collects data every 5 minutes from a weather station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the web page that displays &amp;nbsp;data for today vs. the same time yesterday stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now() correctly reports local time), then the WHERE clause would have been looking for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&lt;/a&gt;&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5049&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5049&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp15773604p15773604.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15773599</id>
	<title>Coldfusion or Java Leap Year Error?</title>
	<published>2008-02-29T23:07:14Z</published>
	<updated>2008-02-29T23:07:14Z</updated>
	<author>
		<name>Les Schmidt</name>
	</author>
	<content type="html">I have a CF application that collects data every 5 minutes from a weather station and many other devices at my home. &amp;nbsp;At about 4pm PST today (2/29), or midnight GMT on 3/1 , and for all of the 5 minute intervals thereafter, the web page that displays &amp;nbsp;data for today vs. the same time yesterday stopped working. &amp;nbsp;The error was:
&lt;br&gt;&lt;br&gt;Query Of Queries runtime error. Comparison exception while executing =.
&lt;br&gt;Query Of Queries runtime error.
&lt;br&gt;Type cast exception: Failed to cast object of type java.lang.String to java.util.Date. 
&lt;br&gt;&lt;br&gt;The specific query is looking for a recorddate (formatted as 'm/d H:m') is:
&lt;br&gt;&amp;lt;cfquery dbtype=&amp;quot;query&amp;quot; name=&amp;quot;yesterdayData&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT RecordDate,RecordTime,Rain24HR
&lt;br&gt;&amp;nbsp; FROM masterData
&lt;br&gt;&amp;nbsp; WHERE '#yRecordDate#'= recordDate 
&lt;br&gt;&amp;lt;/cfquery&amp;gt;
&lt;br&gt;&lt;br&gt;If somehow GMT is at play (and I don't understand how or why, because now() correctly reports local time), then the WHERE clause would have been looking for a recordDate of '2/29 16:00' when it stopped working.
&lt;br&gt;&lt;br&gt;I've searched all over and found a reference to a CF error. 
&lt;br&gt;&lt;a href=&quot;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.flatpackedworld.co.uk/blog/index.cfm/2008/2/28/Coldfusion-possible-Leap-Year-bug&lt;/a&gt;&lt;br&gt;&lt;br&gt;Because the query has worked continuously every 5 minutes for &amp;gt; 3 years, I'm suspecting that leap year is having a hand in causing this error. &amp;nbsp;Any suggestions? &amp;nbsp;possible solutions? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5048&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:5048&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Coldfusion-or-Java-Leap-Year-Error--tp15773599p15773599.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-10354827</id>
	<title>Smith goes open-source</title>
	<published>2007-05-07T04:05:32Z</published>
	<updated>2007-05-07T04:05:32Z</updated>
	<author>
		<name>smithproject</name>
	</author>
	<content type="html">After the very positive feedback from the ColdFusion® &amp;nbsp;Developer Community, youngculture decided to open source its ColdFusion® Server “Smith”. Till the end of April Smith Application Server has been downloaded more than 6’000 times.
&lt;br&gt;&lt;br&gt;Developers are welcome to join the project. The project is published under the GPL Licence and will be run and maintained by the newly founded Smith Open Source Software Association (SOSSA).
&lt;br&gt;&lt;br&gt;www.smithproject.org
&lt;br&gt;contact@smithproject.org</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Smith-goes-open-source-tp10354827p10354827.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7198927</id>
	<title>New free crossplattform ColdFusion Engine</title>
	<published>2006-11-06T05:54:50Z</published>
	<updated>2006-11-06T05:54:50Z</updated>
	<author>
		<name>smithproject</name>
	</author>
	<content type="html">Hello Everyone.
&lt;br&gt;&lt;br&gt;There is a new free java based ColdFusion engine available. If you are interested please check it out. Feedback is welcome as we consider to open source the engine.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.smithproject.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.smithproject.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-free-crossplattform-ColdFusion-Engine-tp7198927p7198927.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7185420</id>
	<title>RE: Programming Java in Coldfusion</title>
	<published>2006-11-05T06:15:18Z</published>
	<updated>2006-11-05T06:15:18Z</updated>
	<author>
		<name>Shawn Barnes-2</name>
	</author>
	<content type="html">Hello again. I did what you said and it still gave me those same 3 errors. I have been using a Java swing book beginners guide for this course. I didn't do so very well in programming part 1. My desire is not to be a programmer but a project manager but I understand that you need to know all of the aspects. This particular program also ask to use a mortage tax calculator in the program as well. The only trouble that I have with that is once errors are complete, where would incorporate the tax calculator. Do you know of any websites that would have examples of that. Any help would be greatly appreciated. 
&lt;br&gt;&lt;br&gt;&amp;quot;Vohra, Sandeep Singh&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7185420&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sandeepsingh.vohra@...&lt;/a&gt;&amp;gt; wrote: &amp;nbsp;Shawn - On first glance these are the main issues which you should fix..
&lt;br&gt;&lt;br&gt;-Please put a semi colon after line 3 and comment html code within Java
&lt;br&gt;Comments.
&lt;br&gt;&lt;br&gt;- Curly Braces for method - 'public void init()' should start after this
&lt;br&gt;line like this - 
&lt;br&gt;&lt;br&gt;public void init() { 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Similarly please close the brace for a method before the next method
&lt;br&gt;(public void start () ) starts..
&lt;br&gt;&lt;br&gt;I have tried to fix it without compiling it. It would be better if you
&lt;br&gt;compile now and check the errors and try to resolve them..This way you
&lt;br&gt;would learn even better.
&lt;br&gt;&lt;br&gt;I will try to fix your program as soon as I get time but meanwhile if
&lt;br&gt;you are working..keep on trying ..
&lt;br&gt;&lt;br&gt;-Sandy Vohra
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Shawn Barnes [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7185420&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shawnbarnes08@...&lt;/a&gt;] 
&lt;br&gt;Sent: Saturday, November 04, 2006 10:45 PM
&lt;br&gt;To: Java
&lt;br&gt;Subject: Re: Programming Java in Coldfusion
&lt;br&gt;&lt;br&gt;What's up Jason? I had a question about a java program. I am currently
&lt;br&gt;taking Java at the Univ of Phoenix. I have a J Applet program design and
&lt;br&gt;I have to insert a GUI. Also a mortage tax calculator has to be
&lt;br&gt;attached. I have 3 errors that i can't find. I used text pad to run my
&lt;br&gt;program. The errors are on lines 4, 16, and 87. I am fairly new to using
&lt;br&gt;Java and I have a java swing book that I have been following. Any help
&lt;br&gt;or advice will be greatly appreciated. Thanks.
&lt;br&gt;&lt;br&gt;import javax.swing;
&lt;br&gt;import java.awt;
&lt;br&gt;import javax.awt.event;
&lt;br&gt;//This HTML can be used to launch the applet:
&lt;br&gt;// &amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; 
&lt;br&gt;//
&lt;br&gt;&lt;br&gt;public class MyApplet extends JApplet
&lt;br&gt;{ JButton jbtnOne;
&lt;br&gt;JButton jbtnTwo;
&lt;br&gt;JLabel jlab;
&lt;br&gt;&lt;br&gt;//Called first.
&lt;br&gt;public void init()
&lt;br&gt;{
&lt;br&gt;try {
&lt;br&gt;&lt;br&gt;SwingUtilities.invokeAndWait (new Runnable ()
&lt;br&gt;public void run () {
&lt;br&gt;guiInit (); // intialize the GUI
&lt;br&gt;}
&lt;br&gt;});
&lt;br&gt;} catch (Exception exc) {
&lt;br&gt;System.out.println(&amp;quot;Can't create because of &amp;quot;+ exc);
&lt;br&gt;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;//Called second, after init (). Also called
&lt;br&gt;//whenever the applet is restarted.
&lt;br&gt;public void start ()
&lt;br&gt;&lt;br&gt;//Called when the applet is stopped.
&lt;br&gt;public void stop () {
&lt;br&gt;// Not used by this applet.
&lt;br&gt;}
&lt;br&gt;//Called when applet is terminated. This is
&lt;br&gt;//the last method executed.
&lt;br&gt;public void destroy() {
&lt;br&gt;// Not used by this applet
&lt;br&gt;}
&lt;br&gt;// Set up and intialize the GUI.
&lt;br&gt;private void guiInit() {
&lt;br&gt;// Set the applet to use flow layout.
&lt;br&gt;setLayout (new FlowLayout());
&lt;br&gt;// Create two buttons and a label.
&lt;br&gt;jbtnOne = new JButton (&amp;quot;One&amp;quot;);
&lt;br&gt;jbtnTwo = new JButton (&amp;quot;Two&amp;quot;);
&lt;br&gt;jlab = new JLabel (&amp;quot;Press a button.&amp;quot;);
&lt;br&gt;// Add actions listeners for the buttons.
&lt;br&gt;jbtnOne.addActionListner(new ActionListner () {
&lt;br&gt;public void actionPerformed(ActionEvent le {
&lt;br&gt;// jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;System.out.println(&amp;quot;stop() called...&amp;quot;) ;
&lt;br&gt;}
&lt;br&gt;} );
&lt;br&gt;jbtnTwo.addActionListener (new ActionListener () {
&lt;br&gt;public void actionPerformed (ActionEvent le {
&lt;br&gt;jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;}
&lt;br&gt;});
&lt;br&gt;jbtnTwo.addActionListener (new ActionListener () {
&lt;br&gt;public void actionPerformed(ActionEvent le) {
&lt;br&gt;jlab.setText (&amp;quot;Button Two pressed.&amp;quot;);
&lt;br&gt;}
&lt;br&gt;});
&lt;br&gt;//Add the components to the applet's content pane.
&lt;br&gt;getContentPane().add(jbtnOne);
&lt;br&gt;getContentPane().add(jbtnTwo);
&lt;br&gt;getContentPane().add(jlab);
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Jason West wrote:
&lt;br&gt;I was going to suggest Eclipse as well with CFEclipse. It has been
&lt;br&gt;incorporated as a standard IDE with plug in at both Cingular wireless
&lt;br&gt;and
&lt;br&gt;AIG for doing development with both JAVA and CFML.
&lt;br&gt;&lt;br&gt;/jlw
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 11/1/06, James Holmes wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The manual is good for this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You'd be better off using Eclipse to do Java and CF (via the CFEclipse
&lt;br&gt;&amp;gt; Plugin) in the same IDE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/1/06, Henry Wright wrote:
&lt;br&gt;&amp;gt; &amp;gt; I am fairly new to coldfusion and would like to know how I can go
&lt;/div&gt;about
&lt;br&gt;&amp;gt; programming java code in coldfusion. I have a number of CFC's that I
&lt;br&gt;have
&lt;br&gt;&amp;gt; created and would prefer to use java and the java framework. Is this
&lt;br&gt;&amp;gt; possible?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am using BlueJ at the moment when I programme in Java and I use
&lt;br&gt;&amp;gt; Dreamweaver when I programme in CF. Can I use Dreamweaver and combine
&lt;br&gt;the 2
&lt;br&gt;&amp;gt; languages?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX/MXAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3305&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3305&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7185420.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7181792</id>
	<title>RE: Programming Java in Coldfusion</title>
	<published>2006-11-04T19:57:38Z</published>
	<updated>2006-11-04T19:57:38Z</updated>
	<author>
		<name>Vohra, Sandeep Singh</name>
	</author>
	<content type="html">Shawn - On first glance these are the main issues which you should fix..
&lt;br&gt;&lt;br&gt;-Please put a semi colon after line 3 and comment html code within Java
&lt;br&gt;Comments.
&lt;br&gt;&lt;br&gt;- Curly Braces for method - 'public void init()' should start after this
&lt;br&gt;line like this - 
&lt;br&gt;&lt;br&gt;public void init() { 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Similarly please close the brace for a method before the next method
&lt;br&gt;(public void start () ) starts..
&lt;br&gt;&lt;br&gt;I have tried to fix it without compiling it. It would be better if you
&lt;br&gt;compile now and check the errors and try to resolve them..This way you
&lt;br&gt;would learn even better.
&lt;br&gt;&lt;br&gt;I will try to fix your program as soon as I get time but meanwhile if
&lt;br&gt;you are working..keep on trying ..
&lt;br&gt;&lt;br&gt;-Sandy Vohra
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Shawn Barnes [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7181792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shawnbarnes08@...&lt;/a&gt;] 
&lt;br&gt;Sent: Saturday, November 04, 2006 10:45 PM
&lt;br&gt;To: Java
&lt;br&gt;Subject: Re: Programming Java in Coldfusion
&lt;br&gt;&lt;br&gt;What's up Jason? I had a question about a java program. I am currently
&lt;br&gt;taking Java at the Univ of Phoenix. I have a J Applet program design and
&lt;br&gt;I have to insert a GUI. Also a mortage tax calculator has to be
&lt;br&gt;attached. I have 3 errors that i can't find. I used text pad to run my
&lt;br&gt;program. The errors are on lines 4, 16, and 87. I am fairly new to using
&lt;br&gt;Java and I have a java swing book that I have been following. Any help
&lt;br&gt;or advice will be greatly appreciated. Thanks.
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; import javax.swing;
&lt;br&gt;import java.awt;
&lt;br&gt;import javax.awt.event;
&lt;br&gt;//This HTML can be used to launch the applet:
&lt;br&gt;//&amp;lt;object code= &amp;quot;MyApplet&amp;quot; width=240 height=100&amp;gt;
&lt;br&gt;//&amp;lt;/object&amp;gt;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;public class MyApplet extends JApplet
&lt;br&gt;{ JButton jbtnOne;
&lt;br&gt;JButton jbtnTwo;
&lt;br&gt;JLabel jlab;
&lt;br&gt;&lt;br&gt;&amp;nbsp; //Called first.
&lt;br&gt;public void init()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&lt;br&gt;&amp;nbsp; SwingUtilities.invokeAndWait (new Runnable ()
&lt;br&gt;&amp;nbsp; public void run () {
&lt;br&gt;&amp;nbsp; guiInit (); // intialize the GUI
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; });
&lt;br&gt;&amp;nbsp;} catch (Exception exc) {
&lt;br&gt;&amp;nbsp;System.out.println(&amp;quot;Can't create because of &amp;quot;+ exc);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;//Called second, after init (). Also called
&lt;br&gt;//whenever the applet is restarted.
&lt;br&gt;public void start ()
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; //Called when the applet is stopped.
&lt;br&gt;public void stop () {
&lt;br&gt;// Not used by this applet.
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; //Called when applet is terminated. This is
&lt;br&gt;//the last method executed.
&lt;br&gt;public void destroy() {
&lt;br&gt;// Not used by this applet
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;// Set up and intialize the GUI.
&lt;br&gt;private void guiInit() {
&lt;br&gt;// Set the applet to use flow layout.
&lt;br&gt;setLayout (new FlowLayout());
&lt;br&gt;&amp;nbsp; // Create two buttons and a label.
&lt;br&gt;jbtnOne = new JButton (&amp;quot;One&amp;quot;);
&lt;br&gt;jbtnTwo = new JButton (&amp;quot;Two&amp;quot;);
&lt;br&gt;&amp;nbsp; jlab = new JLabel (&amp;quot;Press a button.&amp;quot;);
&lt;br&gt;&amp;nbsp; // Add actions listeners for the buttons.
&lt;br&gt;jbtnOne.addActionListner(new ActionListner () {
&lt;br&gt;&amp;nbsp;public void actionPerformed(ActionEvent le &amp;nbsp;{
&lt;br&gt;// jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;System.out.println(&amp;quot;stop() called...&amp;quot;) ;
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; } );
&lt;br&gt;&amp;nbsp; jbtnTwo.addActionListener (new ActionListener () {
&lt;br&gt;&amp;nbsp; &amp;nbsp;public void actionPerformed (ActionEvent le &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;});
&lt;br&gt;&amp;nbsp; jbtnTwo.addActionListener (new ActionListener () &amp;nbsp;{
&lt;br&gt;&amp;nbsp;public void actionPerformed(ActionEvent le) &amp;nbsp; {
&lt;br&gt;&amp;nbsp;jlab.setText (&amp;quot;Button Two pressed.&amp;quot;);
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; });
&lt;br&gt;&amp;nbsp; //Add the components to the applet's content pane.
&lt;br&gt;getContentPane().add(jbtnOne);
&lt;br&gt;getContentPane().add(jbtnTwo);
&lt;br&gt;getContentPane().add(jlab);
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;Jason West &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7181792&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jlwestsr@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;nbsp; I was going to suggest Eclipse as well with CFEclipse. It has been
&lt;br&gt;incorporated as a standard IDE with plug in at both Cingular wireless
&lt;br&gt;and
&lt;br&gt;AIG for doing development with both JAVA and CFML.
&lt;br&gt;&lt;br&gt;/jlw
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 11/1/06, James Holmes wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The manual is good for this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You'd be better off using Eclipse to do Java and CF (via the CFEclipse
&lt;br&gt;&amp;gt; Plugin) in the same IDE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/1/06, Henry Wright wrote:
&lt;br&gt;&amp;gt; &amp;gt; I am fairly new to coldfusion and would like to know how I can go
&lt;/div&gt;about
&lt;br&gt;&amp;gt; programming java code in coldfusion. I have a number of CFC's that I
&lt;br&gt;have
&lt;br&gt;&amp;gt; created and would prefer to use java and the java framework. Is this
&lt;br&gt;&amp;gt; possible?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am using BlueJ at the moment when I programme in Java and I use
&lt;br&gt;&amp;gt; Dreamweaver when I programme in CF. Can I use Dreamweaver and combine
&lt;br&gt;the 2
&lt;br&gt;&amp;gt; languages?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX/MXAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3302&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3302&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7181792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7181736</id>
	<title>Re: Programming Java in Coldfusion</title>
	<published>2006-11-04T19:45:28Z</published>
	<updated>2006-11-04T19:45:28Z</updated>
	<author>
		<name>Shawn Barnes-2</name>
	</author>
	<content type="html">What's up Jason? I had a question about a java program. I am currently taking Java at the Univ of Phoenix. I have a J Applet program design and I have to insert a GUI. Also a mortage tax calculator has to be attached. I have 3 errors that i can't find. I used text pad to run my program. The errors are on lines 4, 16, and 87. I am fairly new to using Java and I have a java swing book that I have been following. Any help or advice will be greatly appreciated. Thanks.
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; import javax.swing;
&lt;br&gt;import java.awt;
&lt;br&gt;import javax.awt.event
&lt;br&gt;This HTML can be used to launch the applet:
&lt;br&gt;&amp;lt;object code= &amp;quot;MyApplet&amp;quot; width=240 height=100&amp;gt;
&lt;br&gt;&amp;lt;/object&amp;gt;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;public class MyApplet extends JApplet
&lt;br&gt;{ JButton jbtnOne;
&lt;br&gt;JButton jbtnTwo;
&lt;br&gt;JLabel jlab;
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; //Called first.
&lt;br&gt;public void init()
&lt;br&gt;&amp;nbsp; &amp;nbsp; try {
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; SwingUtilities.invokeAndWait (new Runnable ()
&lt;br&gt;&amp;nbsp; public void run () {
&lt;br&gt;&amp;nbsp; guiInit (); // intialize the GUI
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; });
&lt;br&gt;&amp;nbsp;} catch (Exception exc) {
&lt;br&gt;&amp;nbsp;System.out.println(&amp;quot;Can't create because of &amp;quot;+ exc);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;{
&lt;br&gt;//Called second, after init (). Also called
&lt;br&gt;//whenever the applet is restarted.
&lt;br&gt;public void start ()
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; //Called when the applet is stopped.
&lt;br&gt;public void stop () {
&lt;br&gt;// Not used by this applet.
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; //Called when applet is terminated. This is
&lt;br&gt;//the last method executed.
&lt;br&gt;public void destroy() {
&lt;br&gt;// Not used by this applet
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;// Set up and intialize the GUI.
&lt;br&gt;private void guiInit() {
&lt;br&gt;// Set the applet to use flow layout.
&lt;br&gt;setLayout (new FlowLayout());
&lt;br&gt;&amp;nbsp; // Create two buttons and a label.
&lt;br&gt;jbtnOne = new JButton (&amp;quot;One&amp;quot;);
&lt;br&gt;jbtnTwo = new JButton (&amp;quot;Two&amp;quot;);
&lt;br&gt;&amp;nbsp; jlab = new JLabel (&amp;quot;Press a button.&amp;quot;);
&lt;br&gt;&amp;nbsp; // Add actions listeners for the buttons.
&lt;br&gt;jbtnOne.addActionListner(new ActionListner () {
&lt;br&gt;&amp;nbsp;public void actionPerformed(ActionEvent le &amp;nbsp;{
&lt;br&gt;// jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;System.out.println(&amp;quot;stop() called...&amp;quot;) ;
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; } );
&lt;br&gt;&amp;nbsp; jbtnTwo.addActionListener (new ActionListener () {
&lt;br&gt;&amp;nbsp; &amp;nbsp;public void actionPerformed (ActionEvent le &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;jlab.setText (&amp;quot;Button One pressed.&amp;quot;);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;});
&lt;br&gt;&amp;nbsp; jbtnTwo.addActionListener (new ActionListener () &amp;nbsp;{
&lt;br&gt;&amp;nbsp;public void actionPerformed(ActionEvent le) &amp;nbsp; {
&lt;br&gt;&amp;nbsp;jlab.setText (&amp;quot;Button Two pressed.&amp;quot;);
&lt;br&gt;}
&lt;br&gt;&amp;nbsp; });
&lt;br&gt;&amp;nbsp; //Add the components to the applet's content pane.
&lt;br&gt;getContentPane().add(jbtnOne);
&lt;br&gt;getContentPane().add(jbtnTwo);
&lt;br&gt;getContentPane().add(jlab);
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;Jason West &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7181736&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jlwestsr@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;nbsp; I was going to suggest Eclipse as well with CFEclipse. It has been
&lt;br&gt;incorporated as a standard IDE with plug in at both Cingular wireless and
&lt;br&gt;AIG for doing development with both JAVA and CFML.
&lt;br&gt;&lt;br&gt;/jlw
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 11/1/06, James Holmes wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The manual is good for this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You'd be better off using Eclipse to do Java and CF (via the CFEclipse
&lt;br&gt;&amp;gt; Plugin) in the same IDE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/1/06, Henry Wright wrote:
&lt;br&gt;&amp;gt; &amp;gt; I am fairly new to coldfusion and would like to know how I can go about
&lt;br&gt;&amp;gt; programming java code in coldfusion. I have a number of CFC's that I have
&lt;br&gt;&amp;gt; created and would prefer to use java and the java framework. Is this
&lt;br&gt;&amp;gt; possible?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am using BlueJ at the moment when I programme in Java and I use
&lt;br&gt;&amp;gt; Dreamweaver when I programme in CF. Can I use Dreamweaver and combine the 2
&lt;br&gt;&amp;gt; languages?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX/MXAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3301&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3301&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7181736.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7114840</id>
	<title>Re: Programming Java in Coldfusion</title>
	<published>2006-11-01T06:09:00Z</published>
	<updated>2006-11-01T06:09:00Z</updated>
	<author>
		<name>Jason West</name>
	</author>
	<content type="html">I was going to suggest Eclipse as well with CFEclipse. &amp;nbsp;It has been
&lt;br&gt;incorporated as a standard IDE with plug in at both Cingular wireless and
&lt;br&gt;AIG for doing development with both JAVA and CFML.
&lt;br&gt;&lt;br&gt;/jlw
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 11/1/06, James Holmes &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7114840&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james.holmes@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The manual is good for this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You'd be better off using Eclipse to do Java and CF (via the CFEclipse
&lt;br&gt;&amp;gt; Plugin) in the same IDE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/1/06, Henry Wright &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7114840&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henry.wright@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; I am fairly new to coldfusion and would like to know how I can go about
&lt;br&gt;&amp;gt; programming java code in coldfusion. I have a number of CFC's that I have
&lt;br&gt;&amp;gt; created and would prefer to use java and the java framework. Is this
&lt;br&gt;&amp;gt; possible?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am using BlueJ at the moment when I programme in Java and I use
&lt;br&gt;&amp;gt; Dreamweaver when I programme in CF. Can I use Dreamweaver and combine the 2
&lt;br&gt;&amp;gt; languages?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX/MXAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3286&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3286&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7114840.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7113086</id>
	<title>Re: Programming Java in Coldfusion</title>
	<published>2006-11-01T04:45:36Z</published>
	<updated>2006-11-01T04:45:36Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">The manual is good for this:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001557.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;You'd be better off using Eclipse to do Java and CF (via the CFEclipse
&lt;br&gt;Plugin) in the same IDE.
&lt;br&gt;&lt;br&gt;On 11/1/06, Henry Wright &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7113086&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henry.wright@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I am fairly new to coldfusion and would like to know how I can go about programming java code in coldfusion. I have a number of CFC's that I have created and would prefer to use java and the java framework. Is this possible?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am using BlueJ at the moment when I programme in Java and I use Dreamweaver when I programme in CF. Can I use Dreamweaver and combine the 2 languages?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX/MXAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3283&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3283&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7113086.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7110379</id>
	<title>Programming Java in Coldfusion</title>
	<published>2006-11-01T00:26:00Z</published>
	<updated>2006-11-01T00:26:00Z</updated>
	<author>
		<name>Henry Wright-3</name>
	</author>
	<content type="html">I am fairly new to coldfusion and would like to know how I can go about programming java code in coldfusion. I have a number of CFC's that I have created and would prefer to use java and the java framework. Is this possible? 
&lt;br&gt;&lt;br&gt;I am using BlueJ at the moment when I programme in Java and I use Dreamweaver when I programme in CF. Can I use Dreamweaver and combine the 2 languages?
&lt;br&gt;&lt;br&gt;Any help would be appreciated.
&lt;br&gt;&lt;br&gt;H
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3282&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3282&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Programming-Java-in-Coldfusion-tp7110379p7110379.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6820687</id>
	<title>RE: Need Assistance on Assignment</title>
	<published>2006-10-15T07:37:00Z</published>
	<updated>2006-10-15T07:37:00Z</updated>
	<author>
		<name>Ben Nadel</name>
	</author>
	<content type="html">Terry,
&lt;br&gt;&lt;br&gt;I don't know that much about Java, but I am learning as I go. While not
&lt;br&gt;all of it applies nicely to CF, I have found this site to have some
&lt;br&gt;really great info AND examples:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://javaalmanac.com/egs/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://javaalmanac.com/egs/index.html&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;......................
&lt;br&gt;Ben Nadel
&lt;br&gt;Certified Advanced ColdFusion Developer
&lt;br&gt;www.bennadel.com
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Terry Barnes [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6820687&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shawnbarnes08@...&lt;/a&gt;] 
&lt;br&gt;Sent: Saturday, October 14, 2006 3:49 PM
&lt;br&gt;To: Java
&lt;br&gt;Subject: Need Assistance on Assignment
&lt;br&gt;&lt;br&gt;I have an assigment dealing with Java class date. I will attach the link
&lt;br&gt;as well. It deals with time. I need an program source code example that
&lt;br&gt;shows inheritance and polymorphism.
&lt;br&gt;&lt;br&gt;java.util
&lt;br&gt;Class Date
&lt;br&gt;java.lang.Object
&lt;br&gt;&amp;nbsp; java.util.Date
&lt;br&gt;&lt;br&gt;All Implemented Interfaces: 
&lt;br&gt;Cloneable, Comparable, Serializable
&lt;br&gt;Direct Known Subclasses: 
&lt;br&gt;Date, Time, Timestamp 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3262&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3262&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-Assistance-on-Assignment-tp6814324p6820687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6814324</id>
	<title>Need Assistance on Assignment</title>
	<published>2006-10-14T13:48:52Z</published>
	<updated>2006-10-14T13:48:52Z</updated>
	<author>
		<name>Shawn Barnes-2</name>
	</author>
	<content type="html">I have an assigment dealing with Java class date. I will attach the link as well. It deals with time. I need an program source code example that shows inheritance and polymorphism.
&lt;br&gt;&lt;br&gt;java.util 
&lt;br&gt;Class Date
&lt;br&gt;java.lang.Object
&lt;br&gt;&amp;nbsp; java.util.Date
&lt;br&gt;&lt;br&gt;All Implemented Interfaces: 
&lt;br&gt;Cloneable, Comparable, Serializable 
&lt;br&gt;Direct Known Subclasses: 
&lt;br&gt;Date, Time, Timestamp 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3261&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3261&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-Assistance-on-Assignment-tp6814324p6814324.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6744779</id>
	<title>Full time Java Programmer in NYC area needed</title>
	<published>2006-10-10T14:21:42Z</published>
	<updated>2006-10-10T14:21:42Z</updated>
	<author>
		<name>Robert Walters-2</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;Looking for a full time Java programmer (not JSP) in the NYC area. &amp;nbsp;Nutch and Lucene experience a plus but not neccessary.
&lt;br&gt;&lt;br&gt;Please send resumes to: &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6744779&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;careers@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;Thanks......Rob Walters
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3257&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/message.cfm/messageid:3257&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/Java/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/Java/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Full-time-Java-Programmer-in-NYC-area-needed-tp6744779p6744779.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-1335897</id>
	<title>JMS &amp; CF5</title>
	<published>2005-11-04T06:24:08Z</published>
	<updated>2005-11-04T06:24:08Z</updated>
	<author>
		<name>Cesana, Paolo</name>
	</author>
	<content type="html">I have never used JMS before and I am looking for a good starting point
&lt;br&gt;to do my research. First of all I'm still running CF5 Enterprise OS
&lt;br&gt;Version 5.0, Service Pack 4 OS Build Number 2195 with j2re1.4.0. &amp;nbsp;Could
&lt;br&gt;JMS run with the current setup? If so, is there a good guide on how to
&lt;br&gt;implement messaging within CF? 
&lt;br&gt;Tks/Bst Rgds
&lt;br&gt;&amp;nbsp;__PC
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
&lt;br&gt;Ticket application
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=48&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=48&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1979&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1979&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JMS---CF5-tp1335897p1335897.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-844952</id>
	<title>change the height of jProgressBar</title>
	<published>2005-09-12T16:50:36Z</published>
	<updated>2005-09-12T16:50:36Z</updated>
	<author>
		<name>Johnny Le</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I have a horizontal progress bar. &amp;nbsp;Its height seems to be smaller than the buttons. &amp;nbsp;I would like to make them equal in height. &amp;nbsp;I tried progress.setSize(width, height) but that didn't work. &amp;nbsp;Is there another to set the height?
&lt;br&gt;&lt;br&gt;Johnny
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Purchase Studio MX from House of Fusion, a Macromedia Authorized Affiliate and support the CF community.
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=50&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=50&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1835&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1835&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/change-the-height-of-jProgressBar-tp844952p844952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-795484</id>
	<title>Re: put JCombox inside JScrollPane?</title>
	<published>2005-09-06T11:08:35Z</published>
	<updated>2005-09-06T11:08:35Z</updated>
	<author>
		<name>Johnny Le</name>
	</author>
	<content type="html">I mean JTable, not JScrollPane. Sorry:-)
&lt;br&gt;&lt;br&gt;Johnny
&lt;br&gt;&amp;gt;Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Is it possible to put a JCombox inside a JScrollPane as one of its cells? &amp;nbsp;If so, how?
&lt;br&gt;&amp;gt;Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Johnny
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how CFTicket can increase your company's customer support 
&lt;br&gt;efficiency by 100%
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1822&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1822&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/put-JCombox-inside-JScrollPane--tp794364p795484.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-794364</id>
	<title>put JCombox inside JScrollPane?</title>
	<published>2005-09-06T09:25:04Z</published>
	<updated>2005-09-06T09:25:04Z</updated>
	<author>
		<name>Johnny Le</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Is it possible to put a JCombox inside a JScrollPane as one of its cells? &amp;nbsp;If so, how?
&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Johnny
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
&lt;br&gt;Ticket application
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=48&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=48&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1821&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1821&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/put-JCombox-inside-JScrollPane--tp794364p794364.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-778024</id>
	<title>Re: send data back to a CF page from a Java applet?</title>
	<published>2005-09-03T13:51:12Z</published>
	<updated>2005-09-03T13:51:12Z</updated>
	<author>
		<name>Simon Horwith</name>
	</author>
	<content type="html">you can submit the data rfom Java via HTTP or SOAP, or your applet could 
&lt;br&gt;talk with an event gateway using JMS or some other protocol.
&lt;br&gt;&lt;br&gt;~Simon
&lt;br&gt;&lt;br&gt;Simon Horwith
&lt;br&gt;CIO, AboutWeb - &lt;a href=&quot;http://www.aboutweb.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aboutweb.com&lt;/a&gt;&lt;br&gt;Editor-in-Chief, ColdFusion Developers Journal
&lt;br&gt;Member of Team Macromedia
&lt;br&gt;Macromedia Certified Master Instructor
&lt;br&gt;Blog - &lt;a href=&quot;http://www.horwith.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.horwith.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Johnny Le wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;How do you send data back to a CF page from a Java Applet? &amp;nbsp;I want to build an applet that has a form. &amp;nbsp;When the data submits the form, the CF page will process it. &amp;nbsp;So how do I make the data in the Java Applet available in a CF page to process?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Johnny
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how to get a fax number that sends and receives faxes using your current email address
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=64&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=64&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1820&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1820&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/send-data-back-to-a-CF-page-from-a-Java-applet--tp774854p778024.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-774854</id>
	<title>send data back to a CF page from a Java applet?</title>
	<published>2005-09-02T18:33:18Z</published>
	<updated>2005-09-02T18:33:18Z</updated>
	<author>
		<name>Johnny Le</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;How do you send data back to a CF page from a Java Applet? &amp;nbsp;I want to build an applet that has a form. &amp;nbsp;When the data submits the form, the CF page will process it. &amp;nbsp;So how do I make the data in the Java Applet available in a CF page to process?
&lt;br&gt;&lt;br&gt;Johnny
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how CFTicket can increase your company's customer support 
&lt;br&gt;efficiency by 100%
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1819&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1819&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/send-data-back-to-a-CF-page-from-a-Java-applet--tp774854p774854.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-536580</id>
	<title>Re: How do you create a Java array of bytes using CF?</title>
	<published>2005-08-02T08:04:34Z</published>
	<updated>2005-08-02T08:04:34Z</updated>
	<author>
		<name>Enayet Rasul</name>
	</author>
	<content type="html">Thanks simon,
&lt;br&gt;Late at nite, I stumbled on this blog posting also (which also used
&lt;br&gt;christian's posting to help him) and I was able to figure it out.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://tech.badpen.com/index.cfm?mode=entry&amp;entry=19&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tech.badpen.com/index.cfm?mode=entry&amp;entry=19&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;-Enayet
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 8/2/05, Simon Horwith &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=536580&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;simon@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; check out Christian Cantrell's blog:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://weblogs.macromedia.com/cantrell/archives/2004/01/byte_arrays_and.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.macromedia.com/cantrell/archives/2004/01/byte_arrays_and.cfm&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Simon Horwith
&lt;br&gt;&amp;gt; CIO, AboutWeb - &lt;a href=&quot;http://www.aboutweb.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aboutweb.com&lt;/a&gt;&lt;br&gt;&amp;gt; Editor-in-Chief, ColdFusion Developers Journal
&lt;br&gt;&amp;gt; Member of Team Macromedia
&lt;br&gt;&amp;gt; Macromedia Certified Master Instructor
&lt;br&gt;&amp;gt; Blog - &lt;a href=&quot;http://www.horwith.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.horwith.com&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Enayet Rasul wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt;I'm helping a co-worker on this one. She needs to create an array of
&lt;br&gt;&amp;gt; &amp;gt;bytes for some application she's using (the sample app was done in
&lt;br&gt;&amp;gt; &amp;gt;VB). Below is the sample VB code:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Dim key() As Byte = {&amp;H30, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0,
&lt;br&gt;&amp;gt; &amp;gt;&amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H3, &amp;H30, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0, &amp;H0,
&lt;br&gt;&amp;gt; &amp;gt;&amp;H0}
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Is there a way to create an array of bytes in Java? I got as far as
&lt;br&gt;&amp;gt; &amp;gt;writing this code..but I failed miserably in adding an element.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;lt;cfobject action=&amp;quot;create&amp;quot; type=&amp;quot;java&amp;quot; class=&amp;quot;java.util.Vector&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;name=&amp;quot;JavaArray&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;lt;cfobject action=&amp;quot;create&amp;quot; type=&amp;quot;java&amp;quot; class=&amp;quot;java.lang.Byte&amp;quot; name=&amp;quot;JavaByte&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;lt;cfset temp = JavaByte.init('H30')&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;lt;cfset temp = JavaArray.addElement(JavaByte)&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;I realize ColdFusion and Java does some different data type
&lt;br&gt;&amp;gt; &amp;gt;conversions to each other...but I don't know if this is out-of-scope
&lt;br&gt;&amp;gt; &amp;gt;for CF to do.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Find out how CFTicket can increase your company's customer support 
&lt;br&gt;efficiency by 100%
&lt;br&gt;&lt;a href=&quot;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/banners/view.cfm?bannerid=49&lt;/a&gt;&lt;br&gt;&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:40:1780&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:40:1780&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/40&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:40&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.40&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-you-create-a-Java-array-of-bytes-using-CF--tp533631p536580.html" />
</entry>

</feed>
