Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Peter Dawn
ok, i am going to try that and see how i go.i dont fancy my chances though, as i am trying to get something simple to work and all these examples are way beyond simple. will see how we go though. - To unsubscribe, e-mail: [EMAIL

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Ryan Holmes
Have you checked out DWR (http://getahead.ltd.uk/dwr/)? It might be a good fit for what you're trying to do and it's framework agnostic, so it will work fine with Tapestry 3. It's also pretty darn easy to use. -Ryan Peter Dawn wrote: just tried to implement it now. the country list example r

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Jesse Kuhnert
I don't think normal javascript permissions allow you to access the file system on someone's web browser. (There are ways to get past this but it's not standard I think ) You might be better served by going to http://ajaxian.com/ or any number of ajax-related web sites to learn how it works first

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Peter Dawn
just tried to implement it now. the country list example runs fine. but am not sure how should i go about with something simple like a hello world or just displaying the contents of a dummy file. it might sound a very simple thing, i guess i am trying to get the basics. --

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Danny Mandel
Hi Peter, take a look at XTile for Tapestry 3.x here: http://www.t-deli.com/ For simple stuff, it's quite easy to use and very lightweight. Hth, Danny Peter Dawn wrote: i am using tapestry 3.0.3 and i want to use something very light, without the advanced features. is there some coding exampl

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Peter Dawn
i am using tapestry 3.0.3 and i want to use something very light, without the advanced features. is there some coding example (hello world would also do) which just shows how to retreive info from the tapestry page and display it within the html page. -

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Jesse Kuhnert
There are a number of js logging libraries available. The core library that tapestry uses (4.1 onward at least) is dojo via dojo.debug or dojo.log. . You might want to go look at http://tacos.sourceforge.net, they have plenty of examples as well as a completely functional demo app to show you how