I got following problems:
I created a WML-deck. In one of the cards I call a wml script for furhter actions.
This works properly with various WAP emulators but not on a real internet server.
The WML-deck works fine on the internet server but if the wml script is called errors
occur. The errors are like "can't execute this file". If the wml script is not available
I get the error message "file not found".
I assume in the server configuration is something missing. Has anybody an idea about this?
extern function reverse()
{
var wert = WMLBrowser.getVar("nachname"
var neu = " ", laenge=0, i;
laenge=String.length(wert);
laenge=laenge - 1;
for (i=laenge; i>=0; i--)
{
neu = neu + String.charAt(wert,i);
}
var x = WMLBrowser.setVar("umkehr",neu);
WMLBrowser.go("reverse.wml#zwei"
}