Latest News

  • Silverlight Online Chat
    Jul 24, 2010

    Today we launch the new Silverlight Live Chat application demonstrating the Liquid RichTextBox and Emoticon replacements.

  • New Super Shoot Em Up 2 Game
    Jun 29, 2010

    Added to the Games section is the new Super Shoot 'Em Up 2 game. Take control of your tank with the aim to defeat the computer controlled opponents. Features all new weapons, levels and Battle Mode!

  • Silverlight 4 Controls V5.3.2 Released
    Jun 28, 2010

    This release contains several fixes raised in the forums.

  • New Sandmania Puzzle Game
    Jun 18, 2010

    Sandmania is the latest game from vectorlight, the aim of this game is to guide sand from the top of the screen to the various colored containers below.

  • New Moon Tower Defense Game
    May 29, 2010

    Added to the Games section is the new Moon Tower Defense game. Defend the Moon from the circling Aliens and Humans.

lesterbedwards
lesterbedwards
FileUpload webservice problem Posted: Mar 03, 2010
 

In my silverlight code I set the uploader to as follows:

private Uploader _uploader = new Uploader("http://msu-all-prod/FileUpload/Service1.asmx");


When I test the webservice it works fine using :

http://msu-all-prod/FileUpload/service1.asmx?op=Upload


I notice the app actually appends "/Upload" to the end of the URL to call the method.  Because of this the web method is not found.


What am I doing wrong?  Thanks is advance for any help.


-L

 
 
flyd
flyd
RE: FileUpload webservice problem Posted: Mar 05, 2010
 

There is a setting you will need in your web.config in the <system.web> section:


<webServices>


  <protocols>


    <add name="HttpPost"/>


  </protocols>


</webServices>

 
 
flyd
flyd
RE: FileUpload webservice problem Posted: Mar 05, 2010
 

For this case you need to add:


    <add name="HttpGet"/>


I think...

 
 

Rate this page: 

1 Star 2 Star 3 Star 4 Star 5 Star
1 Rating / 5.0 Average