Can I use the LCDS for... ?

Hi,
I'm a beginner in LCDS.
I have a MySQL database for my ordering system. In this database there is a user table and there are some other tables. These tables use foreign keys of user.id. People can register on my sytem (+1 row in a user table). I communicate throught web services in my mobile application. People can see only their own rows (own orders) (it is defined by the user.id).
I would like to improve my mob.app. with offline, sync, and real time changings features.
Can I use the LCDS for my system?
Thanks

+information:
Server: Apache Tomcat 7
Web Services: Java WS, and it is protected with Custom Basic Authentication. The session contains user.id after the successful authentication.

Similar Messages

  • Ivé just recived logic and I wonder: can I use the registration for logic on all my computers or is it limited to just one?

    Ivé just recived logic and I wonder: can I use the registration for logic on all my computers or is it limited to just one?

    You can install it on 2 Apple computers

  • I know I get 2 downloads. I have one on my Mac. Can I use the other for my PC laptop?

    I know I get 2 downloads. I have one on my Mac. Can I use the other for my PC laptop?

    Hello david,
    that's correct. Cloud software can be installed on Mac and/or Windows for no extra cost. No platform swapping process is required.
    On the Mac simply sign in to creative.adobe.com with your Adobe ID and download the software. Same as you did on the PC.
    Hans-Günter

  • I have FaceTime on my macbook pro but want to add it to my Mac pro.  Since I've already purchased the app, it won't allow me to purchase it again.  Can I use the app for both computers?  How can I access FaceTime for this computer v. 10.6.8?

    I have FaceTime on my Macbook Pro but want to add it to my Mac Pro v. 10.6.8.  Since I've previously purchased it in the app store, it won't allow me to purchase it again.  Can I use the same app for both of my computers?  If so, how do I access the app to download it?

    If you upgrade to Lion it comes bundeled with it!
    To get it on your Mac Pro just copy the aplication from the aplication folder on your MacBook.  You can do this via a thumb drive or over a local network connection.

  • Can I use the MsOffice for Mac license in the IPad ?, Can I use the MsOffice for Mac license in the IPad ?

    My name is Rafael Matheus from Brazil.
    I have a MacBook Pro and I have bought a MsOffice for Mac license to be use at 4 devices. But I just use 1 license, so I would like to know: Can I use the the 1 from de 3 other license to install at my new IPad mini. Please help me!!!
    I am looking forward the answer.
    Thanks.
    Rafael Matheus

    Welcome to Apple Support Communities
    You can only use the license in other Macs because Microsoft hasn't released Office for iPad yet. That's because iPads and Macs use different operating systems and different apps, so you can't run Mac applications in a iPad

  • HT4009 I would like to make an in app purchase using my $20.00 credit that I have on I tunes. I am using my  i phone5. It does not give me the choice of using the credit that I have, only a credit card. How can I use the credit for the purchase??

    I would like to make an in app purchase using the $20.00 credit that I have on itunes. I am using my i phone5. It does not give me the option of using the credit that I already have, only of using a credit card. How can I use the credt that I already have instead of a credit card?

    Is Settings > General > Restrictions > In-App Purchases: ON (green)?
    Some In-App Purchases works only with credit card.

  • SharePoint Foundation 2013 - Can we use the foundation for intranet portal with high availability ( medium farm)

    Today I had requirement, where we have to use the SharePoint Foundation 2013 (free version) to build an intranet portal ( basic announcement , calendar , department site , document management - only check-in check-out / Version).
     Please help me regarding the license  and size limitations. ( I know the feature comparison of Standard / Enterprise) I just want to know only about the installation process and license.
    6 Server - 2 App / 2 Web / 2 DB cluster ( so total license 6 windows OS license , 2 SQL Server license and Guess no sharepoint licenes)

    Thanks Trevor,
    Is load balance service also comes in free license... So, in that case I can use SharePoint Foundation 2013 version for building a simple Intranet & DMS ( with limited functionality).  And for Workflow and content management we have to write code.
    Windows Network Load Balancing (the NLB feature) is included as part of Windows Server and would offer high availability for traffic bound to the SharePoint servers. WNLB can only associate with up to 4 servers.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Can I use the Chrome for iOS app with Chromecast?

    I recently purchased a Chromecast for my home television to see how it stacks up to the Apple TV3 (which I also have). I see very clearly that Netflix and YouTube are well integrated for use with this dongle but I do not see that Chrome for iOS is (on iPhone or iPad). It seems counterintuitive to not have the Chrome iOS app work with Chromecast even though other iOS apps do (Netflix;Youtube). Can anyone confirm or deny whether or not we can, or in the near future be able to, use the iOS Chrome app with Chromecast? It is in this very department that AppleTV has the Chromecast beaten, among others.
    Also, Google Groups seems difficult to navigate in order to post my question there. If anyone has any insight for that as well I would greatly appreciate it.
    Thank you!

    Google has made an App specifically to control the ChromeCast from an iOS device rather than integrating the control into the Browser.
    https://itunes.apple.com/us/app/chromecast/id680819774?mt=8

  • How can you use the Keyboard for a JComboBox within a JTable without F2

    I am brand new to Java and I can't seem to figure this out. I have a JTable with 4 columns. The first column is a jCheckBox which is working fine. The other three are JComboBoxes. They work fine when you click them and select from the list, but our end users only want to navigate with the keyboard. They want to be able to tab to the column and just start typing the first letter of the item that they want to choose from the list and have that pop up the list and scroll to the first item in the list that starts with the letter the typed. Does anyone know how to do this? I have been playing with this for a week now and I can't seem to make it work. Please help. Below is the code for my table. Any help would be appreciated greatly. Thanks,
    Lisa
         private void LoadSTCGTable(){
         //Connect to database
            try {
                    connection = ConnecttoDB.connect();
                    // Tell me why I couldn't connect
                } catch (ClassNotFoundException ex) {
                    ex.printStackTrace();
                } catch (SQLException ex) {
                    ex.printStackTrace();
         try {
                // Get listing of Squad Types
                tblSTCG.setModel(new javax.swing.table.DefaultTableModel(
                new Object [][] {
                    {new Boolean(false), null, null, null},
                new String [] {
                    "SELECT", "SQUAD TYPE", "SQUAD CLASS", "SQUAD GROUP"
              //Add Checkbox column
               tblSTCG.getColumnModel().getColumn(0).setCellEditor(tblSTCG.getDefaultEditor(Boolean.class));
               tblSTCG.getColumnModel().getColumn(0).setCellRenderer(tblSTCG.getDefaultRenderer(Boolean.class));      
               tblSTCG.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
               Whichquerytoread = 1;
               GetSql();
               sql = textfileinfo;
               stmt = connection.createStatement();
               rs = stmt.executeQuery(sql);
               md = rs.getMetaData();
               typelist = new ArrayList();
               // Loop Through Results
               typelist.add(new PairedDescriptionCodeDesc("",""));
               while (rs.next())
                  int i = 1;
                 typelist.add( new PairedDescriptionCodeDesc(rs.getString(2),rs.getString(1)));
              s1 = new TreeSet(typelist);
              typelist = new ArrayList(s1);
              AllTypeList = new PairedDescriptionCodeDesc[typelist.size()];
              for (int i = 0; i<typelist.size(); i++)
                 AllTypeList=(PairedDescriptionCodeDesc)typelist.get(i);
    rs.close();
    catch (SQLException ex) {
    ex.printStackTrace();
    Vector typedata = new Vector();
    for (int i=0;i<typelist.size();i++)
    typedata.addElement((PairedDescriptionCodeDesc)typelist.get(i));
    cmboType = new JComboBox();
    cmboType.setModel(new DefaultComboBoxModel(typedata));
    cmboType.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
    cmboType = new JComboBox(AllTypeList);
    cmboType.setBorder(BorderFactory.createEmptyBorder());
    squadcol = tblSTCG.getColumnModel().getColumn(1);
    DefaultCellEditor cmboTypeEditor = new DefaultCellEditor(cmboType);
    cmboTypeEditor.addCellEditorListener(new NewRowCellEditorListener(tblSTCG));
    squadcol.setCellEditor(cmboTypeEditor);
    try {
    // Get listing of Squad Class
    Whichquerytoread = 2;
    GetSql();
    sql = textfileinfo;
    stmt = connection.createStatement();
    rs = stmt.executeQuery(sql);
    md = rs.getMetaData();
    classlist = new ArrayList();
    // Loop Through Results
    classlist.add(new PairedDescriptionCodeDesc("",""));
    while (rs.next())
    classlist.add(new PairedDescriptionCodeDesc(rs.getString(2),rs.getString(1)));
    s1 = new TreeSet(classlist);
    classlist = new ArrayList(s1);
    AllClassList = new PairedDescriptionCodeDesc[classlist.size()];
    for (int i = 1; i<classlist.size(); i++)
    AllClassList[i]=(PairedDescriptionCodeDesc)classlist.get(i);
    rs.close();
    catch (SQLException ex) {
    ex.printStackTrace();
    Vector classdata = new Vector();
    for (int i=0;i<classlist.size();i++)
    classdata.addElement((PairedDescriptionCodeDesc)classlist.get(i));
    cmboClass = new JComboBox();
    cmboClass.setModel(new DefaultComboBoxModel(classdata));
    cmboClass = new JComboBox(AllClassList);
    classcol = tblSTCG.getColumnModel().getColumn(2);
    DefaultCellEditor cmboClassEditor = new DefaultCellEditor(cmboClass);
    classcol.setCellEditor(new DefaultCellEditor(cmboClass));
    cmboClassEditor.addCellEditorListener(new NewRowCellEditorListener(tblSTCG));
    try {
    // Get listing of Squad Group
    Whichquerytoread = 3;
    GetSql();
    sql = textfileinfo;
    stmt = connection.createStatement();
    rs = stmt.executeQuery(sql);
    md = rs.getMetaData();
    grouplist = new ArrayList();
    // Loop Through Results
    grouplist.add(new PairedDescriptionCodeDesc("",""));
    while (rs.next())
    int i = 0;
    grouplist.add( new PairedDescriptionCodeDesc(rs.getString(2), rs.getString(1)));
    s1 = new TreeSet(grouplist);
    grouplist = new ArrayList(s1);
    AllGroupList = new PairedDescriptionCodeDesc[grouplist.size()];
    for (int i = 0; i<grouplist.size(); i++)
    AllGroupList[i]=(PairedDescriptionCodeDesc)grouplist.get(i);
    rs.close();
    catch (SQLException ex) {
    ex.printStackTrace();
    Vector groupdata = new Vector();
    for (int i=0;i<grouplist.size();i++)
    groupdata.addElement((PairedDescriptionCodeDesc)grouplist.get(i));
    cmboGroup = new JComboBox();
    cmboGroup.setModel(new DefaultComboBoxModel(groupdata));
    cmboGroup = new JComboBox(AllGroupList);
    groupcol = tblSTCG.getColumnModel().getColumn(3);
    DefaultCellEditor cmboEditor = new DefaultCellEditor(cmboGroup);
    cmboEditor.addCellEditorListener(new NewRowCellEditorListener(tblSTCG));
    groupcol.setCellEditor(cmboEditor);
    tblSTCG.setShowHorizontalLines(false);
    tblSTCG.setShowVerticalLines(false);
    TableColumnModel columnModel = tblSTCG.getColumnModel();
    TableColumn column;
    tblSTCG.getColumnModel().getColumn(0).setPreferredWidth(5);
    tblSTCG.getColumnModel().getColumn(1).setPreferredWidth(100);
    tblSTCG.getColumnModel().getColumn(2).setPreferredWidth(100);
    tblSTCG.getColumnModel().getColumn(3).setPreferredWidth(100);
    scpSTCG.setViewportView(tblSTCG);
    private class NewRowCellEditorListener implements CellEditorListener
    JTable editingTable;
    public NewRowCellEditorListener(JTable table)
    editingTable = table;
    public void editingStopped(ChangeEvent e)
    if(editingTable.getRowCount() == editingTable.getSelectedRow() + 1)
    ((DefaultTableModel)editingTable.getModel()).addRow(new Object [] {null, null, null, null});
    public void editingCanceled(ChangeEvent e)

    Final Cut Pro menu > Audio / Video Settings... (Cmd Opt Q) will show you al the various presets currently loaded
    Sequence menu > Settings... (Cmd Zero) will show you the current sequence's settings
    Edit > Item Properties > Format... (Cmd 9) will show you the selected clip's properties

  • Can you use the iMessage for FaceTime on your mac?

    I was wondering if you could use the imessage on the mac computer but it seems like you cant please help me i have been doing some reserch on the apple prouducs and if u have any questions askk me. thanks bye
    <Edited By Host>

    http://www.apple.com/macosx/mountain-lion/messages-beta/

  • BlackBerry Leather Holster for 9720? Or can I use the one for Q10

    Hey Guys,
    I am looking for a BlackBerry Leather Holster for my 9720 but I dont find any. What you guys are using?
    Do you know if the BlackBerry Leather Holster for Q10 work ok with the 9720 or any other BlackBerry Leather Holster that I can use? I really want a BB Holster with a swivel belt clipand the magnetic close thing
    Here in my country nobody sell these BlackBerry Holters so I cant make the comparision.
    THX,
    Isaac

    I would be very careful when using a holster that's not designed for your specific model of phone. Each BlackBerry holster has the magnet at exactly the right location for that model of phone. Using another phone with it might cause the phone to act up.
    If you do an online search for a holster for your exact model, you should be able to find a seller that will ship one to you. That way you won't run into any problems with your phone not going to sleep when it's in the holster.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Can i use the TC for Audio and video storage? How?

    I have a Time capsule and i want to use it to storage audio and video, and use it with my Home theater system. I am not sure how can i play it? Ipad? OS?
    Somebody has experience with this?

    Why are you asking in the iphone forum?
    The ipad forum would be a better place to ask.

  • How can I use the CPS for Oracle ECM with webcenter

    Hi I did install webcenter "webcenter_windows_x86_101320_disk1" but im not able to use CPS(content portlet suite) anybody used them together before .

    Hey Khalid,
    I think you might be in the wrong forum. This one is for WebCenter Interaction - the old BEA ALUI/Plumtree product, not the original Oracle WebCenter Portal.
    Terrible terrible terrible job in picking such similar names for these 2 different products!

  • HT1222 my Ipad touch screen is not responding so i can not use the ipad for anything.

    i left my ipad in my car after ten minutes return to use ipad but could not log on because the touch screen is not responding. i try updating but to no avail
    pls somebody should tell me what to do before i lose my mind because its really frustrating

    Did you try rebooting?
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • I can not use the arrows for previous and foward at the top of the browser bar.

    At the top of the screen there are two arrows, left and right, to click on to move back and forth from current screen to the previous screen such as a list of websites. The arrows are visible but not highlighted to be used.

    I was having a similar problem but only when answering calls. A reset seems to have fixed it. http://support.apple.com/kb/HT1430
    If that doesn't do it you may need to contact Apple Care or take it in for repair.

Maybe you are looking for

  • Can I move photos from the Camera Roll to a new Albumn (not to add)?

    I added some photos from Camera Roll to a new albumn and now I have two copies in two albumn. I tried to delete those photos from Camera Roll and the photos in the new albumn are also deleted. Can I move them instead of adding them to the new albumn?

  • Is my mac pro and visio 42' tv compatible?

    I am trying to use my 42"Visio LCD as a monitor on my mac pro and I am having no success.  Are they compatible?  If they are any help would be appreciated on making it work.  They are connected with a DVI-d to HDMI cable.

  • Cant Send Calendar Invites

    Cant Send Calendar invites ... the Button is grayed out any suggestions.

  • Problem after change item status procedure in sales orders.

    Hello experts, I have changed item status procedure for sales orders. But now all BDoc with queue name CSA_ORDER_xxxxx remain in state 'Written to qRFC Queue (intermediate state)' and needs to be reprocessed manually. No problem reprocessing. Have so

  • Iphoto 09 default library

    Sorry if this has been posted elsewhere.... Does anyone know if there is a way of setting up iphoto 09 for a macbook pro with mac os x 10.6.3 so that it can point to all the photos and folders stored in the mac hd/user/pictures folder. I am strugglin