-
the plugin takes the java options from the run configurations but it does not take the classpath defined for this configuration.
2007-10-29 14:37:29 UTC in Eclipse Shell Script Export Plugin
-
I don't think i quite follow your issue. In my app with AA the url (in location bar) is static and does not change.
The requests get extra "aaxmlrequest=true&aa_rand= + Math.random()" string and it appears only once in the 'url'.
2007-05-08 09:14:59 UTC in AjaxAnywhere
-
Safari and Konqueror have different implementation of location.href. It returns full string of url on the other hand Firefox and IE returns url only untill last '/'
In my case i had to remove all characters following '?' ('?' also) so i implemented string split.
2007-05-08 08:53:13 UTC in AjaxAnywhere
-
On my page, depanding on state, i have 3 to 8 forms. All of them have names and onchange parameter where i write:
ajaxAnywhere.formName='chooseBodyLengthForm';ajaxAnywhere.submitAJAX();
Each form has <input type="hidden" value="body,jscript" name="aazones"/>
I use Firebug to see what is going on and in the net monitor totally randomly:
1. some request have...
2007-04-27 10:52:57 UTC in AjaxAnywhere
-
In my spring application after timout session expires. AA request gets 302 status code and riderects to login page. However the error page comes back insei AA response.
I assume it needs some changes in callbacck() but till now im not albe to find proper place.
Any ideas?.
2007-04-17 11:24:00 UTC in AjaxAnywhere
-
the reason is errorpage. Controller on exception redirects to error page. AA makes ajax redirect from it. I added proper zones to error page and no wi have the messsage i wanted.
2007-04-12 11:30:38 UTC in AjaxAnywhere
-
when i make request which produce error i getr empty zones not exception alert. Im trying to find where is the problem with it without succes.
2007-04-12 10:09:47 UTC in AjaxAnywhere
-
Please correct me if I'm wrong.
At the end of a method i have
return new ModelAndView( new RedirectView( ControllerUtils.getProperties( request ).get( "appPath" )
+ "/lampconfigurator/?action=startNewConfiguration" ) );
And this seems not to work with AA and I get the content back with standart request not AA one.
2007-03-28 12:23:41 UTC in AjaxAnywhere
-
Finnaly i resolved my problem. I had to change the aa.js code in order to make my app working.
My site (product configuration application) uses url rewriting to go to next steps of the config.
There are forms with get (u can see the code in previous posts http://sourceforge.net/forum/forum.php?thread_id=1694200&forum_id=492644)
but submitAJAX uses post. The values are send and kept in...
2007-03-19 13:20:12 UTC in AjaxAnywhere
-
I submited a bug. I think thats why my app does not work.
http://sourceforge.net/tracker/index.php?func=detail&aid=1683507&group_id=147322&atid=768037.
2007-03-19 11:11:43 UTC in AjaxAnywhere