Hi, my team is building a game in flash to be embeded in a asp.net application.
When the game is over the player have the chance to type his name to save his score. This is done using web services called from flash. The webservice receives the name and score.
Since the webservice is publicly available how can I make it only callable from my flash given the following conditions:
- The .swf is hosted by the same asp.net application
- There are two domains that can access the same application (I have run previously into cross domain issues).
- Using SSL is not an option.
- The webservice has to be consumed by the .swf file.
Any help or code would be appreciated.