DragonRAD Forum
May 25, 2013, 06:08:29 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3 ... 14
1  General Category / General Discussion / Re: Single Time authenticating Users in Mobile Apps on: September 28, 2012, 06:09:53 AM
yes, this certainly can be achieved through either global script of your login App or onload script of your login page in login App.


You can add a global variable to monitor whether user has logged in already, if yes, then go to the main application directly, otherwise, go through the normal process to handle login. After user logged in successfully, set that global variable to right value.



Or

if you have main app and login app in your project, you can set the initial application in your project property to be your main app instead of login app. In this way, you do not need to attach script at all but can achieve the same goal.

The logic of this is as following:
When application starts, it will check which app is my initial application -> it is main app. -> what is login mode  of main app -> it is reqlogon -> whether loggedOnUserData data row is empty -> if is empty then go to login app automatically as its login mode is logonapp, otherwise, will run the main app directly.
2  General Category / General Discussion / Re: Working online and offline on: September 26, 2012, 06:04:52 AM
It is very hard to clarify the topic in few sentence. 

The best way to understand this topic is to run an example application provided by DragonRAD. It will give you better understanding how the dragonRAD handles the data communication between mobile devices and back end database.

I personal think either the supperApp or publicsafetyDemo can do the job.

Also some online reading will also help. http://dragonrad.com/foswiki/bin/view/Help/DataSection
3  General Category / General Discussion / Re: calender on: September 12, 2012, 06:11:59 AM
Might the instruction work for you? http://dragonrad.com/foswiki/bin/view/Help/InstallingClients
4  General Category / General Discussion / Re: Working online and offline on: September 12, 2012, 06:09:10 AM
Yes, this behaviors should work with DragonRAD by default as in dragonrad, all modified/created data will be stored locally at devices side first, then devices will check the connectivity and try to synch those data with backend database. If the connectivity can not be established at that point, those data will be on the devices and try to synch with backend at next time either through manual trigger or automatically scheduled synch.

The only thing needs to put in mind is the storage size limitation of mobile devices.
5  General Category / General Discussion / Re: Windows Mobile trouble on: June 18, 2012, 11:06:07 AM
Hi Andy,

From the issue you mentioned, either your device does not have internet connection or the host server url is wrong.

first verify the device has internet access.

Bring up the explore on device and type the tomcat server URL, like http://192.168.1.123:8082, you should be able to see the welcome page of tomcat Apache on your device.

If you did not see the welcome page, please verify whether you have activeSync running and what is the status. And also check the connection setting is set to internet through File -> connection settings -> The Internet (For this computer is connected to drop down list)

Second, verify the host server URL is correct:

Typing the host server url into device's browser, you should be able to download and install the client directly.

Regards,

 
6  General Category / General Discussion / Re: Barcode Scanner App on: December 13, 2011, 09:01:47 AM
Hi Carloz,

Glad you find the solution. Any further issues, please feel free post here.

Kind Regards,

Yi
7  General Category / General Discussion / Re: Barcode Scanner App on: December 12, 2011, 08:05:29 AM
Hi Carloz,

Welcome to the forum.

For building Barcode scanning project, DragonRAD has an example in its example suites: http://dragonrad.com/foswiki/bin/view/Help/ExampleProjects.

DragonRAD also supports Grabba: http://dragonrad.com/foswiki/bin/view/Help/Grabba on BlackBerry devices.

Please take a look of above links, and try out the example project. Any further issues, please feel free to post your questions and concerns here.

Kind Regards,



8  General Category / General Discussion / Re: windows mobile error on: December 05, 2011, 06:54:57 AM
Update as other users might also follow into the same issue:

The reason why you are seeing "MissingMethodException" and  "Could not load type "MapClient.MapApp"" error is as following:

Some WM devices are coming without Microsoft .NET CF 3.5 installed by default.

Please download/install the following packages and give a try again.

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=65
9  General Category / General Discussion / Re: 1D Barcode Scanning with Samsung GT-P1000 Tablet on: September 09, 2011, 01:38:07 PM
Hi Johan,

As we do not have Samsung GT-P1000 table in hand, We tested Barcode scanning function with our HTC Android phone. It works fine with that model.

For your case, it might be:

(1) either your project file contains error. <--- This can be solved/isolated by sending your project file to us, we can help you to verify it.

(2) or our product has issue to work with Samsung Tablet. <----- This might take a little bit longer to get address as we do not have that model in hand. Either we tried to get a Samsung Tablet or...

Kind Regards,

Yi
10  General Category / General Discussion / Re: Devide ID/Pin on: September 09, 2011, 07:35:49 AM
Hi Johan,

You might try some similar as the following:

local myFields = clientevent.form.fields
local curtime = os.time()

-- client.alert(curtime)

-- if you want to set value to a date field, you do not need to convert the curtim to string
mycurtimestring = os.date("%X" , curtime)  -- if you like different format, please refer www.lua.org/pil/22.1.html for detail
myFields["textboxField"].value = mycurtimestring

Kind Regards,

Yi
11  General Category / General Discussion / Re: Devide ID/Pin on: September 09, 2011, 06:44:54 AM
Hi Johan,

Yes, you can. Steps:

(1) Drop a text box into the form.
(2) at the onload actions of form, put the following script into.

mypin = client.pin

--client.alert(mypin)

myform = clientevent.form

mytextbox = myform.fields["textboxfieldID"]

--client.alert(mytextbox)

mytextbox.value = mypin

12  General Category / General Discussion / Re: Notification didn't show up? on: July 28, 2011, 10:42:54 AM
Hmm.... Could you double check whether DragonRAD client version on the device is DragonRADClinet50 (through BB menus/Options/Applications)

Is it also possible that you can post your project here or send to us through email to yliu@seregon.com, we can take a look what is going on with the project.

In the mean time, Could you check BackGround Ring, Vibrate checkBox on the same tab as notification to see whether you can here Ring tone when New/Update happens.
13  General Category / General Discussion / Re: Notification didn't show up? on: July 28, 2011, 10:07:09 AM
To trigger the notification on device, the new or update action should be happening on database side. For instance, device A creates a new or update record, device B will receive the notification.

To see the notification on device, two things also need to be verified:

(1) the application has to be running in the Back Ground on the device to get notification.

(2) a synch rule should be scheduled periodically to contact with server to get whether server has new or update records while application is running in BG.

14  General Category / General Discussion / Re: Wipe Device? on: July 28, 2011, 07:27:26 AM
Oh, Thanks for your finding. This "wipe device" action should not be released as this feature is still under developing phase.

Thanks.
15  General Category / General Discussion / Re: Wipe Device? on: July 28, 2011, 07:16:19 AM
Where did you find this 'Wipe Device' action?
Pages: [1] 2 3 ... 14
Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!