Bungee Labs
is committed to open conversation about its products and services. Conversations should be conducted in the spirit of the Company-Customer Pact.
If you use this product, we'll add it to your dashboard. If you work for the company that makes this product, we'll connect you with other employees. Got it, thanks!
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.
Example code:
var boolean foundItLower = false;
var boolean foundItUpper = false;
var int lowerindex;
var int upperindex;
var Collection myColl = new Collection(string);
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.
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.
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.
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.
I'd like to see IRC come back as an 'official' support channel, with regularly scheduled staffing hours, etc.
But, I'd like to see 2 different channels:
(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.
(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.
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?
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?
Thanks
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.
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.
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.
This affects all current solutions, and any new ones I create with just that one account. This started way back in August or September.
Can someone look into that for me?
Thank you.
I've seen a few references to Bungee Connect support for Amazon's SimpleDB (in this blog entry, for example) but I can't find any detailed information. Is a detailed how-to or a sample application available?
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!
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.
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.
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?
An error occurs every time I select my super admin design group? I get a dialog that says an error has been detected and the page refreshes to the welcome page. I can't post my hello world project? I'm on the step in the hello world application just after i check in the code for the project and start to use the publishing task.
Delivery
You can deploy your applications to the cloud (either on Bungee Labs' multi-tenant grid, or on a virtual host on Amazon’s Elastic Compute Cloud), or to systems in your own data center.
So, let's assume I've got a label. I can change the text of that label in code to be "red", "green" or "blue". Is there a way for me to change the color of that text to be red, green, or blue? I've figured out how to define different styles, but I don't know how or if there is a way to assign them via code.