Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to develop an application for my company which will allow logging into our Microsoft Exchange server and access mails.
I need some pointers on how to authenticate with the exchange server and download mails. I have a decent knowledge of Android. It would be really great if somebody could show me the right direction.
I would start by finding a Java library which supports one of the protocols that Exchange supports, e.g. ActiveSync or IMAP.
For starters, look into the JavaMail library:
http://www.oracle.com/technetwork/java/javamail/index.html
There's also a commercial ActiveSync library that you may be able to use:
http://www.independentsoft.de
Finally, you may be able to use Microsoft's Exchange Web Services API:
http://archive.msdn.microsoft.com/ewsjavaapi
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create a server that can be between among a few thousand people and can play there 1v1. like quiz up app
I've read Android documents but it does not seem to explain it.
Building Apps with Connectivity & the Cloud
I'm so confused about the servers and all kind of this
need Help!
i will mark this correct for those who can answer thanks
John
For creating server you have to use any backend language like PHP will be very comfortable for beginners.
You can refer php MySQL connection with Android using volley or any Http connection in Android.
You can refer to www.androidhive.com and search for above for better understanding.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to establish communication between set top box and an android phone.
Is it better to use sockets or communicate via an embedded web server ?
1) An embedded web server can operate with any device having a browser, android devices included, with nice graphics/user interface. But it is heavier than solution 2.
2) Sockets is a lighter solution than a web server, but require an app (android) or a program (non-android) that know what to do and implement a user interface.
If the embedded web server is viable, probably is the easier solution.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
In Xamarin forms I want to sent email directly from app without opening email client. I want user to type in text and just send it with predefined subject to predefined email address. I need implementation for IOS and Android. Is it possible to do within share project in Xamarin forms?
I think you should ask yourself if that really is the best approach, I think it would be better to have some call to your back-end and have that send it for you.
But I'm not the one to judge your requirements, so if I'm just looking for a solution why not setup a SendGrid account (free up til a whole bunch of mails in Azure) and use the SendGrid API (easily accessible through a NuGet package) to send your mail. There are probably some more alternatives like this out there.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to send data from a Linux client to a Linux/Windows server (maybe a shared host) and finally to an android application like this figure :
The data can be a text or stream video or audio.
What are the best technologies and languages for this scenario ? What is your suggestion ?
You can set up communication between same platform or cross platform clients/server. If you're sticking to *nix platform, you can try out with unix sockets. Since cross platform being a better option, you can implement the same thing using node.js and sockets. For better insight upon socket.io,please go through http://socket.io/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to develop a mobile application (android OS), and I want to know how could I use a WIFI connection to connect 2 or more mobiles ..?, which protocols, which API's..?
Any help please..
In order to communicate, they first have to discover each other in the network. Link will help you do discover.
If you already know the IP addresses of each other, then the problem is much simpler. RPC call or HTTP call or use Sockets. There is this server which can take http calls on the android application. So, both the applications can have servers hosted.
I've just looked up this link.