Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Storing running instances between calls

Reply
Thread Tools

Storing running instances between calls

 
 
dumbledad@gmail.com
Guest
Posts: n/a
 
      09-14-2006
Hi Folks,

I'm using ASP.Net (with some web services) to do behind-the-scenes
computation for a Flash based prototype. That is, the Flash handles the
UI and the user interaction but any computation is done *on the client
machine* by ASP.Net pages and web services called from ActionScript in
the Flash. One of these is "Play" which plays sound files on the client
machine where the file-type is such that Flash cannot play them
directly. The call has this format:

http://localhost/Voicemails/Play.aspx?id=060628.wav

What I'd like to do is add another call of the form

http://localhost/Voicemails/Play.asp....wav&stop=true

or

http://localhost/Voicemails/Stop.aspx?id=060628.wav

that would stop the playback of the file. To do this I'd need to store
a reference to the running SoundPlayer instance between calls to web
pages or web service functions. I realise that usually this is a bad
idea, but since this is running in IIS on the client PC and has only
one user (the Flash app) the usual scaling issues do not apply. How do
I do this?

Thanks,

Tim.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
dicts,instances,containers, slotted instances, et cetera. ocschwar@gmail.com Python 8 01-29-2009 09:52 AM
User Images: Storing in Files VS Storing in Database Jonathan Wood ASP .Net 1 06-02-2008 05:56 PM
storing pointer vs storing object toton C++ 11 10-13-2006 11:08 AM
share function argument between subsequent calls but not between class instances! K. Jansma Python 7 02-21-2006 01:31 PM
list of class instances within a list of a class instances John Wohlbier Python 2 02-22-2004 08:41 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57