Hello Everyone here.
I have some problems in flex development.
I am working on simple chatting application,
currently Its on very first phase.
The problem with my simple application is, application successfully gets connected to openfire server (I am using XIFF library).
And also receives message from server (when other user sends message using spark app)
but my app can not send message to the server/opposite user.
It shows "remote-server-not-found" error.
But same app works on local computer, when I use openfire installed in local machine(127.0.0.1).
What can be the reason? because if it can not find server, then how is it connecting and receiving message? (It has problem only in sending message)
so what is the reason? and what is solution for it?
=========my this event handler alerts commented lines========
private function onXiffError(event:XIFFErrorEvent):void
{
Alert.show("onXiffError. " + event.toString());
/*
onXiffError. [XIFFErrorEvent type="error" bubbles=false cancelable=false eventPhase=2]
*/
Alert.show("onXiffError.errorMessage: " + event.errorMessage);
/*
onXiffError.errorMessage: remote-server-not-found
*/
}
==================================================
please guide me.
Thanks in advance.