<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Tue, 01 Dec 2009 11:21:01 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2009-12-01T11:21:01Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>what's the value of an autosuggest input field?</title>
      <link>https://forums.adobe.com/thread/532661</link>
      <description>&lt;!-- [DocumentBodyStart:619359ff-1dac-4a49-85c4-b46ff387e986] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Under normal circumstances, I can copy the content of the users's form field input into another field, just by simply javascripting (using onChange, and this.form.field.value).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In a CFInput field that does autosuggest (like in Ben Forta's simple examples), this doesn't work - 1) onChange behaves differently, and 2) the field value contains the original user search input, not the value that he chose from the suggested values.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I address the value that was chosen by the user?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's what I actually need to do:&lt;/p&gt;&lt;p&gt;I have a table with several columns and more than 70000 entries. There is a key column that users can choose from, and there is a text column that users can also choose from - either way should work. (Select fields don't work because there are too many values - it seems I have to use text fields with autosuggest.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When the user chooses a numerical key value, the text field should be automatically filled with the corresponding text value. When the user instead chooses from the text values, the numerical key should automatically filled with the corresponding value. (This is what I tried to do with normal Javascript but it didn't work as explained above.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To make things even more complicated, there are two more columns whose values should automatically be filled into the corresponding form fields as soon as the user has chosen a row.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have no idea how to program this but I'm sure it is easily possible if one knows one's way around Ajax.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;-Michael&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:619359ff-1dac-4a49-85c4-b46ff387e986] --&gt;&lt;img src='/beacon?t=1415920076176' /&gt;</description>
      <pubDate>Tue, 01 Dec 2009 11:21:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/532661</guid>
      <dc:date>2009-12-01T11:21:01Z</dc:date>
      <clearspace:dateToText>2 years 8 months ago</clearspace:dateToText>
      <clearspace:replyCount>17</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>&lt;cfdocument&gt; variables and flow</title>
      <link>https://forums.adobe.com/thread/717210</link>
      <description>&lt;!-- [DocumentBodyStart:4e231758-9f9b-4d00-b1aa-0aa1a4e9227d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can someone please explain, or point me to a place that explains? I couldn't find anything that really tells me what is going on here.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My problem: a multi page PDF has page headers (created by &amp;lt;cfdocumentitem type="header"&amp;gt;). In the body of the data (in my case, tabular data), I need to know in each line if an automatic page break has happened - in this case I need to display a table header (one that contains dynamic data, not something static that I could put into the cfdocument-header). &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So far, I have found no way to detect that a page break has happened. Working with variables doesn't work at all. The logic of this thing seems to be very strange, and counterintuitive.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to understand&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) What is the program flow here? Are cfdocument body, header, and footer executed somehow sequentially, and in what order?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2) especially, is there any way to use variables that are known to body, header, and footer in a consistent way so that there can be some kind of logic? if I create a variable outside of the &amp;lt;cfdocument&amp;gt;, I expect it to be known to all parts of the PDF - to the body, to the header, and to the footer. I already found that I need to specify "evalatprint=true" in header and footer if I want to use the variables there.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But such a global variable, incremented (and successfully displayed) in the header, stays at zero in the page body until the end, and its value is strangely different in the footer than in the header (footer variable value = header variable value - 1).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;-Michael&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4e231758-9f9b-4d00-b1aa-0aa1a4e9227d] --&gt;</description>
      <pubDate>Wed, 08 Sep 2010 18:13:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/717210</guid>
      <dc:date>2010-09-08T18:13:35Z</dc:date>
      <clearspace:dateToText>4 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Eclipse + RDS + htaccess doesn't work</title>
      <link>https://forums.adobe.com/thread/32192</link>
      <description>&lt;!-- [DocumentBodyStart:59166031-f6c7-42d8-a289-bea524fc6ad0] --&gt;&lt;div class="jive-rendered-content"&gt;any remedies for this? I try to develop via RDS on a 64bit
