<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" version="2.0">
  <channel>
    <title>[Satisfaction]: All topics for Bungee Labs - Recently Created</title>
    <link>http://getsatisfaction.com/bungeelabs/topics?sort=recently_created</link>
    <description>All topics for Bungee Labs - Recently Created</description>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/qnaknowledgebase" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>BungeeConnect outage (builder, www, docs, etc.)</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/bungeeconnect_outage_builder_www_docs_etc</link>
      <description>Many, if not all, sites on the bungeeconnect domain are down. Outage appears to be affecting at least the following subdomains:
&lt;br /&gt;&lt;br /&gt;
     www
&lt;br /&gt;
     builder
&lt;br /&gt;
     docs
&lt;br /&gt;
     sqladmin</description>
      <pubDate>Tue, 14 Jul 2009 10:04:46 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-07-14T10:04:46Z</dc:date>
    </item>
    <item>
      <title>unable to publish</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/unable_to_publish4</link>
      <description>i get an exception on rightclicking the project name: cannot call the method 'split'</description>
      <pubDate>Sun, 12 Jul 2009 09:24:58 -0000</pubDate>
      <dc:creator>vrushali</dc:creator>
      <dc:date>2009-07-12T09:24:58Z</dc:date>
    </item>
    <item>
      <title>WSDL file import fails</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/wsdl_file_import_fails</link>
      <description>I have downloaded a WSDL file from Oracle CRM On Demand app. I am able to import it in SOAPUI but not in Bungeee. When I try to create a new WSDL project and upload the file from my local machine, it does nothing. IS there anything wrong with this functionality.</description>
      <pubDate>Sat, 11 Jul 2009 18:21:24 -0000</pubDate>
      <dc:creator>Sreenath</dc:creator>
      <dc:date>2009-07-11T18:21:24Z</dc:date>
    </item>
    <item>
      <title>Is there something wrong with the documentation server?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/is_there_something_wrong_with_the_documentation_server</link>
      <description>I keep trying to look up the StringUtil page that I've looked up many times before. Unfortunately, it's telling me that it can't be found. CryptoUtil doesn't seem to exist either. And, the page looks weird, too: it has a MindTouch logo instead of the BungeeConnect logo.
&lt;br /&gt;&lt;br /&gt;
What's up?</description>
      <pubDate>Wed, 08 Jul 2009 08:04:17 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-07-08T08:04:17Z</dc:date>
    </item>
    <item>
      <title>Can't import a TypeLib I previously created and updated.</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/cant_import_a_typelib_i_previously_created_and_updated</link>
      <description>I've got a solution that I've gummed up rather well. The solution had a typelib in it and I made some changes to the typelib and wanted to import a new version of it into the solution. So, I re-published the typelib. Then I went into the solution and deleted the previous version. Finally, I attempted to import the updated typelib but it told me that it already existed so it would not be imported.
&lt;br /&gt;&lt;br /&gt;
I've experienced this problem before, in other instances. I tried Recursive Sync, Revert, refreshing my browser, emptying cookies, etc. In the past those have worked sometimes. On one recent occasion none of those worked, but I was able to solve the problem by re-importing the *entire* solution into a brand-new solution. Sadly, however, even *that* didn't work in this case.
&lt;br /&gt;&lt;br /&gt;
What can I do?
&lt;br /&gt;&lt;br /&gt;
I have many other things I can work on, but I do need to get the new version of my typelib re-imported into my solution. It's been in this state for four days now. (There was a holiday, I realize, but not any more...)</description>
      <pubDate>Tue, 07 Jul 2009 19:01:04 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-07-07T19:01:04Z</dc:date>
    </item>
    <item>
      <title>In case of case, break code</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/in_case_of_case_break_code</link>
      <description>There really needs to be an "ignore case" argument (boolean) to enable/disable case sensitivity for find functions, notably the findByValue and findAllByValue functions for Collections. If one is attempting to find an item in a collection, case really should not matter, or at the very least, it should be up to the developer whether it matters or not. In the following example code, notice that if the case of the item to be found doesn't exactly match the contents of the collection, the find fails.
