Receiving SMS and MMS in the same application.

Hello.
Is it possible to have a midlet that can start two server-mode MessageConnections, one for SMS and other for MMS, and receive messages on both? It seems that only the MessageConnection created first (be it SMS or MMS) will actually receive messages, at least in the WTK.
With two SMS MessageConnections there is no problem. In the WMA specification I cannot find any restrictions in MessageConnection related to the type of message (SMS / MMS).
Thanks for any help, and sorry if this issue has already been discussed, but I haven't found any explanation of this.

I am not from Oracle but I cannot see anything in your use case that would violate the license agreement. The usage of XE is free for any purpose and you are allowed to use database links, export / import and even create materialized views from another oracle database directly.
Regards,
~Dietmar.

Similar Messages

  • Using EE and XE in the same application?

    After reading the license, it doesn't appear that there is any stipulation against using XE databases alongside an EE database within the same application.
    I have a business app which runs with a centralized database, but clients in many geographically dispersed locations. The idea has been bumped around lately of trying to cache data locally to speed things up. The approach is not so much replication, but of acquiring modification priveleges from the central database, making a copy of the relevant data to a local one, and working with it there for a time. Modifications are then copied back into the central database. This scheme would be aimed at improving response times, and also helping increase the scalability of the overall application. (And yes, our applicaiton adheres strongly to the principle of locality.)
    Thus far, we acquired licenses to BerkeleyDB in order to implement these local data repositories. Oracle XE seems like a more effective route because it presents the immediate benefit that the application would not need to have it's OCI code changed..
    Given that XE supports replication as a client, I hope that this sort of thing has already crossed the minds of Oracle and that it is an acceptable use of XE?

    I am not from Oracle but I cannot see anything in your use case that would violate the license agreement. The usage of XE is free for any purpose and you are allowed to use database links, export / import and even create materialized views from another oracle database directly.
    Regards,
    ~Dietmar.

  • Sell apps in Apple and Android uses the same application ID?

    Hi,
    I want to sell folios in Apple and the same folio is free - still - to Android tablets. Then I need produce these app with different application ID, right?
    So these folios will show alike buy in Android tablets, because I publish as retail and public.
    I believe to more control and freedom to handle these folios to apple and to android the better scenario is produce each app with own application ID.
    Anyone has other workflow?
    Regards

    Yes, I would create a different app with a different application ID for Android.

  • How to import sms and mms data from 6600 to N73

    Hi to all, I'm trying to import all my old data on my nokia 6600, to my new N73 ME, fw rel V 3.0368.0.0.30, because I don't like the idea to lose all my sms and mms from the old phone. I encountered a lot of problems. First thing, the transfer apps only leaves to import via bluetooth and so on data like contacts and multimedia. So I tried to copy from dir mail of the mmc of Nokia 6600 to the dir mail2 under hidden folder Private on the mini sd of my new N73. What happens? In the first moment it seems all ok, because when I switch under sms to memory cards, the N73 read all the sms like they were on phone. But first of all, it doesn't see the mms, it see only the title, but when I open them it gives me error. This doesn't happens with sms, that are all ok. The problem is that when I turn off the phone, it doesn't turn on anymore, it hangs until I've to remove the mini SD. After many tries, I've understood that maybe the problem is with the file index in mail2 folder. Someone has any idea or have tried to import sms and mms from his old Nokia phone to the new N73 and so could help me? Thanks.

    have u actually tried to connect the 6600 with the latest PC suite to see what happens?
    if that fails, maybe have a look at the Oxygen Phone Manager software and see if they offer a free trial. i know i used to use OPM before nokia updated there PC suite to work with my 3230Message Edited by rich_enduro on 02-Jan-2007
    06:30 PM
    Nexu 5

  • Can Bootcamp and Parallels share the same Windows applications and data?

    I'm looking at getting an Intel iMac which will let me throw away my old PC - Yeah!
    I will have a couple of Win apps that I will need to hang on to (Quicken - Quicken for Mac is horrible, but that's another tghread). Anyway, can Bootcamp and Parallels share the same Windows applications and data?
    My thought would be to allow my wife to access Quicken from Parallels and not have to reboot. She will only need lightweight access and the overhead of running virtualization wouldn't impact her. I, on the other hand, would want to occasionally boot natively into Windows and run the same application with the same datafile. Is this possible?
    Thanks and looking forward to joining the MacIntel world!

    Thanks for all of the freplies. I suspected that BootCamp and Parallels could not shar ethe same partition, but wanted to verify. To address some of the other posts:
    Re: Quicken vs MoneyDance - I looked at MoneyDance a while back and while it is comparable to Quicken for Mac, it isn't comparable to Quicken for Windows (ergo, Quicken for Mac isn't comparable to Quicken for Windows!). But, as I said, that is a topic for another thread!
    Re: Using Bootcamp/Parallels for only one app: I actually have several apps that I still need access to on Windows. I work with many business applications than only run/are supported on Windows as well as receive some complex Office documents which Office for Mac cannot handle. Quicken (for Windows 2007) was just the best example of a consumer app where I could see wanting access from both OS X and Windows.

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • My iTunes will not start.  The box on the error message APSDaemon.exe,  And message says "This application failed to start because MSVC80.dll was not found.  Reinstalling may fix."  I did the reinstall and I get the same error.

    My iTunes will not start.  The box on the error message APSDaemon.exe,  And message says "This application failed to start because MSVC80.dll was not found.  Reinstalling may fix."  I did the reinstall and I get the same error.  The error first happened after I approved the an iTurns update.

    Same problem today. Took five times to reinstall without any error messages. Apple has posted a way to fix and you should follow their's first. I finally got to upldate correctly by doing their fix but with one difference. I did the following:
    1) Went to the C:\program files (x86)\iTunes and C:\program files\iTunes folders and moved every file ending in .dll to the desktop (even if two files in same location had the same name, just replace)
    2) Restarted computer and still got error message
    3) Uninstalled all apple programs possible in the following order......itunes, apples software update, apple mobile device support, bonjour, and apple application support.....all performed using the microsoft control panel
    4) put all the .dll files on the desktop in the trash and emptied (this is a step apple support did not specifically put in their fix but for a final try I wanted to delete everything apple).
    5) Restarted computer.
    6) Re-installed itunes from apple website
    No error messages during re-install and was able to open shortcut in one try. Even updated my ipad to make sure everything was working.

  • Can I use a camera for application in Labview and VBAI at the same time ?

    Dear all,
    I'm trying to save an AVI file with Labview and make an image process with VBAI at the same time, in one machine.
    The error : "Camera already in use" displayed.
    My Camera is a GIGE and I work with Imaqdx. I've test the multicast mode but it only operate with several machines.
    How can I do this ?
    Thank's to help me,
    Yoann B

    I'm not necessarily saying that.  It's been a while since I've used VBAI, so I don't remember all of the capabilities, but if VBAI can do the inspection and recording at the same time, you should be fine.
    The trick is that only one program can access the camera at the same time.  That application reserves the camera, thus making it unavailable to others.
    Chris
    Certified LabVIEW Architect
    Certified TestStand Architect

  • My wife and I share the same email address and Apple ID.  We are not able to send and receive Text Messages to one another.

    My wife and I share the same email address and Apple ID. We are not able to send and receive Text Messages to one another. Is the cause of this because we share the same Apple ID? Will we have to set up 2 separate primary email addresses to be able to  send and receive Tex Messages to one another? Like I said, we share the same email address and woul like to keep it that way to keep up with our email together. Is there a way to by-pass having to set up 2 primary emaill addresses if this is the problem?
    Thanks.

    go to the settings and turn off imessage
    but that don't change the issue that you will never be able to facetime eachtoher
    the appleID is really meant as the handle that identify you it was not meant to be shared
    but can see that people may want to do not buy apps more then once

  • My husband and I shared the same apple id I accidentally deleted his number from the iCloud And now his phone won't receive phone calls or text what do I do

    My husband and I shared the same apple id I accidentally deleted his number from the iCloud And now his phone won't receive phone calls or text what do I do

    In preferences turn on iTunes sharing in iTunes preferences and keep iTunes turned on in both accounts. Or better yet put the iTunes library on the main HD rather than in an account and set the location of the library to that location in iTunes preferences.

  • I have two iPhones and synchronize with the same macbook. How I do segregate both applications and data?

    I have two iPhones and synchronize with the same macbook.  How do I segregate both applications and all the data?

    Hi Jamesdwills,
    Welcome to the Support Communities!
    If you are using the same Apple ID on both devices, the Game Center profile should be the same.
    Check out this information from the iPad User Guide.  Try signing out of the Game Center on both devices and then sign back in with the correct Apple ID:
    Using Game Center
    http://support.apple.com/kb/ht4314
    Game Center settings - iPad User Guide
    http://help.apple.com/ipad/7/#/iPad9a13d039
    Game Center settings
    Go to Settings > Game Center, where you can:
    Sign out (tap your Apple ID)
    Allow invites
    Let nearby players find you
    Edit your Game Center profile (tap your nickname)
    Get friend recommendations from Contacts or Facebook
    Specify which notifications you want for Game Center. Go to Settings > Notifications > Game Center. If Game Center doesn’t appear, turn on Notifications.
    Change restrictions for Game Center. Go to Settings > General > Restrictions.
    Cheers,
    - Judy

  • I bought an application 10 months ago. When I did an update on my ipad, I needed to re-download, and Apple charged again for the same Applicative.

    I bought an application 10 months ago. When I did an update on my ipad, I needed to re-download, and Apple charged again for the same Applicative.

    Did you follow the directions:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Application and Database on the same server

    I have a Java Application and a db2 database(SWDTEST) that reside on the same server. In the Application I want to connect to the database. What would I use to do this? When the application resides on a client machine I use the "sun.jdbc.odbc.JdbcOdbcDriver" driver and can get a connection. Code looks like:
    try{
    //load the driver class
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    //Define the data source for the driver               
    String wdURL = "jdbc:odbc:SWDTEST";
    String username = "UNTEST";
    String password = "PTEST";
    wdConnection = DriverManager.getConnection(wdURL, username, password);
    wdStatement = wdConnection.createStatement();
    catch(SQLException e)
    System.out.println( e.toString() );
    But when I move the same application to the server and run it I get the following error message:
    java.sql.SQLException: [IBM][CLI Driver] SQL1013N The database alias name or database name "SWDTEST" could not be found. SQLSTATE=42705
    Do I need to set something on the server so that SWDTEST is a recognized database name or connect to it some other way?
    Thanks in advance.

    Does the server have ODBC installed on it? (Windows boxes will, unix will likely not.)
    Do you have a ODBC driver installed on the the server. This has nothing to do with java.
    Have you created a DSN on the server?

  • When I try to eject my ipod after sync I get the following message:"The iPod cannot be restored because it contains files that are in use by another application.". I tried to restore but it doesn't work and I get the same message

    When I try to eject my ipod after sync I get the following message:The iPod cannot be restored because it contains files that are in use by another application.". I tried to restore but it doesn't work and I get the same message

    Go to your computer's System Tray and try ejecting.  If you can't eject, there is an application that is trying to access your iPod.
    Go to http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx and download ProcessExplorer.
    Go to http://support.microsoft.com/kb/555665 and follow the instructions under Resolution.
    Note that this is a good, general process any time you can't access any file.
    In my case an update to RealPlayer installed a program called RecordingManager that was accessing my iPod.

  • Portal and application on the same Application server.

    Guys,
    Is it a good Idea to deploy general applications(which needs to be accessed via portal) on the same application server/web server on which the portal runs??
    Please give me pros and cons.
    Thanks,
    Deepak.

    generally not a good idea, especially if your applications are heavy-duty.
    remember that if u deploy on the same application server instance, portal + applications are utilizing the same amount of RAM, which will subsequently cause scalability problem.

Maybe you are looking for