|
|
Hey I was wondering if there is support for Java3D. I wanted to use some pretty basic interactive 3d elements in my application if possible. Also is there SQL support, and if there is how can we build this with our apps? Thanks! |
|
|
Hey digital1 – good question! 3D would be cool. I’ll tap the guys on the shoulder and have them get back to you soon. |
|
|
I just got tapped. Digital1, We currently do not have any support for Java3D or SQL in the Virtual BUG, simply because we haven't gotten to it yet. The BUG hardware has support for advanced graphics but we haven't made any decisions on default 3D support. Regarding SQL support Apache Derby is distributable as an OSGi bundle and will probably work quite nicely on the Virtual BUG. In general I'd say that OSGi and/or JDBC is your best bet here. - http://db.apache.org/derby/derby_charter.html |
|
|
I know what direction to take with my bug now. Thanks for the response! : Thanks |
|
|
digital1, Keep the questions coming! We want all the feedback we can get. Regarding XML we internally use a very (very) simple xml parser/DOM that we wrote. It has no schema validation or namespace support but does have a simple XPath query engine. This parser is located at com.buglabs.common bundle in the com.buglabs.common.util package. If you’re looking for something more full featured you can add an XML service bundle to the Virtual BUG (Here is a link to an API - http://help.eclipse.org/help31/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/osgi/org/osgi/util/xml/package-summary.html) or just bundle whatever XML library jar in your bundle. FlickrUppr uses Xerces in this fashion. You may also want to see what the OSGi bundle repository (http://help.eclipse.org/help31/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/osgi/org/osgi/util/xml/package-summary.html) has to offer. Note that we use an R3 OSGi implementation so any bundles that require R4 (the latest version is R4.1) functionality may not work. |
|
|
Thanks for the response! I used an XML parser for an app I wrote back in college a few months back and that thing was horribly buggy. It was unstable to use with Eclipse. I will look at the libraries that you guys are using. Thanks again! I don’t feel bad asking questions now. I have some other questions. I will create a general topic so that its more useful. Thanks again! |
|
|
Great! I’ve added a section to the FAQ for this issue in general here: http://bugbeta.com/wiki/index.php/FAQ#How_do_I_….28SQL.2C_XML.2C_SOAP.2C_Jini.2C_etc..29_functionality_to_the_Virtual_BUG.3F |
|
|
FWIW, FlickrUppr is using xerces, which is a full-blown XML parser. You can copy xerces.jar into your project and use it like FlickrUppr’s doing if you like. |
|
|
Thanks for the tip finsprings! I will look over that code. :-) |