[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread David Pollak
On Tue, May 5, 2009 at 10:41 AM, glenn wrote: > > Tim, > > Ahh... > > I see what you mean. Just bypass lift altogether. I don't think you're "bypassing Lift." Lift is generating the XHTML page. The fact that parts of the page are static content means that this part of the page is just passed

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread Timothy Perrett
Hey Glenn, Don't worry about being a novice - we've all been there! What kind of external data did you want to get? If it's service based e.g salesforce then you can do that with scala inside a lift app. Describe what you want to do and we'll advise on the best course of action :-) Cheers

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread glenn
Tim, Ahh... I see what you mean. Just bypass lift altogether. Now you see why I'm just a novice lifter. I suppose the same applies to retrieving data from external sources (other than a db connection)? Thanks. Glenn... On May 5, 10:13 am, David Pollak wrote: > On Tue, May 5, 2009 at 9:43 AM,

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread Timothy Perrett
As per David's remarks, no framework, Lift included, can grab something that you post to a 3rd party server... Its just not going to your server to be able to handle it; its going to the 3rd party! Is there a special reason you thought that lift does this? My suggestion about the programmatic POS

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread David Pollak
On Tue, May 5, 2009 at 9:43 AM, glenn wrote: > > Tim, > > I'm not sure what you mean by "programatic POST" or "post to the 3rd > part...", > but it seems a simple, yet necessary use-case to be able to post to > any available > URL and receive a response within the lift framework. If you're goin

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread glenn
Tim, I'm not sure what you mean by "programatic POST" or "post to the 3rd part...", but it seems a simple, yet necessary use-case to be able to post to any available URL and receive a response within the lift framework. Particularly if one is doing mashups, getting and storing data, RSS and Atom

[Lift] Re: How do you submit a "post" request to an external url

2009-05-05 Thread Timothy Perrett
Glenn, If you are posting to an external URL im not sure there is a good case for using bind(...) as that binds served HTML with a server side function to be executed upon form submission. If you want to post directly to another URL that is not managed by lift, there is little point executing som