<?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>Content in Adobe Community</title>
    <link>/place-content.jspa?containerType=14&amp;userID=null&amp;filterID=contentstatus[published]~objecttype~objecttype[thread]&amp;containerID=3473</link>
    <description>Recent content in Adobe Community</description>
    <language>en</language>
    <pubDate>Fri, 24 Oct 2014 20:07:36 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-24T20:07:36Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Web based ftp server in flex</title>
      <link>https://forums.adobe.com/thread/434895</link>
      <description>&lt;!-- [DocumentBodyStart:26083c1a-2c61-4588-9f39-1ccebf8f8536] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Dear guys,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am developing web base ftp server application in flex. whoever already developed ftp server application in flex. Please give me the component source code. Please support to me.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thank you,&lt;/p&gt;&lt;p&gt;veeru&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:26083c1a-2c61-4588-9f39-1ccebf8f8536] --&gt;</description>
      <pubDate>Fri, 24 Oct 2014 20:07:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/434895</guid>
      <dc:date>2014-10-24T20:07:36Z</dc:date>
      <clearspace:dateToText>2 weeks 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>livecycle download help</title>
      <link>https://forums.adobe.com/thread/1594297</link>
      <description>&lt;!-- [DocumentBodyStart:5dd23fbb-3ebe-4b3a-a089-77725759a814] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;I am new to lcds.In the lcds download page here &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.adobe.com/devnet/livecycle/downloads.html" rel="nofollow"&gt;http://www.adobe.com/devnet/livecycle/downloads.html&lt;/a&gt;&lt;span&gt; which do I download so as to get started with lcds.Thanks for your prompt response&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5dd23fbb-3ebe-4b3a-a089-77725759a814] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 06:11:43 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1594297</guid>
      <dc:date>2014-10-06T06:11:43Z</dc:date>
      <clearspace:dateToText>1 month 1 week ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to avoid multiple DataConnections with LCD ES2</title>
      <link>https://forums.adobe.com/thread/1591794</link>
      <description>&lt;!-- [DocumentBodyStart:5575dc18-05df-422e-a519-863ebc9a06cb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi, we are just starting using the data connections to connect via a database with LiveCycle Designer. It seems we are missing something important regarding to manipulation of data from the PDF.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;At first we have tried to apply a INSERT command to our first table and be able to browse through the items in the database. We are able to browse through the database only before we have inserted something.&lt;/p&gt;&lt;p&gt;If we insert an item and then try to browse through the database with (Next, Previous, Last or First) it will crash and have an error of the following :&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 13.63636302948px;"&gt;(Next, Previous, Last or First) failed. Multiple-step operation generated errors. check each status value [ID:@11]&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So then we have decided to create a second data connection which would have each of the column in the database except for the ID which appears to make everything crash.&lt;/p&gt;&lt;p&gt;E.G.:&amp;nbsp; Table_1&lt;/p&gt;&lt;p&gt;DataConnection1 --&amp;gt; ID, Field1, Field2, Field3, Field4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT Command connection&lt;/p&gt;&lt;p&gt;DataConnection2 --&amp;gt; Field1, Field2, Field3, Field4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSERT Command connection&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Seems like we can't have a SELECT and INSERT in the same DataConnection because with those 2 different connections it works fine....&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then we are trying to show multiple data's in a table which is linked with the ID of the Selected ID in DataConnection1.. To show the data is all fine using a 3rd connection for that Table_2, then we are making sure a blank row is always there at the end of the table to be able to add this new entry to the database with a Add button to INSERT into the Table_2... Unfortunately we do not have a 2nd connection to that table because we cannot link those fields with the database for the purpose of a multiple entry view.&lt;/p&gt;&lt;p&gt;We have tried to make a 2nd connection for the purpose of the INSERT but it doesnt work at all.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We are basing ourselves on the sample provided by Stefan Cameron in his blog &lt;a class="jive-link-external-small" href="http://forms.stefcameron.com/2006/12/18/databases-inserting-updating-and-deleting-records/" rel="nofollow"&gt;http://forms.stefcameron.com/2006/12/18/databases-inserting-updating-and-deleting-records/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I am wondering if we are using the right functionalities and if it is the simplest way to work with databases...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If anyone can help, it would be greatly appreciated!! &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance!&lt;/p&gt;&lt;p&gt;Mag&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5575dc18-05df-422e-a519-863ebc9a06cb] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">dataconnection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">multiple dataconnection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">insert error</category>
      <pubDate>Thu, 02 Oct 2014 20:04:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1591794</guid>
      <dc:date>2014-10-02T20:04:28Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Data binding to repeating fields</title>
      <link>https://forums.adobe.com/thread/1556696</link>
      <description>&lt;!-- [DocumentBodyStart:163fa871-a481-4f64-ba2b-62edbc5700b0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6670890-664655/Capture.JPG"&gt;&lt;img alt="Capture.JPG" class="jive-image image-1" height="138" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6670890-664655/Capture.JPG" style="width: 620px; height: 104px;" width="823"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6670890-664654/cap2.JPG"&gt;&lt;img alt="cap2.JPG" class="jive-image image-1" height="487" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6670890-664654/cap2.JPG" style="height: auto;" width="499"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:163fa871-a481-4f64-ba2b-62edbc5700b0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">binding</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">#lifecycle</category>
      <pubDate>Mon, 25 Aug 2014 10:19:52 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1556696</guid>
      <dc:date>2014-08-25T10:19:52Z</dc:date>
      <clearspace:dateToText>2 months 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to get a commercial license of LiveCycle DS?</title>
      <link>https://forums.adobe.com/thread/1498567</link>
      <description>&lt;!-- [DocumentBodyStart:1b8a4f88-702a-47b3-84d5-2c01898caf18] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Our company sells a product which has been using Blaze DS for communicating between a Flex-based client and a JBoss-based middleware. Nothing fancy, just AMF used to call web services and retrieve the answer.&lt;/p&gt;&lt;p&gt;Now, the company has been sold and the new owners ask for a commercial replacement for free components. Hence, we are looking into replacing Blaze DS for LiveCycle DS.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So far, I didn't have much luck with the Adobe sales folk in Germany and the US, and resellers don't appear to know much about LC.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there anyone around here who can offer some advise?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Who do I need to contact to get reliable licensing information (and a quote) for LC DS?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1b8a4f88-702a-47b3-84d5-2c01898caf18] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">licensing</category>
      <pubDate>Tue, 17 Jun 2014 14:51:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1498567</guid>
      <dc:date>2014-06-17T14:51:46Z</dc:date>
      <clearspace:dateToText>4 months 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AreaChart  HTTPService</title>
      <link>https://forums.adobe.com/thread/418950</link>
      <description>&lt;!-- [DocumentBodyStart:59552a0a-f587-470d-ad19-11eaa5214f19] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;According to the state total of months people I want to list AreaChart&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;help video &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.ahsapdekorasyonbul.com/1.html" rel="nofollow"&gt;http://www.ahsapdekorasyonbul.com/1.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;xml&lt;/p&gt;&lt;p&gt;&lt;div class="e"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;?&lt;/span&gt;&lt;span class="pi"&gt;xml&amp;nbsp; version="1.0" encoding="utf-8" &lt;/span&gt;&lt;span class="m"&gt;?&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliyeciler&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Şubat&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Avrupa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Anadolu&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;7&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Şanlıurfa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Antalya&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Kırıkkale&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İzmir&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;3&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Bursa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Muğla&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Ankara&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Tekirdağ&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Artvin&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Balıkesir&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Denizli&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Temmuz&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Rize&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Elazığ&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Sivas&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Nisan&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Anadolu&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;&amp;#199;anakkale&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;K&amp;uuml;tahya&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Tekirdağ&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Mart&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Avrupa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;8&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Zonguldak&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Sivas&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İzmir&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Bursa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Anadolu&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;8&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Ankara&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;2&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Antalya&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Balıkesir&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Kocaeli&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Muğla&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Ocak&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;G&amp;uuml;m&amp;uuml;şhane&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Yozgat&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Ankara&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;D&amp;uuml;zce&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Avrupa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Isparta&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Eyl&amp;uuml;l&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;İstanbul Avrupa&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div class="c" style="margin-left: 1em; text-indent: -2em;"&gt;&lt;a class="" href="https://forums.adobe.com/#"&gt;-&lt;/a&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="t"&gt; zaman&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Haziran&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Kocaeli&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="e"&gt;&lt;div style="margin-left: 1em; text-indent: -2em;"&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;&lt;/span&gt;&lt;span class="t"&gt;firms&lt;/span&gt; &lt;span class="t"&gt;il&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;Muğla&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="t"&gt; toplam&lt;/span&gt;&lt;span class="m"&gt;="&lt;/span&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;span class="m"&gt;"&lt;/span&gt;&lt;span class="m"&gt; /&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliye&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="b"&gt; &lt;/span&gt; &lt;span class="m"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="t"&gt;nakliyeciler&lt;/span&gt;&lt;span class="m"&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;flex&lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br/&gt;&lt;span&gt;&amp;lt;mx:Application xmlns:mx="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.adobe.com/2006/mxml" rel="nofollow"&gt;http://www.adobe.com/2006/mxml&lt;/a&gt;&lt;span&gt;" layout="absolute" width="845" height="650" &lt;/span&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; backgroundGradientColors="[#454545, #050505]"&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; initialize="AreaChartx.send()" &amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp; &lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:HTTPService url="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://localhost:2673/portal_25/AreaChart_il.aspx" rel="nofollow"&gt;http://localhost:2673/portal_25/AreaChart_il.aspx&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id="AreaChartx"&amp;nbsp; /&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:AreaChart id="Areachart" color="0x323232" height="218"&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; showDataTips="true" dataProvider="{AreaChartx.lastResult.nakliyeciler.nakliye}" x="354" y="182"&amp;gt;&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;&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;lt;mx:horizontalAxis&amp;gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:CategoryAxis categoryField="zaman"/&amp;gt;&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;lt;/mx:horizontalAxis&amp;gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:series&amp;gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:AreaSeries yField="toplam" form="curve" displayName="il" /&amp;gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:series&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:AreaChart&amp;gt;&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; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:Legend dataProvider="{Areachart}" color="0x323232" x="758" y="182"/&amp;gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;lt;/mx:Application&amp;gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;br/&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:59552a0a-f587-470d-ad19-11eaa5214f19] --&gt;</description>
      <pubDate>Sat, 03 May 2014 07:40:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/418950</guid>
      <dc:date>2014-05-03T07:40:00Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Character encoding problems when using javascript client-sdk for remoting</title>
      <link>https://forums.adobe.com/thread/1445456</link>
      <description>&lt;!-- [DocumentBodyStart:c6275ed1-d450-4242-9d10-6cecbc3beecd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have recently downloaded LCDS to try.&amp;nbsp; I was interested in using Javascript for remoting.&amp;nbsp; I have a Java-based web application on the server side, and use HTML + Javascript (dataservices-client.js) to send/receive messages asynchronously in AMF format.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I can both send and receive data (not only simple types, but objects with several attributes), however when I receive data from the server side that contains special chars (e.g. &amp;aacute;, &amp;iuml;), I get some gibberish in my javascript objects. This is not same when I send content to the server: All special characters are received (printed) correctly in Java (server side).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;I inspired my coding with the simple example shown in &lt;/span&gt;&lt;a class="jive-link-external-small" href="https://blogs.adobe.com/LiveCycleHelp/2012/07/creating-web-applications-using-html5javascript-remoting-client-sdk-with-livecycle-data-services.html" rel="nofollow" target="_blank"&gt;https://blogs.adobe.com/LiveCycleHelp/2012/07/creating-web-applications-using-html5javascr ipt-remoting-client-sdk-with-livecycle-data-services.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there any bug on the serialization?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My software version is Adobe LiveCycle es_data_services_JEE_4_7_all_win&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Java container is WebLogic 11g.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;=======&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Edited Apr 11 2014&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In my attempts, I tried using AMFX serialization so that I could see the message in a more comprehensible format inside my browser (eg using firebug).&amp;nbsp; After configuring an HTTP channel and destination in the server side, and adjusting accordingly in the client side code, the Javascript API still sends binary! &lt;/p&gt;&lt;p&gt;Sadly, I concluded that client-SDK isn't mature enough...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;By the way, if you send an String like "&amp;amp;aacute" from the server, in the client you get "&amp;aacute;"... instead of the raw "&amp;amp;aacute" ... they forgot escaping.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c6275ed1-d450-4242-9d10-6cecbc3beecd] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">amf</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">remoting</category>
      <pubDate>Mon, 07 Apr 2014 19:48:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1445456</guid>
      <dc:date>2014-04-07T19:48:45Z</dc:date>
      <clearspace:dateToText>7 months 1 week ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How do I dynamically create and add a "sourceSet" object using FormCalc script?</title>
      <link>https://forums.adobe.com/thread/1411841</link>
      <description>&lt;!-- [DocumentBodyStart:8aa99805-efde-4510-8797-2c28441c59fb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I would like to be able to use a script that creates a "sourceSet" object and connects to my ms access database on an event like "onclick" rather than automatically having to connect when the form is opened up.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Overall, don't want to automatically connect when the form opens up and&amp;nbsp; I want to be able to control with a an onclick event when my form tries to connect to my access database. I would appreciate any help in finding anyway to achieve this.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8aa99805-efde-4510-8797-2c28441c59fb] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">database_connection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">formcalc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">access_database</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data/services</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">form_capabilities</category>
      <pubDate>Thu, 20 Feb 2014 23:55:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1411841</guid>
      <dc:date>2014-02-20T23:55:27Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Problem LiveCycle Data Services with Parsley Framework</title>
      <link>https://forums.adobe.com/thread/1410174</link>
      <description>&lt;!-- [DocumentBodyStart:c6f217d3-87ae-4a39-9dbd-0e077d6bf952] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p&gt;I have problem when using LiveCycle Data Services and Parsley framework.&lt;/p&gt;&lt;p&gt;Here is my Dynamic command :&lt;/p&gt;&lt;p&gt;....&lt;/p&gt;&lt;p&gt;public function execute(message:ServiceMsg):AsyncToken{&lt;/p&gt;&lt;p&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return dataservice.fill(...);&lt;/p&gt;&lt;p&gt; }&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;public function result(event:ResultEvent):void&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alert.show ("run successful");&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // call another method&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xyz(); // this method take a long time (about 1 minutes)&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem here is the alert message not show until xyz() method finished. It's so odd behavior.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anybody can explain this problem.&lt;/p&gt;&lt;p&gt;I'm using parsley 2.4.0&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;ndt&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c6f217d3-87ae-4a39-9dbd-0e077d6bf952] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">dynamic</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">dataservice;</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">parsley;</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">command;</category>
      <pubDate>Wed, 19 Feb 2014 07:49:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1410174</guid>
      <dc:date>2014-02-19T07:49:04Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is RTMP to AMF Websocket possible?</title>
      <link>https://forums.adobe.com/thread/1378539</link>
      <description>&lt;!-- [DocumentBodyStart:058f721e-3f5a-4bd4-a579-f6cbbd0a93e2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Currently we support an application that communicates via RTMP channel messages.&amp;nbsp; We're working on re-writing one of the application's components to use HTML5 and Javascript websockets through LCDS 4.7.&amp;nbsp; While we can connect the websockets to the same endpoints, we aren't receiving the messages on those websocket channels.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there something I'm missing?&amp;nbsp; Is this not possible?&amp;nbsp; I can't find any information relating the two.&amp;nbsp; Would I simply need to add a websocket channel to the Flex channel set?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:058f721e-3f5a-4bd4-a579-f6cbbd0a93e2] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">rtmp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_services</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">websockets</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_data</category>
      <pubDate>Mon, 13 Jan 2014 19:46:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1378539</guid>
      <dc:date>2014-01-13T19:46:31Z</dc:date>
      <clearspace:dateToText>9 months 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Understanding Channels</title>
      <link>https://forums.adobe.com/thread/1326730</link>
      <description>&lt;!-- [DocumentBodyStart:421d2163-e3c0-42bc-9cbd-7a5215b28ac5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;If I have a bunch of different data services object, each data service object DOES NOT need to have a new RTMP Channel correct?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What is the benefit of adding a new RTMP channel to the channelset of dataservice object? Should I not have one or two channels setup on a channelset and ensure each dataservice uses that channelset?&amp;nbsp;&amp;nbsp; Does each dataservice need to be assigned a channelset?&amp;nbsp;&amp;nbsp; The destination point is fixed and is only one server.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;&lt;em&gt;I will always have something like this..&lt;/em&gt;&lt;br/&gt;var myAC:ArrayCollection = &lt;span class="s1"&gt;&lt;strong&gt;new&lt;/strong&gt;&lt;/span&gt; ArrayCollection;&lt;/p&gt;&lt;p class="p1"&gt;var myDS:DataService = &lt;span class="s1"&gt;&lt;strong&gt;new&lt;/strong&gt;&lt;/span&gt; DataService(&lt;span class="s2"&gt;&lt;strong&gt;"myDSInfo"&lt;/strong&gt;&lt;/span&gt;);&lt;/p&gt;&lt;p class="p1"&gt;myDS.autoCommit = &lt;span class="s1"&gt;&lt;strong&gt;false&lt;/strong&gt;&lt;/span&gt;;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;I would not need to do this for each dataservice correct?&lt;/em&gt;&lt;/p&gt;&lt;p class="p1"&gt;&lt;em&gt;&lt;span class="s1"&gt;&lt;strong&gt;var&lt;/strong&gt;&lt;/span&gt;&lt;/em&gt; rtmpChannel:RTMPChannel = &lt;span class="s2"&gt;&lt;strong&gt;new&lt;/strong&gt;&lt;/span&gt; RTMPChannel(&lt;span class="s3"&gt;&lt;strong&gt;"my-rtmp"&lt;/strong&gt;&lt;/span&gt;, myServer);&lt;/p&gt;&lt;p class="p1"&gt;&lt;span class="s1"&gt;&lt;strong&gt;var&lt;/strong&gt;&lt;/span&gt; channelSet:ChannelSet = &lt;span class="s2"&gt;&lt;strong&gt;new&lt;/strong&gt;&lt;/span&gt; ChannelSet();&lt;/p&gt;&lt;p class="p1"&gt;channelSet.addChannel(rtmpChannel);&lt;/p&gt;&lt;p&gt;myDS.channelSet = channelSet;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any insight on this would be great.&amp;nbsp; &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:421d2163-e3c0-42bc-9cbd-7a5215b28ac5] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_services</category>
      <pubDate>Sat, 16 Nov 2013 12:31:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1326730</guid>
      <dc:date>2013-11-16T12:31:04Z</dc:date>
      <clearspace:dateToText>11 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Using LCDS and HTML5 Websockets for Consumers and Producers</title>
      <link>https://forums.adobe.com/thread/1332848</link>
      <description>&lt;!-- [DocumentBodyStart:45c18c6a-35dd-424e-8dc3-8efae44d9717] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've been following the examples from here: &lt;a class="jive-link-external-small" href="http://help.adobe.com/en_US/LiveCycleDataServicesES/4.6/Developing/WS74a1cc3271d4c9821a4a3ad3132cc2454ba-8000.html" rel="nofollow"&gt;http://help.adobe.com/en_US/LiveCycleDataServicesES/4.6/Developing/WS74a1cc3271d4c9821a4a3 ad3132cc2454ba-8000.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I can't seem to get my consumers and producers to communicate.&amp;nbsp; I've set up the correct messaging destinations and wrote my own sample code almost exactly like the example provided, yet I cannot get messages to send or receive.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Are there any more examples of how to make this work? &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;EDIT: To add more detail to this.&amp;nbsp; We experimented using the sample application "TraderDesktop" and found that even in the sample the websockets would fail and fall back to amf-polling.&amp;nbsp; After trying to implement a variety of other channel types (which are set up by default in the sample applications) it's clear that something is either broken or we aren't implementing it wrong.&amp;nbsp; Every single channel type we attempt to use, other than amf-polling, fails.&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Note: We tried using the sample applications *exactly* as they are packaged and they were not working.&amp;nbsp; We even made some suggested modifcations to the configuration files and it's still not working.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:45c18c6a-35dd-424e-8dc3-8efae44d9717] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">messaging</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">producers</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">websockets</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">consumers</category>
      <pubDate>Mon, 11 Nov 2013 16:37:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1332848</guid>
      <dc:date>2013-11-11T16:37:58Z</dc:date>
      <clearspace:dateToText>1 year 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>LCDS 2.5 - Dataservice is very slow</title>
      <link>https://forums.adobe.com/thread/1316573</link>
      <description>&lt;!-- [DocumentBodyStart:3123f8cf-115e-497b-8032-d5778c39f6ee] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a query that returned about 7000 records using livecycle dataservices 2.5 and Flex SDK 3.0.&amp;nbsp; I expect this to take a few seconds, but it take 25-30 seconds to get the result back. The VO I am returning has about 42 properties of int, Strings and Dates. No other collections. The query itself is under a second and is just against one table. The server resources are not close to getting maxed out.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;On the arraycollection I tried disablingAutoUpdate. On the dataservice, I disabled the autosync, automerge, autoSaveCache and autoCommit.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have been able to return large datasets before, but not using LCDS.&amp;nbsp; Any ideas how to get all the records back at once would be greatly appreciated.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3123f8cf-115e-497b-8032-d5778c39f6ee] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">dataservice</category>
      <pubDate>Tue, 22 Oct 2013 22:02:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1316573</guid>
      <dc:date>2013-10-22T22:02:35Z</dc:date>
      <clearspace:dateToText>1 year 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>DataService - offline data / incremental load</title>
      <link>https://forums.adobe.com/thread/1320027</link>
      <description>&lt;!-- [DocumentBodyStart:286f4ca3-9bb9-430b-a71b-79281be973e3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We're working on a mobile app with offline mode, and got a few questions to cover in order to design the best solution.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;1. &lt;/strong&gt;When we enabled offline caching for DataService with approach including setting DataService.cacheID peroperty, it worked, but it was way too slow. &lt;/p&gt;&lt;p&gt;It seems that saving cached data into local SQLite DB is too slow on iPad. &lt;/p&gt;&lt;p&gt;Example: online data (no caching): 1000 objects loaded in 2 secs (incuding DB call and ADEP processing); offline data (w/ caching): 1000 objects loaded in 5 secs, and app is freezing on iPad after data receved from server and storing locally.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Question 1.1: do you have any performance stats / limitations on the SQLite storage managed by ADEP libraries on mobile devices (iPad)?&lt;/p&gt;&lt;p&gt;Question 1.2: is there anything we should adjust on DataSevice level to speedup data storage?&lt;/p&gt;&lt;p&gt;Question 1.3: custom offline adapters are using the same SQLite approach. Is there any other approach that we can use for a faster data caching to work with DataService?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;2. &lt;/strong&gt;We want to store some part of database locally (SQLite or other storage), but if we want to reload data, we don't want to load a full dataset.&lt;/p&gt;&lt;p&gt;The solution woul dbe to load initial data set on first start. Then when needed - load only data that were changed on a database server.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Question 2.1: is there a way to incrementally load data (a new .fill() with params that define a last change timestamp), but keep the whole collection managed?&lt;/p&gt;&lt;p&gt;&lt;span&gt;I saw a similar question here: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://forums.adobe.com/message/4465780#4465780#4465780" rel="nofollow" target="_blank"&gt;http://forums.adobe.com/message/4465780#4465780&lt;/a&gt;&lt;span&gt; but there was no reply.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;3. &lt;/strong&gt;The full offline support for user means that all (s)he changed is stored on device and on app restart or even version update the data will be stored and changes commited on next online session.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Question 3.1: how can we store the DataService instance in local storage, so that on next app start/connection the DataService will be able to connect and commit the changes?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would really appreciate any comments that will help us to find the best solution from both stability and performance points of view.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Ivan&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:286f4ca3-9bb9-430b-a71b-79281be973e3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">offline</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">mobile</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adep</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">dataservice</category>
      <pubDate>Tue, 22 Oct 2013 21:01:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1320027</guid>
      <dc:date>2013-10-22T21:01:08Z</dc:date>
      <clearspace:dateToText>1 year 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AMF Connection via secure amf</title>
      <link>https://forums.adobe.com/thread/1316025</link>
      <description>&lt;!-- [DocumentBodyStart:262a66fb-7336-4761-8f1b-22a4fe69c8bc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Hi,&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;I'm using Java AMF Client to talk to a LiveCycle server.&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;when I try to open an AMFConnection to an https-URL, I get the following error:&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed:sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Is it a general problem to use https for Java AMF Client or is there a way I can achieve this?&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;In the API of AMFConnection I find the method "uri()", which is described with "Returns the HTTP or HTTPS url for the AMF connection", so I'd assume that AMFConnection should be working with https protocol.&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Can anyone give me a hint what I've to do to avoid the error mentioned above?&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Thanks&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Thanh&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:262a66fb-7336-4761-8f1b-22a4fe69c8bc] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">https</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">secure</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">connection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">amf</category>
      <pubDate>Wed, 16 Oct 2013 09:05:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1316025</guid>
      <dc:date>2013-10-16T09:05:38Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to receive message from queue based on JMSPriority</title>
      <link>https://forums.adobe.com/thread/1304333</link>
      <description>&lt;!-- [DocumentBodyStart:2cbe6a95-46bb-4d71-83cb-156bd2b600c0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to receive message from &lt;em&gt;&lt;strong&gt;Receive Message From Queue &lt;/strong&gt;&lt;/em&gt;based on JMSPrirority.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am able to send message to queue using Send Message To Queue component with specifying &lt;strong&gt;Priority value as Five(Liternal value).&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, when I am trying to receive message from Queue by specifying&lt;em&gt;&lt;strong&gt; JMSPriority='Five'; &lt;/strong&gt;&lt;/em&gt;in Message selector, it is not working.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But, when I use &lt;em&gt;&lt;strong&gt;JMSPriority is not null&lt;/strong&gt;&lt;/em&gt; in Message selector, I am able to receive message.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How to receive message from queue by specifying exact value of JMSPriority.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please suggest.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2cbe6a95-46bb-4d71-83cb-156bd2b600c0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">jms</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_data</category>
      <pubDate>Fri, 27 Sep 2013 05:24:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1304333</guid>
      <dc:date>2013-09-27T05:24:18Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>8</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Data Management Service and Order of Inserts, Deletes</title>
      <link>https://forums.adobe.com/thread/1195703</link>
      <description>&lt;!-- [DocumentBodyStart:612503e6-2ec0-415f-8f0b-2a551be247fe] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello, we are using the LCDS Data management service with a Flex app.&amp;nbsp; Currently we are using the SQL Assembler.&amp;nbsp; The issue we are having is with the order of the inserts and deletes that the data management service sends to the server when you call the commit method.&amp;nbsp;&amp;nbsp; It seems that when using a managed array collection, and you delete an object in the collection that exists in the database, and then add it back to the collection, when you call commit on the dataservice object, it tries to perform the insert operation on the databaes first rather than the delete which causes a database unique constraint violation.&amp;nbsp;&amp;nbsp; Is there a way to control the the order that the datamagement service performs inserts and deletes so that it is smart enough know to perform delete's first?&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;Thank you.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:612503e6-2ec0-415f-8f0b-2a551be247fe] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_es2</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle</category>
      <pubDate>Sat, 07 Sep 2013 15:33:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1195703</guid>
      <dc:date>2013-09-07T15:33:28Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Data Management Service</title>
      <link>https://forums.adobe.com/thread/1279844</link>
      <description>&lt;!-- [DocumentBodyStart:2ec585d6-c258-4fa3-9ee8-8de1e743f87d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello, I urgently need your help. &lt;/p&gt;&lt;p&gt;I have to invoke a Java DAO from LiveCycle DataService. I configured a Data Management Service that works correctly. When I invoke the method, however, the ArrayCollection is not populated immediately, but is populated after running all the actionscript code. I need to use the data from the server in successive method calls. eg:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public function initApp():void {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var collectionTest:ArrayCollection = new ArrayCollection();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var ds:DataService = new DataService("Product");&lt;/p&gt;&lt;p&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ds.autoSyncEnabled = true;&lt;/p&gt;&lt;p&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ds.autoCommit = false;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var token:AsyncToken = ds.fill(collectionTest);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var description = this.getProductDescription(collectionTest.getItemIndex(0));&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var ds2:DataService = new DataService("UpdateProdotto");&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ..........&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var collectionTest2:ArrayCollection = new ArrayCollection();&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ds2.fill(collectionTest2, description);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .........&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I do that?&lt;/p&gt;&lt;p&gt;thank you very much.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2ec585d6-c258-4fa3-9ee8-8de1e743f87d] --&gt;</description>
      <pubDate>Wed, 21 Aug 2013 11:33:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1279844</guid>
      <dc:date>2013-08-21T11:33:23Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Scaling JMS Adapter connecting to Remove JMS Provider</title>
      <link>https://forums.adobe.com/thread/965056</link>
      <description>&lt;!-- [DocumentBodyStart:3ba10c8a-c765-4bfd-ad44-98130409442a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"&gt;Hello,&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"&gt;We have many Flex clients (SDK 4.5 connecting to ADEP Data Services 4.6) creating consumers to receive pushed Server messages on a particular Topic. On several topics the consumers each set a unique selector that identifies the client connected (we use selectors rather than sub-topics as the JMS Adapter does not support sub-topics) - so effectively for these topics we have point-to-point messaging. This means we don't benefit from any multiplexing in the MessageBroker - each subscription gets passed through to the backend JMSAdapter.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;It seems with our current configuration that this causes the JMS Adapter to create a new TopicConnection and TopicSession per client consumer &amp;#8211; meaning that we rapidly run out of Server threads as new clients are added.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;With 140 clients connected we see everything grind to a halt in ADEP/LCDS and the following thread counts - each client is causing individual ActiveMQ connections - even though we only have a handful of different Topics, but with different selectors on these topics per Flex client.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1935 ActiveMQ&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1572 ActiveMQConnection&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 AsyncBatchingAppender&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;2 C&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;2 com&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Concurrent&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 DestroyJavaVM&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;2 EmailAlertAppender&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Finalizer&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;2 Gang&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 HashSessionScavenger-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 HtmlAdaptorServer&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;17 InactivityMonitor&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 JmsLeafDestination&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 lcdsLive-Pool-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Low&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 nio-server-Acceptor&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 nio-server-IdleConnectionTimeoutThread-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;8 nio-server-Reactor&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;16 nio-server-WorkerThread-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 MetricExporter-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 MultiThreadedHttpConnectionManager&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 NIOHTTPFlexSessionTimeoutThread-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;8 qtp&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 RedeployManager&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Reference&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Signal&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 StreamingEndpoint-nio-amf-stream-ConnectionHeartbeatTimer&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Surrogate&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Thread-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Timer-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;2 VM&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Wrapper-Connection&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Courier New'; font-size: 9pt;"&gt;1 Wrapper-Control-Event-Monitor&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;Ideally the JMS Adapter would have a single connection (TCP) to the external JMS Provider for each Topic and then de-multiplex messages for individual Flex Clients based upon the selectors set by the clients subscribed to that topic. Is there a configuration setting we can use to achieve this?&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;Configuration of our messaging destinations (example &amp;#8211; they are all like this):&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&gt;&amp;lt;destination id="abcd-response"&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;adapter ref="jms"/&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;properties&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;jms&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;destination-type&amp;gt;topic&amp;lt;/destination-type&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;message-type&amp;gt;javax.jms.ObjectMessage&amp;lt;/message-type&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;connection-factory&amp;gt;java:comp/env/jms/flex/ClientRegionalBroker&amp;lt;/connection-factory&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;destination-jndi-name&amp;gt;java:comp/env/jms/topic/flex/ABCD_RESPONSE&amp;lt;/destination-jndi-name&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;delivery-mode&amp;gt;NON_PERSISTENT&amp;lt;/delivery-mode&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;message-priority&amp;gt;DEFAULT_PRIORITY&amp;lt;/message-priority&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;acknowledge-mode&amp;gt;AUTO_ACKNOWLEDGE&amp;lt;/acknowledge-mode&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;transacted-sessions&amp;gt;false&amp;lt;/transacted-sessions&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;delivery-settings&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mode&amp;gt;async&amp;lt;/mode&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/delivery-settings&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/jms&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;network&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;reliable&amp;gt;true&amp;lt;/reliable&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/network&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-indent: 36pt; background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/properties&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-size: 8pt;"&gt;&amp;lt;/destination&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;These destinations are using NIO End Points and Channels.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;We first used the default &amp;#8220;sync&amp;rdquo; mode JMS delivery setting and found that an additional thread was created for each client consumer topic (with this configuration we were &lt;/span&gt;&lt;span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"&gt;getting "OutOfMemoryError: Unable to create native thread" errors due to our nproc limit of 8192).&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;Changing to use async mode solved this issue and reduced the number of threads dramatically. We can see in the LCDS logs that we are using the async message receiver.&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-family: 'Calibri','sans-serif'; color: #1f497d; font-size: 8pt;"&gt;[LCDS] 02/19/2012 23:03:29.841 [Service.Message.JMS] JMS consumer for JMS destination 'java:comp/env/jms/topic/flex/ABCD_RESPONSE is starting.&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-family: 'Calibri','sans-serif'; color: #1f497d; font-size: 8pt;"&gt;2012-02-19 23:03:30,174 INFO ActiveMQ Task-4 o.a.a.t.f.FailoverTransport Successfully connected to tcp://abcd.blah.com:9501?socket.tcpNoDelay=true&amp;amp;soTimeout=60000&lt;/span&gt;&lt;/p&gt;&lt;p style="background: #f2f2f2;"&gt;&lt;span style="font-family: 'Calibri','sans-serif'; color: #1f497d; font-size: 8pt;"&gt;[LCDS] 02/19/2012 23:03:31.505 [Service.Message.JMS] JMS consumer for JMS destination 'java:comp/env/jms/topic/flex/ ABCD_RESPONSE ' is using async message receiver.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;However, we still see one ActiveMQ thread created for each Flex client consumer per topic and cannot scale.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;We have tried replacing the ActiveMQ TopicConnectionFactory with a PooledConnection Factory and this has made a difference in the thread counts - but now we start to see timeouts.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;Any configuration suggestions&lt;/span&gt;&lt;span class="BodyTextChar"&gt;&lt;span lang="EN-GB" style="font-family: 'Arial','sans-serif'; font-size: 10pt;"&gt;? From looking at the BlazeDS source, it looks like JMSTopicConsumer will always create a connection/session per topic subscription. This seems wasteful as sessions and particularly connections are expensive. Is there any mechanism to multiplex multiple subscriptions over a single session/connection out of LCDS?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&lt;span class="BodyTextChar"&gt;&lt;span lang="EN-GB" style="font-family: 'Arial','sans-serif'; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'Arial','sans-serif'; color: #333333; font-size: 10pt;"&gt;Or perhaps there is a better way we could achieve the point-to-point connections from the external JMS Provider to the Flex Clients?&lt;/span&gt; &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3ba10c8a-c765-4bfd-ad44-98130409442a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adep</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">jms</category>
      <pubDate>Tue, 13 Aug 2013 11:30:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/965056</guid>
      <dc:date>2013-08-13T11:30:49Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Save non flash based data using Lifecycle DataServices ES2</title>
      <link>https://forums.adobe.com/thread/1260303</link>
      <description>&lt;!-- [DocumentBodyStart:6800bdd6-60e4-4072-b3c8-1319fa2ec83f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I currently have some automation setup, where I need to write some data to the database. This is done outside of the Flash project.&amp;nbsp; Is there a way to tie into Lifecycle Data Services to save a value object to the database by just using Java?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6800bdd6-60e4-4072-b3c8-1319fa2ec83f] --&gt;</description>
      <pubDate>Mon, 22 Jul 2013 23:26:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1260303</guid>
      <dc:date>2013-07-22T23:26:58Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How Do I use a variable for a datasource</title>
      <link>https://forums.adobe.com/thread/1246547</link>
      <description>&lt;!-- [DocumentBodyStart:c2d08c40-24d7-4d20-b7b9-a8904bfa73bc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm trying to use a variable as a datasource so changes are easy to make with out having to look through the entire process.&lt;/p&gt;&lt;p&gt;If I use SLC_ENGFC_DEV_DS as the literal value the select statement it works. If I create a string variable and set the default value to the same thing I get the error &lt;/p&gt;&lt;p&gt;Exception: Invalid object name 'FLUDDEPT'.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c2d08c40-24d7-4d20-b7b9-a8904bfa73bc] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">variable</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">datasource</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_connection</category>
      <pubDate>Thu, 04 Jul 2013 04:54:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1246547</guid>
      <dc:date>2013-07-04T04:54:09Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Flex AIR iOS application with rtmps</title>
      <link>https://forums.adobe.com/thread/953431</link>
      <description>&lt;!-- [DocumentBodyStart:57092d82-9b3e-4f81-8d29-2adbdb1a311b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi, &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; If I am accessing flex AIR application from Mac or iOS (iPad) using secure rtmp then it gives me error. It is not able to connect to the server.&amp;nbsp; I have a self signed certificate generated using java keytool. I have configured it on tomcat and it works for the ssl in browser with &lt;a class="jive-link-external-small" href="https://localhost:8080/" rel="nofollow"&gt;https://localhost:8080&lt;/a&gt;, but fails when using rtmps from flex application especially in Mac and iPad.&amp;nbsp; It works in Android tablet and windows machine though.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the configuration in I gave in the server for ssl.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; &amp;lt;server id="secure-nio-server" class="flex.messaging.socketserver.SocketServer"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;properties&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;keystore-file&amp;gt;D:/keystore.jks&amp;lt;/keystore-file&amp;gt;&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;lt;keystore-password&amp;gt;password&amp;lt;/keystore-password&amp;gt; &lt;br/&gt;&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;lt;/properties&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/server&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;channel-definition id="mobility-rtmp"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class="mx.messaging.channels.SecureRTMPChannel"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;endpoint url="rtmps://{server.name}:@flex.rtmp.port@"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class="flex.messaging.endpoints.SecureRTMPEndpoint"/&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp; &amp;lt;server ref="secure-nio-server"&amp;gt;&lt;br/&gt;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;properties&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;idle-timeout-minutes&amp;gt;20&amp;lt;/idle-timeout-minutes&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- for deployment on WebSphere, must be mapped to a WorkManager available in the web application's jndi context.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;websphere-workmanager-jndi-name&amp;gt;java:comp/env/wm/MessagingWorkManager&amp;lt;/websphere-workman ager-jndi-name&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt;&lt;br/&gt; &lt;br/&gt; &amp;lt;/properties&amp;gt;&lt;br/&gt; &amp;lt;/server&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/channel-definition&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the exception I am getting on server side.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [ERROR] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] failed to read Connection '521330370' or process the data; Connection is in the 'Handshaking' state and will be forced closed.&lt;br/&gt;javax.net.ssl.SSLException: Inbound closed before receiving peer's close_notify: possible truncation attack?&lt;br/&gt; at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)&lt;br/&gt; at com.sun.net.ssl.internal.ssl.SSLEngineImpl.fatal(Unknown Source)&lt;br/&gt; at com.sun.net.ssl.internal.ssl.SSLEngineImpl.fatal(Unknown Source)&lt;br/&gt; at com.sun.net.ssl.internal.ssl.SSLEngineImpl.closeInbound(Unknown Source)&lt;br/&gt; at flex.messaging.socketserver.SSLConnection.handshake(SSLConnection.java:298)&lt;br/&gt; at flex.messaging.socketserver.Connection$ConnectionReader.run(Connection.java:845)&lt;br/&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)&lt;br/&gt; at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)&lt;br/&gt; at java.lang.Thread.run(Unknown Source)&lt;/p&gt;&lt;p&gt;Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log&lt;br/&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' has changed state to: Closing&lt;br/&gt;Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log&lt;br/&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] closing Connection '521330370'.&lt;br/&gt;Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log&lt;br/&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' has changed state to: Closed&lt;br/&gt;Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log&lt;br/&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] closed Connection '521330370'.&lt;br/&gt;Jan 21, 2012 5:14:44 PM org.apache.catalina.core.ApplicationContext log&lt;br/&gt;INFO: [LCDS] 01/21/2012 17:14:44.258 [DEBUG] [SocketServer.General] Thread[secure-nio-server-WorkerThread-2,5,main] Connection '521330370' finished a read. -1 bytes were read.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please help.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Swathi.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:57092d82-9b3e-4f81-8d29-2adbdb1a311b] --&gt;</description>
      <pubDate>Sat, 29 Jun 2013 20:38:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/953431</guid>
      <dc:date>2013-06-29T20:38:38Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ReferenceError: Error #1056: Cannot create property handler</title>
      <link>https://forums.adobe.com/thread/1242014</link>
      <description>&lt;!-- [DocumentBodyStart:89d2a443-0109-458e-854b-2a0194071b94] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;After updating my lcds application to LCSD 4.6&amp;nbsp; I get many of these errors. In debug log I can see, that java sends this handler property for some objects, e.g.&lt;/p&gt;&lt;p&gt;(com.mm_katalogy.model.MutaceStrankyDTO_$$_javassist_40){id=4} (1675022032) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id = 4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nazev_stranky = 4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seznam_oddeleni = [] (class: org.hibernate.collection.PersistentSet)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fk_katalog_verze = 1&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; handler = org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer@7f6714da&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;But in my actionscript DTO objects there is no such property. How could I fix this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:89d2a443-0109-458e-854b-2a0194071b94] --&gt;</description>
      <pubDate>Wed, 26 Jun 2013 09:31:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1242014</guid>
      <dc:date>2013-06-26T09:31:19Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Create-Item stored procedure return error for hte parameter</title>
      <link>https://forums.adobe.com/thread/1241272</link>
      <description>&lt;!-- [DocumentBodyStart:cfb8cb1b-0e52-431c-8e59-e4e610231682] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm getting the following error when I create an item with the data services:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;INFO: [Data Services] [DEBUG] SQL Assembler jdbc exception on operation=create-item error=com.microsoft.sqlserver.jdbc.SQLServerException: The value is not set for the parameter number 1.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.ja va:190&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Configuration settings are:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;source&amp;gt;flex.data.assemblers.SQLAssembler&amp;lt;/source&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;scope&amp;gt;application&amp;lt;/scope&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;metadata&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;identity property="TO_ID" undefined-value="0" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/metadata&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;create-item&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;procedure name="spMob_TakeOff_Details_Header_Insert"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;procedure-param property-value="#ID#" type="OUT"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;procedure-param property-value="#Session_ID#" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;procedure-param property-value="#Notes#" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/procedure&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/create-item&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;ID always has value equal to 0, and this procedure always falls.&lt;/p&gt;&lt;p&gt;Could anyone help or explain to fix this?&lt;/p&gt;&lt;p&gt;&lt;span&gt;Could this be bug of JDBC (&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=385627" rel="nofollow" target="_blank"&gt;https://bugs.eclipse.org/bugs/show_bug.cgi?id=385627&lt;/a&gt;&lt;span&gt;)?&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cfb8cb1b-0e52-431c-8e59-e4e610231682] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adep</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_services</category>
      <pubDate>Tue, 25 Jun 2013 13:54:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1241272</guid>
      <dc:date>2013-06-25T13:54:35Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to handle and manage a multi Database access in runtime with LCDS?</title>
      <link>https://forums.adobe.com/thread/1239971</link>
      <description>&lt;!-- [DocumentBodyStart:92cf5d26-2e5f-4536-91dd-236d93842d4c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hello there&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I got several customer working with the same application and I wonder how,&amp;nbsp; with LCDS,&amp;nbsp; to manage&amp;nbsp; in a runtime a multi dataBase access; without creating a configuration "mxl" file in&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;the folder catalina for each database.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Indeed, each customer have their own dataBase, and so far, I did not find out how to avoid creating a config xml file in catalina for every single database; which force me to create as well for each customer a&amp;nbsp; folder application, since the name of the config file in catalina require a folder application to be ran under tomcat....&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&lt;strong&gt;Thus, my question is&lt;/strong&gt; :&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Is there anyway to create only one configuration mxl file in catalina (in the server side) and then from the client side (application) let the user select its environment (meaning its database) to run the application.... this technic can be also used for multi database environment such as : Dev / Test / Prod&amp;nbsp;&amp;nbsp; environment (or database) where the same application can access to.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Please if any one have an idea or already delt with; just let me know, because I'm entering in a bootle neck and the situation is getting serioulsy critical....&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Regards&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:92cf5d26-2e5f-4536-91dd-236d93842d4c] --&gt;</description>
      <pubDate>Sun, 23 Jun 2013 21:09:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1239971</guid>
      <dc:date>2013-06-23T21:09:09Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Delete item when using auto sync</title>
      <link>https://forums.adobe.com/thread/1199358</link>
      <description>&lt;!-- [DocumentBodyStart:93186005-c7f7-4490-94c6-ded351ac7114] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p&gt;I'm using Dataservice with&lt;strong&gt; autoSyncEnabled is true&lt;/strong&gt;. I run my web app on 2 browser to test auto sync feature but when I delete item xxx on the browser 1, the item xxx still displayed on the browser 2 ( update, add new item working fine).&lt;/p&gt;&lt;p&gt;Can you help me to know why ?&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Thanh&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:93186005-c7f7-4490-94c6-ded351ac7114] --&gt;</description>
      <pubDate>Fri, 10 May 2013 09:33:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1199358</guid>
      <dc:date>2013-05-10T09:33:08Z</dc:date>
      <clearspace:dateToText>1 year 6 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Need help on data service</title>
      <link>https://forums.adobe.com/thread/1207338</link>
      <description>&lt;!-- [DocumentBodyStart:f3af1169-9cda-42af-b791-38e2a7c67166] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;ol style="list-style-type: decimal;"&gt;&lt;li&gt;&lt;span style="color: #1f497d;"&gt; &lt;/span&gt;&lt;span style="color: #1f497d;"&gt;I&amp;#8217;ve installed LiveCycle data service for Java (v 4.7 windows) and Flex builder(Trial version).&amp;nbsp; After I installed this I don&amp;#8217;t find lcd.war file which is supposed to be under Tomcat data service installation directory. I can see dataservice-samples.war, ds-consol.war etc under Tomcat&lt;/span&gt;&lt;span style="font-family: Wingdings; color: #1f497d;"&gt;&amp;agrave;&lt;/span&gt;&lt;span style="color: #1f497d;"&gt;Webapps. Is it because of trial version? If yes, can you please send via email ?&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: #1f497d;"&gt; &lt;/span&gt;&lt;span style="color: #1f497d;"&gt;I&amp;#8217;ve downloaded plugin for application Data modeling and copied plugin folder under Flex Builder plugin directory. But still I don&amp;#8217;t see create model view. Any idea why?&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f3af1169-9cda-42af-b791-38e2a7c67166] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_es2</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">modeler</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_connection</category>
      <pubDate>Fri, 10 May 2013 09:31:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1207338</guid>
      <dc:date>2013-05-10T09:31:27Z</dc:date>
      <clearspace:dateToText>1 year 6 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to set LiveCycle Data Service to use AMF Channel ?</title>
      <link>https://forums.adobe.com/thread/1197142</link>
      <description>&lt;!-- [DocumentBodyStart:49962bdc-a384-4cb4-86d3-b6025354f75b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p&gt;I'm using Data service with channel set is RTMP Channel and Remote Object is AMF Channel. Now, I want to set Dataservice using AMF Channel but I do not know whether it is possible or not. Please help me !!! &lt;/p&gt;&lt;p&gt;Thanks so much.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:49962bdc-a384-4cb4-86d3-b6025354f75b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">service</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">rtmp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">channel</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">amf</category>
      <pubDate>Tue, 23 Apr 2013 02:56:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1197142</guid>
      <dc:date>2013-04-23T02:56:27Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>SQLAssembler and Nulls</title>
      <link>https://forums.adobe.com/thread/1128921</link>
      <description>&lt;!-- [DocumentBodyStart:437f23f5-4289-449e-9f5e-61fe45482d62] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a question about the correct use of a SQL Assembler destination.&amp;nbsp; It seems that the SQL Assembler does not handle NULLs when data is passed to it from the flex client.&amp;nbsp;&amp;nbsp; If I have a value object with a NULL string attribute, SQL Assembler doesn't seem to recognize that the attribute exists.&amp;nbsp; When performing an update a "Missing IN or OUT parameter at index:: xxx" error appears in the log.&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I change the code to make sure the string attribute in question has an empty string instead of a NULL before being passed to the server, the error goes away. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this by design?&amp;nbsp; What is the proper way to handle this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:437f23f5-4289-449e-9f5e-61fe45482d62] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle</category>
      <pubDate>Fri, 19 Apr 2013 14:09:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1128921</guid>
      <dc:date>2013-04-19T14:09:23Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>MySQL Flex3 interaction</title>
      <link>https://forums.adobe.com/thread/1127577</link>
      <description>&lt;!-- [DocumentBodyStart:3d6d1ef9-242b-4718-8c97-9c86defff3a3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Friends,&lt;/p&gt;&lt;p&gt;Can I directly connect a MySQL server database in flex3? If not, please tell me how to interact with MySQL server database using Flex3.&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3d6d1ef9-242b-4718-8c97-9c86defff3a3] --&gt;</description>
      <pubDate>Fri, 19 Apr 2013 12:42:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1127577</guid>
      <dc:date>2013-04-19T12:42:10Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Error when caching data locally using LiveCycle Data Services</title>
      <link>https://forums.adobe.com/thread/1179869</link>
      <description>&lt;!-- [DocumentBodyStart:1b3fbd13-41fb-42fa-80a1-0e8ed7d92fe7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;I developing a mobile application support working offline. I using cache feature of LiveCycle Data Services.&lt;/p&gt;&lt;p&gt;This is my datasevice ( it has associate to others dataservice ) and &lt;strong&gt;autoSaveCache = true and cacheID = "xxx"&lt;/strong&gt;:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&amp;lt;destination id="expenseData"&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;properties&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;source&amp;gt;expense.ExpenseDataAssembler&amp;lt;/source&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;scope&amp;gt;application&amp;lt;/scope&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;item-class&amp;gt;expense.ExpenseData&amp;lt;/item-class&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;metadata&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;identity property="id" /&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #ff0000;"&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;&amp;nbsp; &lt;strong&gt; &amp;lt;one-to-many property="expenseItems" destination="expense-item" /&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/metadata&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/properties&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;&amp;lt;/destination&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;when I run application in the first, it run nomarly but when I close and run it again , i get the errror message as below :&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Error: Object instance needs an mx_internal::referencedIds property inorder to be managed: Object&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at mx.data.utils::Managed$/getReferencedIds()[C:\depot\DataServices\branches\milestone\adepd s46_rc\frameworks\projects\data\src\mx\data\utils\Managed.as:292]&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at mx.data::DataStore/restoreAssociations()[C:\depot\DataServices\branches\milestone\adepds4 6_rc\frameworks\projects\data\src\mx\data\DataStore.as:5010]&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;..............&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;- The error message not showed when I remove line &lt;strong&gt; &amp;lt;one-to-many property="expenseItems" destination="expense-item" /&amp;gt;&lt;/strong&gt; .&lt;/p&gt;&lt;p&gt;Please help me if you know about this problem.&lt;/p&gt;&lt;p&gt;Thanks so much.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1b3fbd13-41fb-42fa-80a1-0e8ed7d92fe7] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">cache</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <pubDate>Fri, 19 Apr 2013 12:17:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1179869</guid>
      <dc:date>2013-04-19T12:17:37Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Data Binding not full. I.E. Bool(true,false).</title>
      <link>https://forums.adobe.com/thread/1194676</link>
      <description>&lt;!-- [DocumentBodyStart:d756e34a-864b-48cc-8c96-db3b5dd4bcea] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I am working with LiveCycle connected with SAP, it is where I take the data. I have some problems when I work with boolean or not totally filled colums. I will put an example to make me understand.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Data in SAP:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;table border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 100%; border: 1px solid #000000;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;background-color: #6690bc;" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;InvoiceID(string)&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;background-color: #6690bc;" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;Payed(boolean)&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;background-color: #6690bc;" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;Credit(int)&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;background-color: #6690bc;" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;Customer(string)&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong&gt;I001&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;x&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;C001&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;I002&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;500&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;C002&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;I003&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;x&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;C003&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;I004&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;200&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;C004&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Data in LiveCycle:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;table border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 100%; border: 1px solid #000000;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;InvoiceID(string)&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Payed(boolean)&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Credit(int)&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Customer(string)&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I001&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;x&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;500&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C001&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I002&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;x&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;200&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C002&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I003&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C003&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I004&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C004&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When the column is full of data, LiveCycle makes a correct binding, but when the column is not full, like a boolean false, the data seems to be all filled first and then all not filled.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also I have noticed that if I put 2 columns in LiveDesigner with the same binding:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;table border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 100%; border: 1px solid #000000;"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;InvoiceID(string)&lt;/strong&gt;&lt;/strong&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Payed(boolean)&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Payed(boolean)&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;.2&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Credit(int)&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;th align="center" style="border:1px solid black;border: 1px solid #000000;text-align: center;background-color: rgb(102, 144, 188);" valign="middle"&gt;&lt;span style="color: #ffffff;"&gt;&lt;strong&gt;&lt;strong style="color: #ffffff; text-align: center; background-color: #6690bc;"&gt;&lt;strong style="color: #ffffff; text-align: -webkit-center; background-color: #6690bc;"&gt;Customer(string)&lt;/strong&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I001&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;x&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;x&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;500&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C001&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I002&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;200&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C002&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I003&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;NULL&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;NULL&lt;/span&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C003&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;strong style="text-align: center;"&gt;I004&lt;/strong&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;NULL&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;NULL&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: 1px solid #000000;text-align: center;"&gt;&lt;span style="text-align: center;"&gt;C004&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It is like whether LiveCycle writes the first row binding with the data column Payed and takes 2 values for the first row, then it has 2 more empty data for the next two slots in row2 and the next slots in row3 and row4 put them as null.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d756e34a-864b-48cc-8c96-db3b5dd4bcea] --&gt;</description>
      <pubDate>Thu, 18 Apr 2013 08:36:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1194676</guid>
      <dc:date>2013-04-18T08:36:06Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>how to store and access a common properties file in LCDS, i.e. a java properties file</title>
      <link>https://forums.adobe.com/thread/1185049</link>
      <description>&lt;!-- [DocumentBodyStart:3ed54ecc-d6f4-445b-851b-27a4e8d98077] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I need to store some variables in a properties file (key=value)&amp;nbsp; that I can call and retrieve settings as I would in a java app.&amp;nbsp;&amp;nbsp; Where should the file live in the webapp and how is it accessed?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3ed54ecc-d6f4-445b-851b-27a4e8d98077] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <pubDate>Thu, 04 Apr 2013 22:17:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1185049</guid>
      <dc:date>2013-04-04T22:17:46Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Complete authentication example for a per client authorization</title>
      <link>https://forums.adobe.com/thread/1183470</link>
      <description>&lt;!-- [DocumentBodyStart:ff9c3a00-d869-46af-bbcc-f707e8a2f55f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Does anyone have an example of per-client-authentication that includes the config and java files.&amp;nbsp; I need to have each user have their own authentication/session, if this is not the best way to accomplish this, please advise...&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ff9c3a00-d869-46af-bbcc-f707e8a2f55f] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <pubDate>Wed, 03 Apr 2013 00:00:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1183470</guid>
      <dc:date>2013-04-03T00:00:10Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>LCDS Session Management using an Extension Panel</title>
      <link>https://forums.adobe.com/thread/1183288</link>
      <description>&lt;!-- [DocumentBodyStart:407f61a1-5ed1-4183-b20b-eba8ff87297f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We have an app that executes in an extension panel(InDesign) using both amf and rtmp calls.&amp;nbsp; The lcds server then makes rpc calls to an app which returns the data to InDesign.&amp;nbsp; How do you manage the sessions so that each individual user gets their own session per instance of the app.&amp;nbsp; All of the examples I have found are using javascript to call the disconnects etc.&amp;nbsp; Since the app is using an extension panel and not a webpage/browser those examples won't work.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:407f61a1-5ed1-4183-b20b-eba8ff87297f] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <pubDate>Tue, 02 Apr 2013 20:02:43 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1183288</guid>
      <dc:date>2013-04-02T20:02:43Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Not populating values in the dropdown list</title>
      <link>https://forums.adobe.com/thread/1154906</link>
      <description>&lt;!-- [DocumentBodyStart:c6fce9c0-2b0c-48da-8911-ac50070d2159] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi ,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; I have a question regarding the populating the values in the dropdown list.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here are the steps that I followed :&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Step 1: Created a form with a drop down list in the designer ( Testers) which I imported the .xsd file by doing the new data connection.&lt;/p&gt;&lt;p&gt;Step 2: In the Data View or binding tab, I binded with the Tester Name.&lt;/p&gt;&lt;p&gt;Step 3: I created the tester.xml and attached in the Form Properties -&amp;gt; Preview. The values are showing in the dropdown list in the preview PDF , but not in the workspace.&lt;/p&gt;&lt;p&gt;Step 4: Went to LiveCycle Workbench and created a process (NewProcess) and clicked the user profile -&amp;gt; populate data process &lt;/p&gt;&lt;p&gt;Step 5: The process created another process ( PreparedProcess) and added new Abstract Activity.&lt;/p&gt;&lt;p&gt;Step 6: Defined activity as Query the multiple Rows as XML&lt;/p&gt;&lt;p&gt;Step 7: Added the sql in the sql statement section ( i.e select * from TestUsers) and tested the results that are coming fine.&lt;/p&gt;&lt;p&gt;Step 8 : Clicked the XML Information button and entered the root element ( Testers) and Repeating element as Tester , parsed the query , changed it to small caps which is similar to xml file that I used in the forms designer. I tested it and generated proper xml.&lt;/p&gt;&lt;p&gt;Step 9 : Assigned the output to the XmlPreparedData variable.&lt;/p&gt;&lt;p&gt;Step 10: I went to the "NewProcess" and added new variable TesterResult as xml and added the .xsd template that I used earlier to create the form.&lt;/p&gt;&lt;p&gt;Step 11: I added the SetValue and assigned the xpath map like this &lt;/p&gt;&lt;p&gt;Location : /processData/formdata/xdp/datasets/data/searchData/Testers&lt;/p&gt;&lt;p&gt;Expression&amp;nbsp; : /processData/Testers/searchData/Testers&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Step 12: I deployed the application and went to the LiveCycle Workspace and started the process and loaded the form , but not seeing values the dropdown list.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I dont' know which step I missed ..what I am guessing so far, I am doing something wrong in the xpath mapping section.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please help me ...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thanks in advance.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c6fce9c0-2b0c-48da-8911-ac50070d2159] --&gt;</description>
      <pubDate>Sun, 17 Feb 2013 08:21:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1154906</guid>
      <dc:date>2013-02-17T08:21:56Z</dc:date>
      <clearspace:dateToText>1 year 9 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Integration between LiveCycle and Microstrategy Reports</title>
      <link>https://forums.adobe.com/thread/1150652</link>
      <description>&lt;!-- [DocumentBodyStart:42d6512a-a250-49ed-8516-1bb9dddb8f14] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to integrate between the Livecycle and Microstrategy reports. I want to show the Reports in the workspace which comes from the microstrategy. Do you have any tutorial or technical article that will help to integrate with Microstrategy ?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:42d6512a-a250-49ed-8516-1bb9dddb8f14] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle_es2</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">microstrategy</category>
      <pubDate>Sun, 10 Feb 2013 01:23:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1150652</guid>
      <dc:date>2013-02-10T01:23:33Z</dc:date>
      <clearspace:dateToText>1 year 9 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Hi . portal-server-specific steps below to create portlets for your Flex applications</title>
      <link>https://forums.adobe.com/thread/1141474</link>
      <description>&lt;!-- [DocumentBodyStart:0a1eafd4-6b76-4460-b5d8-460109174507] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&amp;nbsp; &lt;p&gt;Following this instructions&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. Copy the flex-portal.jar and flex-messaging-common.jar files from the LCDS_INSTALL/resources/wsrp folder to the WEB-INF/lib folder of your web application.&lt;/p&gt;&lt;p&gt;2. Copy the wsrp-jsp folder from the LCDS_INSTALL/resources/wsrp folder to the root of your web application.&lt;/p&gt;&lt;p&gt;3. Follow the portal-server-specific steps below to create portlets for your Flex applications. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please tell how this is configured on server side with hello world example ?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0a1eafd4-6b76-4460-b5d8-460109174507] --&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:45:59 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1141474</guid>
      <dc:date>2013-01-28T09:45:59Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Server Push Intermittent message loss</title>
      <link>https://forums.adobe.com/thread/1037680</link>
      <description>&lt;!-- [DocumentBodyStart:9e42412e-abc6-4649-a852-9aff75bb01de] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We are using LCDS 2.6 and using the RTMP port for the server push. However, at times the notifications in between the server to clients goes missing. It works pretty good at times and after some time, it does not shows notification.&lt;/p&gt;&lt;p&gt;We are using DataTransactionServices for pushing the data from LCDS to the Flex clients.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9e42412e-abc6-4649-a852-9aff75bb01de] --&gt;</description>
      <pubDate>Thu, 06 Dec 2012 03:03:55 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1037680</guid>
      <dc:date>2012-12-06T03:03:55Z</dc:date>
      <clearspace:dateToText>1 year 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Install BlazeDS on Jboss7</title>
      <link>https://forums.adobe.com/thread/1110082</link>
      <description>&lt;!-- [DocumentBodyStart:864c134c-8fb6-4b00-a4e4-e6d81ff13c8b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi everyone,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Does anybody know , how to install/config BlazeDS on Jboss7&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Thx&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:864c134c-8fb6-4b00-a4e4-e6d81ff13c8b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">blazeds</category>
      <pubDate>Wed, 05 Dec 2012 10:18:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1110082</guid>
      <dc:date>2012-12-05T10:18:40Z</dc:date>
      <clearspace:dateToText>1 year 11 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to instantiate PropertySpecifier for a localFill</title>
      <link>https://forums.adobe.com/thread/971482</link>
      <description>&lt;!-- [DocumentBodyStart:60424bfc-6494-47fc-96fd-b891a207f7ae] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm trying to use the DataManager's localFill method but can't seem to instantiate the PropertySpecifier argument.&lt;/p&gt;&lt;p&gt;Since the propertySpecifier is required, I can't use localFill.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To instantiate a PropertySpecifier you need a ConcreteDataService, mode and extra argument. However, I can't instantiate or get/cast a ConcreteDataService since it's a locked class.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So how does one use the propertySpecifier and by extension the localFille method?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thx in advance,&lt;/p&gt;&lt;p&gt;David&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:60424bfc-6494-47fc-96fd-b891a207f7ae] --&gt;</description>
      <pubDate>Tue, 27 Nov 2012 19:38:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/971482</guid>
      <dc:date>2012-11-27T19:38:16Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Migration from BlazeDS to LCDS</title>
      <link>https://forums.adobe.com/thread/1098601</link>
      <description>&lt;!-- [DocumentBodyStart:83db2006-07b5-4cc5-a932-d34d801331a1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have an application which is developed using Flex and BlazeDS. Now i want that application to have an HTML5 interface as well. But as i have done some research i come to know that there is no JS API for BlazeDS to have it connected with javascript where as LCDS have the same. I do not want to rewrite the business logics and communication layer so want to know if the JS API of LCDS is good enough and secondly how to migrate from BlazeDS to LCDS.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:83db2006-07b5-4cc5-a932-d34d801331a1] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">html</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">to</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">lcds</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">blazeds</category>
      <pubDate>Tue, 13 Nov 2012 23:25:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1098601</guid>
      <dc:date>2012-11-13T23:25:37Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Filter argument as collection</title>
      <link>https://forums.adobe.com/thread/1087221</link>
      <description>&lt;!-- [DocumentBodyStart:48571641-ee61-49d5-8b80-90ca5f4260f2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi, I'm trying to create a query on the Data Modeler in Flash Builder to retrieve some elements from an entity in this case is Client which have a clientId, basically I'm creating a filter with this query: jpql:Select c from Client as c Where c.clientId in (:IDs) but I don't know how to specify that the IDs query argument is going to be a collection, array or something like that, I tried using IDs as a string and passing the formated string like this 1,2,3 but it gives me a Cast error. Any thoughts on how to handle this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:48571641-ee61-49d5-8b80-90ca5f4260f2] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flash</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">livecycle</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">in</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">modeler</category>
      <pubDate>Tue, 23 Oct 2012 20:46:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1087221</guid>
      <dc:date>2012-10-23T20:46:24Z</dc:date>
      <clearspace:dateToText>2 years 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>LCDS Edge Server Issue</title>
      <link>https://forums.adobe.com/thread/1034828</link>
      <description>&lt;!-- [DocumentBodyStart:ddef5d1c-0409-45d9-84d7-43318575e490] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We are trying to use the LCDS edge server (&lt;span style="font-size: 11pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;&lt;a class="jive-link-external-small" href="http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/WS56A7C79B-213F-425d-8D41-2A5391D75C03Update.html" rel="nofollow"&gt;http://help.adobe.com/en_US/LiveCycleDataServicesES/3.1/Developing/WS56A7C79B-213F-425d-8D 41-2A5391D75C03Update.html&lt;/a&gt;&lt;/span&gt;) as a Load Balancer to the LCDS app servers and to secure access to app servers. However, we found that the channelSet.login requests are not forwarded to our LCDS app servers behind the edge server. Such requests are terminated on the Edge Server.&amp;nbsp; Adobe's support hasn't been able to give us a definitive answer of why and how to solve it. So, we just wonder:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) Has anybody&amp;nbsp; used this product?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2) How do you solve the channelSet.log request termination issue?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;3) What's your impression of this product for Load Balancing and Proxying LCDS channels?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;- Hao&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ddef5d1c-0409-45d9-84d7-43318575e490] --&gt;</description>
      <pubDate>Tue, 23 Oct 2012 12:51:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1034828</guid>
      <dc:date>2012-10-23T12:51:23Z</dc:date>
      <clearspace:dateToText>2 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Customised Error Message instead of standard message ?</title>
      <link>https://forums.adobe.com/thread/1079702</link>
      <description>&lt;!-- [DocumentBodyStart:abc2c3cf-2266-438a-8677-68576e068da0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7; color: #000000;"&gt;I am calling a WSDL through a Livecycle generated form, but it shows an error saying "Error attempting to read from file".....(file name) when it does not connect to the web service. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7; color: #000000;"&gt; Can we give a customised error message instead of the above standard message using exception handling in the XML code ? &lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7; color: #000000;"&gt;Kindly help,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;&lt;span style="color: #000000;"&gt;Chaitanya Muttur&lt;/span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:abc2c3cf-2266-438a-8677-68576e068da0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle_form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_connection</category>
      <pubDate>Wed, 10 Oct 2012 05:38:32 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1079702</guid>
      <dc:date>2012-10-10T05:38:32Z</dc:date>
      <clearspace:dateToText>2 years 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>error in lcds-dataservices</title>
      <link>https://forums.adobe.com/thread/1069879</link>
      <description>&lt;!-- [DocumentBodyStart:09c83eb1-4e4e-4ef5-8efc-50feb64d471e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;While i am using lcds-dataservices i am getting following error --&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;faultString = "A fill method returned object type which is not a collection.&amp;nbsp; destination 'mppchequebounce' params: '[&lt;/p&gt;&lt;p&gt;[1026300,] (class: flex.messaging.io.ArrayCollection)] (class: java.util.ArrayList)'"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;please help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:09c83eb1-4e4e-4ef5-8efc-50feb64d471e] --&gt;</description>
      <pubDate>Fri, 21 Sep 2012 15:35:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1069879</guid>
      <dc:date>2012-09-21T15:35:03Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>HashMap$AbstractMapIterator.hasNext() eating 20% of CPU cycles LCDS4.6</title>
      <link>https://forums.adobe.com/thread/1027804</link>
      <description>&lt;!-- [DocumentBodyStart:90a53e21-bfdf-4e69-b7ec-82a5dc6fd32d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We are doing some load testing on the new LCDS4.6 with RTMP channel and we noticed some pretty high CPU usage here from this method&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;flex.messaging.socketserver.Reactor$ReactorImpl.run()&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The cause seems to be a call to HashMap$AbstractMapIterator.hasNext().&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideeas?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;PS: LCDS3.1 did not have this problem.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:90a53e21-bfdf-4e69-b7ec-82a5dc6fd32d] --&gt;</description>
      <pubDate>Wed, 19 Sep 2012 04:05:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1027804</guid>
      <dc:date>2012-09-19T04:05:29Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Fill Data from PDF From to Access Database</title>
      <link>https://forums.adobe.com/thread/1063441</link>
      <description>&lt;!-- [DocumentBodyStart:c349d1f0-d4e0-4082-8c2b-0d0856457949] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I create a PDF form for fill data that connect to a access database. It works greate in my own PC.&lt;/p&gt;&lt;p&gt;But when i move it on another PC PDF button does not work.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c349d1f0-d4e0-4082-8c2b-0d0856457949] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_livecycle_form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">adobe_acrobat_pro_x</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3473">data_connection</category>
      <pubDate>Mon, 10 Sep 2012 11:56:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1063441</guid>
      <dc:date>2012-09-10T11:56:12Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>SecureAMF channel failed for first time initialization</title>
      <link>https://forums.adobe.com/thread/636223</link>
      <description>&lt;!-- [DocumentBodyStart:dc8eac3f-dcf7-4f86-ac18-1b67844d4da9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a Flex application to authenticate with server via RemoteObject.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It is working normally with http (i.e. amf channel)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However when I try to login via https, the first access time, Flex application always return Fault error. Subsequent login is OK.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From server side, I see user has been logged in successfully at first time.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is it because the certificate is not trusted? Any idea?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you,&lt;/p&gt;&lt;p&gt;Anh&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the log that I have from client side:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;LoginCommand Fault: (mx.rpc.events::FaultEvent)#0&lt;/p&gt;&lt;p&gt;&amp;nbsp; bubbles = false&lt;/p&gt;&lt;p&gt;&amp;nbsp; cancelable = true&lt;/p&gt;&lt;p&gt;&amp;nbsp; currentTarget = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp; eventPhase = 2&lt;/p&gt;&lt;p&gt;&amp;nbsp; fault = (mx.rpc::Fault)#1&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; content = (Object)#2&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; errorID = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultCode = "Client.Error.MessageSend"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultDetail = "Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: '&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;'"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultString = "Send failed"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; message = "faultCode:Client.Error.MessageSend faultString:'Send failed' faultDetail:'Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: '&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;''"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name = "Error"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rootCause = (mx.messaging.events::ChannelFaultEvent)#3&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bubbles = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cancelable = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; channel = (mx.messaging.channels::SecureAMFChannel)#4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; authenticated = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; channelSets = (Array)#5&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connected = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectTimeout = -1&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableSmallMessages = true&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endpoint = "&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; failoverURIs = (Array)#6&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mpiEnabled = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; netConnection = (flash.net::NetConnection)#7&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; client = (mx.messaging.channels::SecureAMFChannel)#4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connected = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objectEncoding = 3&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proxyType = "none"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; uri = "&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; piggybackingEnabled = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; polling = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pollingEnabled = true&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pollingInterval = 3000&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protocol = "https"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reconnecting = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; recordMessageSizes = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; recordMessageTimes = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; requestTimeout = -1&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; uri = "&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url = "&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; useSmallMessages = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; channelId = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connected = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; currentTarget = (mx.messaging.channels::SecureAMFChannel)#4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; eventPhase = 2&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultCode = "Channel.Connect.Failed"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultDetail = "NetConnection.Call.Failed: HTTP: Failed: url: '&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;'"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultString = "error"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reconnecting = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rejected = false&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rootCause = (Object)#8&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; code = "NetConnection.Call.Failed"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; description = "HTTP: Failed"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; details = "&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; level = "error"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; target = (mx.messaging.channels::SecureAMFChannel)#4&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type = "channelFault"&lt;/p&gt;&lt;p&gt;&amp;nbsp; headers = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp; message = (mx.messaging.messages::ErrorMessage)#9&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; body = (Object)#2&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; clientId = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; correlationId = "F4E42A7F-5E56-B704-CDB6-87826108D443"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; destination = ""&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; extendedData = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultCode = "Client.Error.MessageSend"&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultDetail = "Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: '&lt;/span&gt;&lt;a class="jive-link-external-small" href="https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure" rel="nofollow"&gt;https://172.52.22.218:9443/MyApplication/messagebroker/amfsecure&lt;/a&gt;&lt;span&gt;'"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; faultString = "Send failed"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; headers = (Object)#10&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; messageId = "B549C02F-9EDF-7C6E-C89F-878261572A73"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rootCause = (mx.messaging.events::ChannelFaultEvent)#3&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timestamp = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeToLive = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp; messageId = "B549C02F-9EDF-7C6E-C89F-878261572A73"&lt;/p&gt;&lt;p&gt;&amp;nbsp; statusCode = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp; target = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp; token = (mx.rpc::AsyncToken)#11&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; message = (mx.messaging.messages::RemotingMessage)#12&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; body = (Array)#13&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [0] (com.mydomain.model.dto::LoginDTO)#14&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; statuscode = "0"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; userName = "myusername"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; clientId = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; destination = ""&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; headers = (Object)#15&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; messageId = "F4E42A7F-5E56-B704-CDB6-87826108D443"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; operation = "authenticate"&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; source = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timestamp = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; timeToLive = 0&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; responders = (Array)#16&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [0] (com.mydomain.controller::LoginCommand)#17&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; result = (null)&lt;/p&gt;&lt;p&gt;&amp;nbsp; type = "fault"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dc8eac3f-dcf7-4f86-ac18-1b67844d4da9] --&gt;</description>
      <pubDate>Thu, 23 Aug 2012 10:16:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/636223</guid>
      <dc:date>2012-08-23T10:16:56Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>11</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>invoke remoting endpoint crossdomain</title>
      <link>https://forums.adobe.com/thread/339914</link>
      <description>&lt;!-- [DocumentBodyStart:f6167d19-4068-4fec-8c27-c65715805f76] --&gt;&lt;div class="jive-rendered-content"&gt;I need to invoke work process through remoting endpoint in flex app from other domain.
&lt;br/&gt;
&lt;br/&gt;my flex app is on : http://localsever.me.com:9001/test.swf
&lt;br/&gt;
&lt;br/&gt;in this test.swf, I try to invoke a process that is throught remoting end point 
&lt;br/&gt;http://remote.me.comremoting/remoting/messagebroker/amf
&lt;br/&gt;
&lt;br/&gt;I got error message with "Security Sandbox Violation" error.
&lt;br/&gt;
&lt;br/&gt;Has anybody done this before successfully?
&lt;br/&gt;
&lt;br/&gt;Thanks,
&lt;br/&gt;
&lt;br/&gt;Joanna Gao
&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f6167d19-4068-4fec-8c27-c65715805f76] --&gt;</description>
      <pubDate>Thu, 23 Aug 2012 10:15:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/339914</guid>
      <dc:date>2012-08-23T10:15:53Z</dc:date>
      <clearspace:dateToText>2 years 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>14</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

