Vectorlight News

  • Chat App Converted to HTML and JQuery
    Sep 08, 2011

    Converted from Silverlight to HTML and Javascript/JQuery is the Vectorlight Chat App. Login using your Vectorlight password to chat using your username and avatar.

  • HTML5 iPhone,Android Big Guns Tower Defense
    Jul 02, 2011

    Big Guns has made the leap from Windows Phone 7 (XNA) to HTML5 so you can now play it on your iPhone, Android and other HTML5 compatible devices.

  • HTML5 Games - Word Poppers and Batty
    Jun 04, 2011

    As the take-up of HTML5 quickens (74% of users currently have a browser capable of HTML5 Canvas) we present two more games for both your browser and mobile.

  • Big Guns Tower Defense on Windows Phone 7
    May 06, 2011

    Coming soon to Windows Phone 7 is an XNA port of the popular Vectorlight tower defense game Super Tower Defense. Whilst retaining many of the graphical and gameplay features of the original Silverlight game.

  • Wakacube WP7 Update
    Apr 26, 2011

    Released to the Windows Phone 7 marketplace today is Version 1.1 of Wakacube the 3D physics game of skill. Included in the update are more levels (30 in total) and new mode Wakatime which generates random crate structures to keep players entertained long after the levels have been completed.

  • Home Page News
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...

 
 
prakash12
prakash12
RE: FileUpload webservice problem Posted: Aug 18, 2011
 

My Problem doest not solve with this

 
 
Ace1968
Ace1968
RE: FileUpload webservice problem Posted: Sep 19, 2011
 

Hi,

I've the same problem; On development machine this control works very well, but at runtime, on server machine it doesn't works.

I see, with Fiddler, that when the service .asmx is called from my machine it has a text/xml, then there aren't problems if the call ending with /Upload; but when the call starts from IIS (server machine) Fiddler tell me that it is a text/html, and so the browser doesn't translate it correctly.

Is it possible?


Thks

Bye

 
 
Ace1968
Ace1968
RE: FileUpload webservice problem Posted: Sep 19, 2011
 

It's necessary the clientaccesspolicy.xml file in the root of IIS.


bye

 
 
infocopy
infocopy
RE: FileUpload webservice problem Posted: Oct 26, 2011
 

I have a similar problem. I can upload my files from the web server machine but when I try from a client machine I have only a 500 error on server and my file was not uploaded on a sharing directory on the server web machine.  What can I do?

(My configuration: IIS7, MS WS 2008 R2)


Thank's

Ma

 
 

Rate this: 

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