Hi i am developing windows mobile application for dopod 818 pro to send / receive sms.
is it possible to access sms functionality via j2me?
You can not read SMS from Inbox directly. For reading SMS from Inbox you need APIBridge.jar. APIBridge is an extensible mechanism to access device features in WRT, Flash Lite, and Java applications.
You can use APIBridge in two ways. APIBridge can be used as it is shipped, to access features of Symbian using the plug-ins provided. However, because APIBridge is based on a plug-in architecture, you can also use it to offer new features by creating plug-ins that access functions of Symbian or your own native Symbian applications.
Please note that APIBridge.jar works for Symbian OS Based Phone Only. Not for S40 Device.
Related
I want to make an application to get my notifications from an iphone through psoc 4 ble. I'm subscribing to ANCS service, i get the notifications, and after i want that data to send to windows to a java or c# application. What I don't know how to do or if it's possible: how do I make the connection between psoc and windows to send the data.
It calls Serial Communication (UART). You will have two pins Tx and Rx and using them you can easily communicate with windows using terminal applications such as PUTTY
Does your computer have bluetooth on it directly? If so you can use the microsoft API to call it here: https://msdn.microsoft.com/en-us/library/aa916530.aspx
else if your computer does not have bleutooth, you have to use the CySmart dongle and use the C# API cypress provides here: CySmart
There's a way from Codename One to provide access to Near Field Communication (NFC) ?
Anything new, out this post codename-one-nfc-beacon?
NFC is an Android only API and even there the availability in devices is "problematic". In iOS it's restricted to payment so there is no access to the underlying hardware. So there is no point in supporting the API in a framework that is designed for cross platform. I'm sure you can create a cn1lib similar to the fingerprint reader API or the SMS intercept API.
I developed a IVR and sms system using twilio.com. I have used it's api to develop the system. But now I want to have my own setup which does the same features. I did some home work and read things about VOIP and SIP. All those talks about internet calls. But this is something that I need to call a cell phone or land line and expect calls from those phones. Is this possible without using any hardware and also not relying on services like Twilio.
You can setup Asterisk or Freeswitch project in AWS or Digital Ocean. Asterisk/Freeswitch offer IVR services, take a look at this guide and setup via Twilio documentation:
https://www.twilio.com/docs/api/sip-trunking/sample-configuration#freeswitch
For PSTN integration, you can use Twilio or any other SIP trunk provider.
This will be the flow:
Cellphone > PSTN > Twilio/SIP Trunk > PBX -> IVR
You can have your own setup by having FreeSWITCH or Asterisk. these are the soft switch. you can generate your own logic for ivr. You can control the switch as per your guidance.
I suggest you to go with FreeSWITCH.
Is there any way to reproduce on Windows Phone 8 such thing like Android Application Record?
Android Application Record - NDEF record which tells phone to search for application from this record and if it is installed to launch it for processing NFC message, if such program is not installed on device then Play Store app is launched with search for this app [by package].
Launching arbitrary apps from an NFC tag isn't supported on WP8. Apps must opt-in to app2app custom protocols in-order to be launched from an NFC tag.
Any app that subscribes to an app2app custom protocol can be launched from that URI via an NFC tag with that URI custom protocol. There's nothing required to NFC-enable apps once they support custom protocols.
See instructions on how to implement app2app custom protocols # http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206987(v=vs.105).aspx
Windows phone7 does not support phase 2 communication using USSD. Is there a way to intercept an outgoing USSD request on a Windows Phone 7 device in order to route to an application to handle the request instead?
The APIs for such low level operations --- even more so when they are related to the cellular interface --- are not available.
If we take into account that more innocent things are not allowed in WP7, I think that the USSD interception has little chance of being available in the future...
Only Microsoft Partners or OEMs have access to native API which is basically something much like Windows CE/Windows Mobile. There are functions that can receive USSD but none that can prevent default handling of the messages (namely: displaying popup with the message).