RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread Tracy Spratt
: Monday, October 17, 2005 5:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ASP Shopping Cart Example My preferred solution is to use HTTPService, pass parameters in the POST, and call an aspx page. The aspx page does all the server work, using VB.NET (I am considering switching t

RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread James
17, 2005 5:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ASP Shopping Cart Example My preferred solution is to use HTTPService, pass parameters in the POST, and call an aspx page. The aspx page does all the server work, using VB.NET (I am considering switching to c#). The aspx pag

RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread Tracy Spratt
age- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson Sent: Monday, October 17, 2005 4:51 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ASP Shopping Cart Example Thanks Tracy. Do you have any .Net examples of middle-tiers communicating with Flex B

RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread Robert Thompson
groups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of Robert Thompson > Sent: Sunday, October 16, 2005 2:51 AM > To: flexcoders@yahoogroups.com > Subject: RE: [flexcoders] ASP Shopping Cart Example > > Thanks Abdul. So the ... returned by > the login.asp page, how is that

RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread Tracy Spratt
: [flexcoders] ASP Shopping Cart Example Thanks Abdul. So the ... returned by the login.asp page, how is that then interpreted by MXML? I guess maybe I'm missing something as I was reading some docs about Zorn/FlexBuilder 2, and I was under the impression that ColdFusion, JSP, ASP, etc. ar

RE: [flexcoders] ASP Shopping Cart Example

2005-10-17 Thread Tracy Spratt
rvice (and maybe XMLSockets). Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson Sent: Sunday, October 16, 2005 2:51 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ASP Shopping Cart Example Thanks Abdul. S

Re: [flexcoders] ASP Shopping Cart Example

2005-10-16 Thread Robert Thompson
Yes, thanks Torben. I would love to see those examples; it's the best way for me to learn. Very much appreciated. --- Torben Nielsen <[EMAIL PROTECTED]> wrote: > Hi Robert, > > You should create a .NET web service to comunicate > ith your Flex application. > The approach should be like this: >

RE: [flexcoders] ASP Shopping Cart Example

2005-10-16 Thread Robert Thompson
n > ASP code, but for > example I think this is sufficient. There are other > ways of using > HTTPService, where in you can pass parameter object > in > HTTPService.send(..) instead of static binding. > > Hope that helps... > > -abdul > -Original Message- &

Re: [flexcoders] ASP Shopping Cart Example

2005-10-16 Thread Torben Nielsen
Hi Robert, You should create a .NET web service to comunicate ith your Flex application. The approach should be like this: 1. Create custom objects in .NET to hold your data. 2. Use the ArrayList to create an array of objects that you send to your Flex application I can send you some code examp

RE: [flexcoders] ASP Shopping Cart Example

2005-10-15 Thread Abdul Qabiz
that helps... -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Thompson Sent: Saturday, October 15, 2005 8:32 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ASP Shopping Cart Example Thanks Manish, but what do you mean by &q

Re: [flexcoders] ASP Shopping Cart Example

2005-10-15 Thread Robert Thompson
Thanks Manish, but what do you mean by "HTTP Service" -- is that an example somewhere? Or is there something I can do with the HTTP protocol to use ASP as the business tier / Flex as the Presentation Tier, instead of Cold Fusion as the business tier? -r --- Manish Jethani <[EMAIL PROTECTED]> wro

Re: [flexcoders] ASP Shopping Cart Example

2005-10-15 Thread Manish Jethani
On 10/15/05, Robert Thompson <[EMAIL PROTECTED]> wrote: > I have a project coming up that has a requirement to > use ASP instead of ColdFusion (yeah, i know :) and I'm > looking for any examples of using MXML and ASP as the > business tier which uses SQL Server 2005. You should look into HTTPServ