&lt;br /&gt;&lt;br /&gt;
Example code:
&lt;br /&gt;&lt;br /&gt;
var boolean foundItLower = false;
&lt;br /&gt;
var boolean foundItUpper = false;
&lt;br /&gt;
var int lowerindex;
&lt;br /&gt;
var int upperindex;
&lt;br /&gt;
var Collection myColl = new Collection(string);
&lt;br /&gt;&lt;br /&gt;
myColl.add("One");
&lt;br /&gt;
myColl.add("Two");
&lt;br /&gt;
myColl.add("Three");
&lt;br /&gt;
myColl.findByValue("One",&amp;lt;not set&amp;gt;,&amp;lt;not set&amp;gt;,upperIndex);
&lt;br /&gt;
myColl.findByValue("one",&amp;lt;not set&amp;gt;,&amp;lt;not set&amp;gt;,lowerIndex);
&lt;br /&gt;
foundItLower = lowerIndex &amp;gt;= 0;
&lt;br /&gt;
foundItUpper = upperIndex &amp;gt;= 0;
&lt;br /&gt;
dialog.message("lowerIndex: " + lowerIndex + "; upperIndex: " + upperIndex);
&lt;br /&gt;
dialog.message("foundItLower: " + foundItLower + "; foundItUpper: " + foundItUpper);
&lt;br /&gt;&lt;br /&gt;
One word: Aaargh! (This is not a line of code...)</description>
      <pubDate>Wed, 01 Jul 2009 14:23:35 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-07-01T14:23:35Z</dc:date>
    </item>
    <item>
      <title>Official IRC Support channel(s).</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/official_irc_support_channel_s</link>
      <description>I'd like to see IRC come back as an 'official' support channel, with regularly scheduled staffing hours, etc.
&lt;br /&gt;&lt;br /&gt;
But, I'd like to see 2 different channels:
&lt;br /&gt;
(1) BCDN-member only channel for, well, BCDN members.  This implies a certain level of familiarity with the BungeeConnect, the Builder, and well, the staff ;-)  This channel would be highly tech-driven, and users should expect prompt responses to technical support queries, as well as community-driven assistance for design/development philosophy/shared code.
&lt;br /&gt;
(2) Noob channel.  Help for people just getting started with BungeeConnect, and who are having difficulty either with the core concepts in the Learn Tab, or with the prerequisite knowledge (OO concepts, or MVA architecture, for example.)  Users should expect courteous explanations and assistance, but will not usually generate high-level issues, such as bug reports.</description>
      <pubDate>Tue, 23 Jun 2009 20:44:12 -0000</pubDate>
      <dc:creator>bear454</dc:creator>
      <dc:date>2009-06-23T20:44:12Z</dc:date>
    </item>
    <item>
      <title>Server status page?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/server_status_page</link>
      <description>I often experience difficulty getting on the Bungee FTP site to upload resources. Would it be possible to create a server status app containing a list of the various bungee servers that are accessible to Bungee's customers and their availability/status? That way, it will be more apparent whether the problem is on Bungee's end or our end.</description>
      <pubDate>Tue, 23 Jun 2009 20:03:43 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-06-23T20:03:43Z</dc:date>
    </item>
    <item>
      <title>Generating random numbers?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/generating_random_numbers</link>
      <description>What's the best way to generate random (or even pseudo-random) numbers? I notice that the CryptoUtil library can generate various random things (strings, longs, doubles, etc.) but oddly, there is no function to generate random integers. Should I be creating a random long and then convert it back to an integer? I would have expected there to be an easier way. Am I missing something obvious?</description>
      <pubDate>Tue, 23 Jun 2009 19:17:30 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-06-23T19:17:30Z</dc:date>
    </item>
    <item>
      <title>Did the BungeeConnect SSL certificate expire?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/did_the_bungeeconnect_ssl_certificate_expire</link>
      <description>I just got the messages below when I attempted to log in to the Builder using Firefox.
&lt;br /&gt;&lt;br /&gt;
Can someone address this / renew the certificate?
&lt;br /&gt;&lt;br /&gt;
----------------------------------------------------------
&lt;br /&gt;&lt;br /&gt;
Secure Connection Failed
&lt;br /&gt;&lt;br /&gt;
        builder.bungeeconnect.com uses an invalid security certificate.
