8
I am creating a WEB application for mobile device that will be downloaded in one of the stores, with a mini WEB server integrated and that works on any operating system(iOS, android, Windows8, etc).
In order for the application to be as independent as possible from the operating system I just wanted to use HTML5
and JavaScript
.
The app allows a user to make a series of requests by just clicking buttons. Example: [See contacts]
I need that when clicking [View contacts] send a sms
automatically to another mobile device with an application android
who receives the request, handles and sends the reply via sms. The reply also has to be read by my WEB application. This for the application to work without mobile/Wifi network.
I’ve been searching and only find ways to open the text messaging app on my mobile device.
Is there any way to make this upload automatically?
And if it doesn’t exist, can it be done otherwise? Like use/create a plugin to use Javascript to do this for me?
[EDIT] Vi this yesterday and I’ve been researching on the subject, but it seems that the work was discontinued, unfortunately. I don’t even know if it would be a possibility.
You will need a server-side language, C#, Java, PHP, and more. Since HTML5 and java script is only a front-end language.
– noNihongo
There is no chance to do this with HTML5 and javascript only?
– Jorge B.
there is even the possibility of html+javascript doing this, but when there is something on the server for this, ex: there are components where javascript could read and post, but of course.. usually this back-end is developed by the same person from the front end..
– Dorathoto
I added the Android tag I believe the community of Android programmers can help.
– Dorathoto
You have even considered the possibility of using an SMS sending web service like the Zeep Mobile (has free version with the inclusion of advertising) or the Zenvia?
– Luiz Vieira
I can not, it has to be sent by the mobile device itself, is one of the requirements to be able to work offline.
– Jorge B.