[flexcoders] Re: Custom Control Components

2005-03-28 Thread billheit
I tried to implement both of these clocks and, when I ran them, both gave errors in createChildren function. It seems that it is referencing a method that is not in scope or does not exist. The error reads "There is no method with the name 'createClassChildAtDepthWithStyles'." Once I comme

[flexcoders] Re: User Credentials Cache

2005-03-22 Thread billheit
; I also need help with this. I need to know how to make flex server > kill the session with the endpoint. This is a pretty major problem > for my application. > > -- Matthew > > --- In flexcoders@yahoogroups.com, "billheit" <[EMAIL PROTECTED]> wrote: >

Re: Web Service Authentication

2005-03-09 Thread billheit
that these credentials are not cached in any way. > > Are you trying to use different credentials from the same page? > > --- In flexcoders@yahoogroups.com, "billheit" <[EMAIL PROTECTED]> wrote: > > > > Yes, I was doing it differently. Before calli

Re: Web Service Authentication

2005-03-08 Thread billheit
rviceDynamic" > fault="serviceFault(event.fault);" > result="serviceLoaded()" > resultFormat="text"> > > > > > > > > > > > > > > > > > > > > > > > > > > Named HTTP Service: > > http://myservicehost/s

Re: Web Service Authentication

2005-03-08 Thread billheit
ght service. > > > > Matt > > > > _ > > From: billheit [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 02, 2005 5:36 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Web Service Authentication > > > > > I have a .NET web ser

Web Service Authentication

2005-03-02 Thread billheit
I have a .NET web service that allows access to various levels of resources (data) depending on what user logs into IIS using Basic authentication. In my Flex application, which is not running on the same server as my web service, I would like to have the user login with a user name and passw

Re: User Credentials Cache

2005-03-01 Thread billheit
flexcoders@yahoogroups.com, "billheit" <[EMAIL PROTECTED]> wrote: > > > I have sessionState turned off on my .NET web service. When I test > my web service directly through IE, it requires me to login each > time I re-open the browser. > > When I access the

Re: User Credentials Cache

2005-02-28 Thread billheit
er. That will force the user to login the next time they open a > browser. > > Jeff > http://www.flexauthority.com > - Original Message - > From: "billheit" <[EMAIL PROTECTED]> > To: > Sent: Friday, February 25, 2005 6:37 PM > Subject: [flexco

User Credentials Cache

2005-02-26 Thread billheit
I have a .NET Web Service running on IIS with Basic authentication. In flex, I have a HttpService configured to request data from my web service. On a button click I call the HttpService.send() and set an event to handle the result. When I run this Flex app on my IE browser, I get a security l

Re: Instantiate an HTTPService object in ActionScrip t

2005-02-22 Thread billheit
oxyURL property. This is something normally done by flex. In my case, the proxy for my guiboApp site assigned as follows: retrieveDefault.proxyURL = "/guiboApp/flashproxy" That's it. It now works as an independant component. Bill --- In flexcoders@yahoogroups.com, "

Re: Instantiate an HTTPService object in ActionScrip t

2005-02-22 Thread billheit
tListener ("result")) > since the call is asynchronous. Don't forget to use Delegates. > > > > Matt > > > > _ > > From: billheit [mailto:[EMAIL PROTECTED] > Sent: Monday, February 21, 2005 1:05 PM > To: flexcoders@yahoogroups.com > Sub

Instantiate an HTTPService object in ActionScript

2005-02-21 Thread billheit
I am trying to create a custom component to manage my Web Services. So far I have created a class that contains a variable of type mx.servicetags.HTTPService as follows: class DataManager extends Object{ public var requestService:mx.servicetags.HTTPService; public function ASDataManager(){ sup

Create a Data Model from XML String

2005-02-18 Thread billheit
I have a web service that returns XML as a string. On the client I can get the string from the Web Service and oad it into an XML DOM object using XML.parseXML(sourceXML). Does anyone know how to load an XML string into a Data Model on the client side? Bill