I'm just wondering why I can't run the sample code in the Sybase documents for SUP 2.0. Is there any other resource or sample code to demonstrate Sybase Unwired Platform 2.0. I followed the steps in the document but I can't figure out what is wrong. By the way, I'm developing for BlackBerry devices.
I created the MBOs, then export the generated code, in my native IDE for blackberry, but unfortunately my BlackBerry simulator cannot retrieve the data in my MBOs.
Thanks in advance.
I think you are working SUP Workspace to create MBO's..
When you are creating and MBO there one screen this there which shows about data sync at place you have two options. 1.Composit, 2.Bidirectional.. there you have to select the Composit..
When you are creating the Blackberry application, you have to include .jar files of SUP and those are located at "C:\Sybase\UnwiredPlatform\Unwired_WorkSpace\Eclipse\sybase_workspace\mobile\eclipse\plugins\com.sybase.uep.tooling.api_2.0.0.201105030306\lib\client\RBS\BB"
UltraLiteJ.jar, sup_client_rim.jar
at the same location, you will find the .cod file copy those and paste at "C:\Sybase\UnwiredPlatform\Unwired_WorkSpace\Eclipse\sybase_workspace\mobile\eclipse\plugins\net.rim.ejde.componentpack6.0.0_6.0.0.30\components\simulator "
At Sybase Control Center you have to check the connection templates for each MBO there is one connection. So there you have to provide the Connection parameters like: Database URL and Driver Class and UserName,password of Database.
To sync the data from database to Simulator is very sensitive task you should careful about the configuarations of MBO's and Mapping MBO's
Related
I am new to app development and have followed this Tutorial in order to creat an SQlite database for my xamarin application.
https://msdn.microsoft.com/en-us/magazine/mt736454.aspx
Everythings worked fine I am only wondering if there's some kind of gui in order to manipulate database entries without using code?
Maybe something similar to netbeans?
Thank you.
If you do not want to create a GUI for viewing the database tables, you will have to pull the db file from the device and view it using a SQLite database viewer/editor. There are many open source and free database browsers available. I have written a detailed blog
. Please check it
I have got a task to send an application to client, that will have angular at client side with nodejs server. I need to use the database, and mongoDB is the only one which i know to use. I have built various web application with mongoDB database to store the information. surely i have installed it on windows machine. My question is, how can i use the mongoDB without installing on the machine, considering that the client will not have to go through unnecessary steps like installing mongoDB on machine and then see my demo. All i want is he runs the node server and see the demp app.
is there any mongoDB service which i can use? how to connect with node server?
please help
You could try modulus, I made a simple project using their mongoDB host and it was pretty easy to implement.
Download the MongoDB for Windows binaries as zip file: open https://www.mongodb.com/try/download/community, select the version you need, Platform: Windows and Package: zip
Extract it anywhere you like, for example to C:\mongo
Create the data directory (e.g. C:\mongo\data)
Run C:\mongo\bin\mongod.exe --dbpath=C:\mongo\data
To stop the MongoDB, you may just use Control-C
Does anyone have any direct experience in integrating Cakephp and Jasper Reports?
I'm considering using Cakephp as a framework for a large project that will require the development of 75 - 100 complex reports. Ideally I would like to generate all of these reports from within the Cakephp code (not running a stand alone Jasper UI). I'm expecting that all of the generated reports will be in a PDF format.
Thank you for sharing your thoughts,
Dale
You could try using the JasperReports ReST API and their PHP Client.
http://community.jaspersoft.com/wiki/getting-started-rest-web-service-api
http://community.jaspersoft.com/project/php-client
Note that you will still need to design and test the reports with Jasper tools, what the above will give you however is the ability to call the report with certain parameters from Cake.
Regards,
-Rami
Yes I have a Experience in Integrating jasper Report to PhP.
Tomcat need to be installed on your system with java Bridge.
very Easy to Done in Windows and difficult for me in Linux still i configured that too.
I faced the problem Java Vitual Size -xms like something .
1. As you configured the Java Bridge
Download java Bridge war below link
http://php-java-bridge.sourceforge.net/doc/download.php
create a Report Folder
Find Java File http://localhost:8080/JavaBridge/java/Java.inc
Paste to Report Folder
create a jasper report For Testing With or Withour parameter as you want
Cakephp Working code to genrate pdf
create Report_test.php and paste the below code and change the data according to your database configuration
I need to write code that communicates to Oracle Content Server 11g in Java. My understanding is that it's done using RIDC (Remote Intradoc Client).
The best I can find on getting started is this:
http://docs.oracle.com/cd/E23943_01/doc.1111/e10807/c23_ridc.htm
However, it doesn't cover the development environment setup. Where do I get the pieces to get started? I'm assuming I need JDeveloper R1, is that correct? Where do I download the SDK? Thanks.
TD
You need to install WebCenter Support API in JDeveloper. Search for the updates shown in the following image in Help->Check for Updates.
I am in PS6.
You do not need the Oracle WebCenter Portal extensions nor JDeveloper.
You can develop code using the RIDC library with any IDE, all you need is to make sure you have the correct version of the RIDC jar file on your classpath. You can obtain it from your Oracle_ECM1 installation home, in the /ucm/Distribution/RIDC folder.
I created a database via javascript using Google Gears on Android 1.5 and I'd like to access directy the sqlite file to look inside it whitout using Gears. I found several "File Browser" but they only browse the SD card. Is there a way to fetch it from the phone file system?
I have an HTC Dream running Androis 1.5.
Thank you!
Permissions on the phone filesystem are on a per application basis usually. Sure you can mess with them to give access to multiple applications but this is not the supported scenario. On the other hand, the filesystem mounted at /sdcard is open to everyone and apps can share the same folder/file with ease. If you only want to push/pull from the local storage, use the adb 'pull' and 'push' commands to get the files from the phone onto your computer and then mess with them locally. ADB is part of the Android SDK tools.
See: http://developer.android.com/guide/topics/security/security.html#userid
Still, I'm not sure you could really get the browser generated sqlite database easily if at all. Good luck!