Je voudrais une application J2ME utilisant le reseau pour pouvoir envoyer des requete http a un serveur que j'ai deja créé.
Le serveur fonctionne sans problème, je l'ai testé avec un formulaire HTML.
Quand je veus envoyer des requetes POST avec mon telephone, j'obtient ceci dans la sortir de l'application :
Warning: To avoid potential deadlock, operations that may block, such as
networking, should be performed in a different thread than the
commandAction() handler.
java.lang.SecurityException: Application not authorized to access the restricted API
J'ai cherché sur internet et j'ai trouvé qu'il fallait réécrire le .jad et mettre les permissions, je l'ai fais mais rien ne change...
Voici ma fonction commandAction() :
public void commandAction(Command c, Displayable s)
{
try {
if (c == _commandExit)
{
destroyApp(false);
notifyDestroyed();
}
if (c == _commandExit2)
{
destroyApp(false);
notifyDestroyed();
}
if (c == _commandEnvoyer)
{
display.setCurrent(textbox);
textbox.setCommandListener(this);
}