I guess you can create a page, inject the request and extract your parameters if that is what you are asking...
However, your post leave me with the impression that you are missing the whole point of using a modern web framework? It looks like you are asking how to imitate a servlet - one of the very things that the framework is trying to make sure that you don't have to deal with. -- Chris On Mon, Oct 3, 2011 at 1:04 PM, dvelopp <[email protected]> wrote: > Hello! > I want to use Tapestry with ussual html components: > After click on /<input type="button"/ id="tb"> / js(jQuery) do this: > jQuery.noConflict(); > jQuery(document).ready(function() { > > jQuery("#tb").click(function(){ > jQuery.post("Login.java", "type=post", function(data){ > alert(data); > },"text"); > }); > > }); > And Login.java have method service() where this data will use. > Its possible to do with Tapestry? > > Thank you! > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Tapestry-and-ussual-html-components-tp4864468p4864468.html > Sent from the Tapestry - Dev mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