&lt;br /&gt;&lt;br /&gt;
        The certificate expired on 6/8/2009 4:59 PM.
&lt;br /&gt;&lt;br /&gt;
        (Error code: sec_error_expired_certificate)
&lt;br /&gt;&lt;br /&gt;
            * This could be a problem with the server's configuration, or it could be someone trying to impersonate the server.
&lt;br /&gt;&lt;br /&gt;
            * If you have connected to this server successfully in the past, the error may be temporary, and you can try again later.</description>
      <pubDate>Tue, 09 Jun 2009 00:31:28 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-06-09T00:31:28Z</dc:date>
    </item>
    <item>
      <title>Bungee Application into Salesforce account</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/bungee_application_into_salesforce_account</link>
      <description>Hi! i'm newbie in Bungee. How do i use a bungee application into my salesforce account? and is it possibile obtain a wdsl descriptor of  my bungee application?
&lt;br /&gt;
Thanks</description>
      <pubDate>Fri, 05 Jun 2009 09:14:58 -0000</pubDate>
      <dc:creator>thomas</dc:creator>
      <dc:date>2009-06-05T09:14:58Z</dc:date>
    </item>
    <item>
      <title>Direct uploading of Resources in Builder.</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/direct_uploading_of_resources_in_builder</link>
      <description>I see the value of being able to bulk upload resources using FTP, (or WebDAV in the past), but there are many occasions where only a few resources need to be uploaded to a project.
&lt;br /&gt;&lt;br /&gt;
It would be much simpler to have an upload option on Resource Projects in the Builder, which would store the file in the same space as the FTP uses, but also automatically add it as a resource.
&lt;br /&gt;&lt;br /&gt;
The last time this was considered to be too much work to add file upload in the Builder, but since then, the FileUpload control has been developed, which should significantly ease the implementation.
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://docs.bungeeconnect.com/index.php?title=Control_:_FileUpload" rel="nofollow"&gt;&lt;img src="http://docimages.bungeeconnect.com/wiki/images/image/Controls/FileUpload/FileUpload.png" alt="" /&gt;&lt;/a&gt;</description>
      <pubDate>Tue, 02 Jun 2009 16:01:07 -0000</pubDate>
      <dc:creator>bear454</dc:creator>
      <dc:date>2009-06-02T16:01:07Z</dc:date>
    </item>
    <item>
      <title>Function Interfaces no longer trigger for one of my accounts.</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/function_interfaces_no_longer_trigger_for_one_of_my_accounts</link>
      <description>On my "ted" account, Function Interfaces no longer fire. To work around this, I had to import a shared project from a different user account. From that account, MainPostRenderInit and OnDragDrop functions worked just fine.
&lt;br /&gt;
This affects all current solutions, and any new ones I create with just that one account. This started way back in August or September.
&lt;br /&gt;
Can someone look into that for me?
&lt;br /&gt;
Thank you.</description>
      <pubDate>Fri, 29 May 2009 19:26:14 -0000</pubDate>
      <dc:creator>Ted Haeger</dc:creator>
      <dc:date>2009-05-29T19:26:14Z</dc:date>
    </item>
    <item>
      <title>Ignore dialogs in headless apps?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/ignore_dialogs_in_headless_apps</link>
      <description>I've spent a lot of time recently debugging an application that wasn't working properly. Sometimes it worked, and sometimes, it didn't. Finally, I figured out what the problem was. My app is "headless", i.e. no user interface. However, when I added a Main form and tested my functionality that way, all was fine. Since you can't use logs in headless apps, I started logging my messages in an external database. Unfortunately, I still had a rogue dialog message statement in my code and *THAT* was what was causing my code to fail.