Linux CF8 system, using CFEclipse with the CF8 extensions. Today
the root directory got protected via a htaccess login - while
Homesite displays the new login window and works as usual after the
login, Eclipse shows an error saying it can't connect to the RDS
site. I couldn't find a way telling it to login first.&lt;/div&gt;&lt;!-- [DocumentBodyEnd:59166031-f6c7-42d8-a289-bea524fc6ad0] --&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:01:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/32192</guid>
      <dc:date>2008-11-19T11:01:53Z</dc:date>
      <clearspace:dateToText>5 years 12 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>java.lang.NullPointerException starting JNDI</title>
      <link>https://forums.adobe.com/thread/181326</link>
      <description>&lt;!-- [DocumentBodyStart:996f6fe0-7575-4ab1-a3cd-ae544d78bc4c] --&gt;&lt;div class="jive-rendered-content"&gt;any idea what to do about this?
&lt;br/&gt;
&lt;br/&gt;-Michael
&lt;br/&gt;
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
client...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - The metrics
service is disabled for the J2EE edition
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
xmlrpc...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
graphing...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
verity...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
archive...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
document...
&lt;br/&gt;01/16 11:09:41 Information [scheduler-15] - Starting
eventgateway...
&lt;br/&gt;01/16 11:09:42 Information [scheduler-15] - Starting Event
Backend Handlers
&lt;br/&gt;01/16 11:09:42 Information [scheduler-15] - Initialized
EventRequestDispatcher with a Thread Pool size of 20
&lt;br/&gt;01/16 11:09:42 Information [scheduler-15] - Initializing
EventRequestHandler
&lt;br/&gt;01/16 11:09:42 Information [scheduler-15] - Starting Event
Gateways
&lt;br/&gt;01/16 11:09:42 Information [scheduler-15] - ColdFusion
started
&lt;br/&gt;01/16 11:09:42 Information [Thread-32] - Starting Gateway:
ID=asynclog, Class=coldfusion.eventgateway.cfml.CfmlGateway
&lt;br/&gt;Server cfusion ready (startup time: 13 seconds)
&lt;br/&gt;
&lt;br/&gt;Starting Macromedia JRun 4.0 (Build 106363), 2 server
&lt;br/&gt;java.lang.NullPointerExceptionNo jndi.properties file was
found in 2's SERVER-INF directory. The JRun kernel requires JNDI
information.
&lt;br/&gt;
&lt;br/&gt; at
java.util.Properties$LineReader.readLine(Properties.java:365)
&lt;br/&gt; at java.util.Properties.load(Properties.java:293)
&lt;br/&gt; at jrunx.No jndi.properties file was found in 2's SERVER-INF
directory. The JRun kernel requires JNDI
information.kernel.JRun.startServer(JRun.java:544)
&lt;br/&gt; at jrunx.kernel.JRun.&amp;lt;init&amp;gt;(JRun.java:493)
&lt;br/&gt; at jrunx.kernel.JRun$1.run(JRun.java:346)
&lt;br/&gt; a
&lt;br/&gt;t java.security.AccessController.doPrivileged(Native Method)
&lt;br/&gt; at jrunx.kernel.JRun.start(JRun.java:343)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br/&gt; at jrunx.kernel.JRun.invoke(JRun.java:180)
&lt;br/&gt; at jrunx.kernel.JRun.main(JRun.java:168)
&lt;br/&gt;[1]java.lang.NullPointerException: No URL or file descriptor
available
&lt;br/&gt; at
jrunx.kernel.DeploymentService.loadServices(DeploymentService.java:48)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
&lt;br/&gt; at
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIntercepto r.java:815)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
&lt;br/&gt; at jrunx.kernel.JRun.startServer(JRun.java:575)
&lt;br/&gt; at jrunx.kernel.JRun.&amp;lt;init&amp;gt;(JRun.java:493)
&lt;br/&gt; at jrunx.kernel.JRun$1.run(JRun.java:346)
&lt;br/&gt; at java.security.AccessController.doPrivileged(Native
Method)
&lt;br/&gt; at jrunx.kernel.JRun.start(JRun.java:343)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br/&gt; at jrunx.kernel.JRun.invoke(JRun.java:180)
&lt;br/&gt; at jrunx.kernel.JRun.main(JRun.java:168)
&lt;br/&gt;[0]javax.management.RuntimeMBeanException: RuntimeException
thrown in operation loadServices
&lt;br/&gt; at
com.sun.jmx.mbeanserver.StandardMetaDataImpl.wrapRuntimeException(StandardMetaDataImpl.ja va:994)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:430)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
&lt;br/&gt; at
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerIntercepto r.java:815)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
&lt;br/&gt; at jrunx.kernel.JRun.startServer(JRun.java:575)
&lt;br/&gt; at jrunx.kernel.JRun.&amp;lt;init&amp;gt;(JRun.java:493)
&lt;br/&gt; at jrunx.kernel.JRun$1.run(JRun.java:346)
&lt;br/&gt; at java.security.AccessController.doPrivileged(Native
Method)
&lt;br/&gt; at jrunx.kernel.JRun.start(JRun.java:343)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br/&gt; at jrunx.kernel.JRun.invoke(JRun.java:180)
&lt;br/&gt; at jrunx.kernel.JRun.main(JRun.java:168)
&lt;br/&gt;Caused by: java.lang.NullPointerException: No URL or file
descriptor available
&lt;br/&gt; at
jrunx.kernel.DeploymentService.loadServices(DeploymentService.java:48)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at sun.reNo jndi.properties file was found in 2's SERVER-INF
directory. The JRun kernel requires JNDI information.
&lt;br/&gt;flect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:585)
&lt;br/&gt; at
com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
&lt;br/&gt; ... 14 more
&lt;br/&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:996f6fe0-7575-4ab1-a3cd-ae544d78bc4c] --&gt;</description>
      <pubDate>Tue, 16 Jan 2007 10:44:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/181326</guid>
      <dc:date>2007-01-16T10:44:06Z</dc:date>
      <clearspace:dateToText>7 years 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>help! application.log unusable</title>
      <link>https://forums.adobe.com/thread/185445</link>
      <description>&lt;!-- [DocumentBodyStart:b85d5f8f-ddaa-420d-bb8d-2420b793d2e3] --&gt;&lt;div class="jive-rendered-content"&gt;we have serious problems with our applications - yesterday,
the CF server restarted 18 times according to the server log, and
we don't know why. It probably has to do with a huge load -
thousands of site visitors, and some of the pages have to
communicate with external booking services.
&lt;br/&gt;
&lt;br/&gt;Unfortunately, we cannot use the application log to see if
our own programming errors are the culprit. Instead of containing
regular error messages, the log file is full of messages like this:
&lt;br/&gt;
&lt;br/&gt;"Error","web-87","01/09/07","18:23:47",,"Error thrown by
site-wide exception handler:"
&lt;br/&gt;"Error","web-172","01/09/07","18:23:47",,"The Debugging
service is not available.This exception is usually caused by
service startup failure. Please check your server configuration.
...
&lt;br/&gt;
&lt;br/&gt;What does that mean, "the debugging service not available"?
we have debugging turned on on that server. Would we get "normal"
error messages if the debugging service was running? and what can
we do to successfully start it?
&lt;br/&gt;
&lt;br/&gt;-Michael
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b85d5f8f-ddaa-420d-bb8d-2420b793d2e3] --&gt;</description>
      <pubDate>Wed, 10 Jan 2007 10:00:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/185445</guid>
      <dc:date>2007-01-10T10:00:31Z</dc:date>
      <clearspace:dateToText>7 years 10 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