&lt;br /&gt;&lt;br /&gt;
Could "dialog message" statements to simply be ignored when an app is being run in "headless" mode? That would certainly make my life easier. Otherwise, it's really difficult to track down this type of problem.
&lt;br /&gt;&lt;br /&gt;
Just a thought.</description>
      <pubDate>Fri, 29 May 2009 04:24:02 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-05-29T04:24:02Z</dc:date>
    </item>
    <item>
      <title>Support for Amazon SimpleDB?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/support_for_amazon_simpledb</link>
      <description>I've seen a few references to Bungee Connect support for Amazon's SimpleDB (in &lt;a href="http://blogs.bungeeconnect.com/2008/02/18/amazon-simpledb-sample-library-for-bungee-connect/" rel="nofollow"&gt;this blog entry&lt;/a&gt;, for example) but I can't find any detailed information. Is a detailed how-to or a sample application available?</description>
      <pubDate>Wed, 13 May 2009 00:46:43 -0000</pubDate>
      <dc:creator>Rufus</dc:creator>
      <dc:date>2009-05-13T00:46:43Z</dc:date>
    </item>
    <item>
      <title>Any native data storage capabilities?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/any_native_data_storage_capabilities</link>
      <description>Just made it through the core curriculum. Regarding data storage, my take-away is that Bungee Connect was designed to create front-end applications that work with information stored elsewhere (e.g. in a remote relational database, in a remote system exposed as a service, etc.). Besides the "sandbox" relational database described in the SQL tutorial video, does Bungee Connect offer any native means to persist data, even simple configuration or user preferences data? Thanks!</description>
      <pubDate>Tue, 12 May 2009 21:25:16 -0000</pubDate>
      <dc:creator>Rufus</dc:creator>
      <dc:date>2009-05-12T21:25:16Z</dc:date>
    </item>
    <item>
      <title>The best way to work with instructions. Make them available at all times.</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/the_best_way_to_work_with_instructions_make_them_available_at_all_times</link>
      <description>Is it possible to have the learn and design options open in two different tabs at the same time? If so, how? I could simply look at the instructions as I work, and I would finish the modules much more quickly that way.</description>
      <pubDate>Tue, 12 May 2009 04:08:24 -0000</pubDate>
      <dc:creator>Shawn Blair</dc:creator>
      <dc:date>2009-05-12T04:08:24Z</dc:date>
    </item>
    <item>
      <title>Where'd the Builder go?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/whered_the_builder_go</link>
      <description>Is there a problem with the Builder? It's been unresponsive/unloadable for me for the last 15 minutes or so.</description>
      <pubDate>Sat, 09 May 2009 00:00:33 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-05-09T00:00:33Z</dc:date>
    </item>
    <item>
      <title>More available rows/columns on forms?</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/more_available_rows_columns_on_forms</link>
      <description>I'm attempting to create a somewhat complex form and I just encountered what appears to be a limit on the number of rows one can have on a form. (20) Would it be possible to increase this (and, perhaps the number of columns, which is also 20) limitation? Forms with lots of fields and separation row/columns makes one hit this ceiling rather quickly.</description>
      <pubDate>Thu, 30 Apr 2009 18:06:57 -0000</pubDate>
      <dc:creator>smallbizapps</dc:creator>
      <dc:date>2009-04-30T18:06:57Z</dc:date>
    </item>
    <item>
      <title>Design Editor not Displayed</title>
      <link>http://getsatisfaction.com/bungeelabs/topics/design_editor_not_displayed</link>
      <description>I am new to Bungee Connect.  I am building my fist app.  I create a new solution, add a project, class, and form, in that order.  I click on the form name in the solution detail and the design editor does *not* appear for the form.  The 'home' page/tab remains where the design Editor should be.  Also, the toolbox does not display.  The attached file is a screenshot after I click on the Edit form in the solution detail.  What am I missing?
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://s3.amazonaws.com/satisfaction-production/s3_images/57753/bungee2.PNG" rel="nofollow"&gt;&lt;img src="http://s3.amazonaws.com/satisfaction-production/s3_images/57753/bungee2_inline.PNG" alt="" /&gt;&lt;/a&gt;</description>
      <pubDate>Thu, 23 Apr 2009 19:31:35 -0000</pubDate>
      <dc:creator>Tom Gilbertson</dc:creator>
      <dc:date>2009-04-23T19:31:35Z</dc:date>
    </item>
  </channel>
</rss>
