WCF / ASMX :: Why Can't Run Silverlight In Iis - VS2010

Aug 25, 2010

Both VS200 and IIS are in my local machine. Suppose they have the same permission. I create a silverlight4 w/ wcf ria service project. The project runs well in VS2010 built-in ASP.Net development server. It doesn't work well after i publish it to IIS. I only can see its static content but not the .svc. i try to browse the .svc, it always show HTTP 500 error. I doubt if i do not open the asp.net runtime setting sth in IIS?

View 1 Replies


Similar Messages:

Visual Studio :: Where's SilverLight Toolkit In VS2010

Aug 18, 2010

I read somewhere that MS has integrate SilverLight Toolkit into VS2010. Where is it? I can't find it under Toolbox.

View 2 Replies

WCF / ASMX :: Dynamic Add Service Reference In Vs2010

Mar 22, 2011

I have created WCF Application in vs2010 and using it in window application . i have added WCF service reference using "Add Web service Reference" from visual stuio. i want to do it by programming.

View 1 Replies

WCF / ASMX :: Expose A Method To The Silverlight Client?

Nov 22, 2010

I'm having trouble exposing a method to a silverlight client from a WCF service although I can expose properties.

My WCF service has a LoadDeal method which returns a Deal object

public Deal LoadDeal(int dealerId)
{
Deal d = new Deal();
d.LoadDeal(dealerId);
return d;

[Code]....

This works fine and the Refernce property can be accessed from the silverlight client.

But when I try to expose a method such as the CancelEdit method below, I can't find a way to expose this method to the silverlight client:

public void CancelEdit()
{
//Add logic to cancel changes here.
}

I've tried adding the DataMember annotation but the compiler complains. I've re-compiled without an annotation and then updated the service reference but nothing seems to be working.

View 1 Replies

VS2010 Ultimate - Why Just See "Silverlight 3" - Where's 4

Jun 16, 2010

What do I have to download to be able to set my Silverlight app to version 4? I already downloaded wat I thought was the latest version of the Silverlight developer runtime

View 1 Replies

WCF / ASMX :: Linq To SQL - Silverlight Games Online Card

Oct 22, 2010

I was asked to design an online game of cards (eg poker) multiplayer technology with asp.net mvc, and I went to see other sites like that have asked me. I noticed that many sites dump the game on the platform and then winform can play safely. I thought of using WCF and Silverlight together with asp.net mvc. How to understand the technology associated with the WCF card games online, where can I find examples of online games of cards?

View 1 Replies

WCF / ASMX :: Create Simple Web Service In VS2010, NOT WCF Service?

Aug 30, 2010

How to create simple web service in VS2010 Professional (trial version). There is no template to do this. I am not trying to create WCF service here.

View 2 Replies

WCF / ASMX :: Create Web Service - How To Web Page Call Sales_Services.asmx

May 5, 2010

if i have the web application with many pages like add order page, edit order page, and delete order page actually they also interact with the Sql Server 2008 and i also create web service page call Sales_Service.asmx. i know just i need to put something like query into Web Method in Sales_Service.asmx but i have a lot of queries, i don't know which query i should put into it and how the web page call the Sales_Services.asmx

View 2 Replies

WCF / ASMX :: Passing Variable From Dropdownlist.selectedvalue To Asmx Webservice

Nov 10, 2010

On my page I have a dropdown for country.

On my asmx service I want to get the value of the dropdownlist to filter the next input which will be state/providence.

My code on the asmx:

[Code]....

I want to add another clause to the WHERE statement to restrict Country = @Country so I will need to get that value to the web service.

View 2 Replies

WCF / ASMX :: IIS Memory Increasing For Each Client Request In Asmx Web Service?

Nov 8, 2010

A customer reported that our asmx web service is continually increasing in memory (mem usage as well as private bytes). We are able to reproduce the problem in our lab with Windows 2003 Server SP2 (fully patched) on some of the machines. The customer is using Windows 2008.

We created a Hello World web service targeting the 2.0 framework built under VS2005 SP1 and a test client that continues to call it. The memory increases steadily - approximately 40K per client request. If the test app is paused, the memory remains the same. When it is closed, the memory drops. Explicit calling of GC.Collect does not drop the memory.

We have run the memory profiler on the service and the leak is all native memory. We have uninstalled/re-installed the Framework on one of the machines but no difference. To our knowledge all of the security and IIS settings are not modified. We have compared app pool, default web site and virtual directory properties to machines that have no problem and they are identical.

View 11 Replies

WCF / ASMX :: How To Call Asmx Web Service In A .net App From Classic Asp App Js File

Mar 17, 2011

I have a .net app developed in .net 4.0 version. And I implemented an asmx web service in this. Now I want to call one of the webservice method in another classis ASP application java script function.

View 2 Replies

WCF / ASMX :: Bulk Insert Data Into Asmx Webservice?

Feb 24, 2011

I have datatable consist of 20 records and i want to bulk insert into sqlserver through the asmx webservice. Can anybody guide to me or provide Sample BusinessLogic and webservice code.

View 1 Replies

Cannot Install VS2010 Pro

Dec 21, 2010

VS2010 Pro cannot be installed in my PC. I get the following error message:
"The following component failed to install: Microsoft Visual Studio 2010 Professional - ENU".There is an additional message that says: "The following components were not attempted" and a list is shown:* Microsoft Web Deployment Tool (x86)* Microsoft ASP.NET MVC 2 - Visual Studio 2010 Tools* Microsoft ASP.NET MVC 2And others. have read the installation requirements and my PC fulfill with them.My PC has 2 disk partitions and I indicated to perform installation in drive d:

View 1 Replies

Security :: Use FBA Within VS2010 And .NET 4.0?

Jul 11, 2010

Are there any tutorials on how to use FBA within VS2010 and .NET 4.0? When I build a new web app, FBA is already set up but not configured. I'd like to use SQL server for the source.

I was walking through the tutorials on this site but I'm getting confused because some things are already in place.

Anything specific to .Net 4.0?

View 1 Replies

WCF / ASMX :: How To Execute WebService Asmx Link From Default.aspx Page Link Using HTTPRequest And HTTPResponse

Nov 3, 2010

I have spent a couple of days on this one. I have an ASP.NET website that has Linkbuttons on

the Default.aspx page.. I added a WebService to the Website because later on the WebService will

subscribe to a Provider(Feed) of News, Sports and Weather and things like that. So when a Linkbutton

on the Default.aspx page is clicked it will connect to the link in the WebService which will load the News,

Sports or Weather onto the Default.aspx web page.

The problem is I can't get the LinkButton to execute the Link in the WebService. The link will call the page up

to where you see all of the Web References. But then if you want to execute one of those references you

have to click its link and the Invoke button that will follow. My questioh is how can the link on my Default.aspx

page execute the link in the WebService. Now I changed the LinkButton into an <a href> but I still can't execute

the link in the WebServices. I always use www.Microsoft.com as the link when testing and I wasn't sure about the return type

so I put "void" for an HTTPRequest, so below is the link from the Default.aspx web page and below that is he asmx file:

[code]....

View 2 Replies

WCF / ASMX :: Use MS Chart Control In .asmx

Apr 2, 2010

Can I use the concept of the MS Chart Control in a web service page? Basically I want to send some data to my web service then create a graph, save the image and send the image URL back to the calling device so it can be displayed. How can I accomplish this?

View 7 Replies

AJAX :: Toolkit For 2.0 In VS2010

Oct 28, 2010

our company just upgraded to VS2010, but we have not upgraded to .NET 3.5 or 4.0 yet, we're unfortunately still using 2.0. I have the toolkit for 2.0 that I was using with VS2008, but now that I am using VS2010, my AJAX items no longer work. I was wondering first of all if it's even possible to use the old 2.0 toolkit with VS2010, and if so, is there something special I need to do to get the controls to work now that I have opened my project in VS2010?

View 3 Replies

VS2010 Debugger Not Responding

Jul 19, 2010

I am working on a large website that is comprised of multiple applications. We are still using web forms. All of the applications are in a common directory that serves as the root directory in my localhost. The site was originally built in 2005 on 3.5 but has been migrated to 2010 still running on 3.5 (2.0). My problem is that my debugger will run once. After I stop debugging I cannot run the debugger again - it just hangs. My locals and watch windows open but do not populate and the browser never opens. We are running Visual Studio 2010 Ultimate on Windows 7 32 bit.

View 1 Replies

VS2010 Hangs Up All The Time

Jun 18, 2010

Visual Studio 2010 hangs up more tha 20 times in a working day. I'm thinking of going back to 2008 but that is such a hassle. Mostly it hangs when debugging starts and when I open a xaml file. I'm doing silverlight/WCF development.I have HP I7 laptop, 8gig, windows 7 64bit.

View 4 Replies

ADO.NET :: How To Upgrade To VS2010 - EF4 Or IBatis

Oct 22, 2010

I need little advice from you who has experiences in EF4 and IBatis. I would like to upgrade my applications that used IBatis technology and VS2005 to VS2010. The reasons of upgrading are i would like to use the latest technology and also enhance my applications with features that not provided in .Net 2.0

I already try EF4 in VS2010. It looks like nice feature to create application but i need more information about it advantage and disadvantage in performance,security,stability etc. As information, i was using generator to wrap IBatis.Net and VS2005, so it seem the .edmx file similar with classes that my generator was created

View 1 Replies

Configuration :: Compiling For 2.0 Using VS2010?

Aug 5, 2010

I just discovered that a (simple) website I'm working on will be deployed to a server running framework 2.0. My quandry is that I started it using VS2010 and framework 4.0.

Is the solution as simple as changing the compile to options? I'm assuming that I'll have to remove the Listview controls I am using as they didn't get introduced until 3.5 (i think).

Am I basically correct with this or am I missing something?

View 1 Replies

How To Set Folder ACL's With Web Deploy In VS2010

Sep 16, 2010

I have a web application I want to deploy via Web Deploy, using "Build Deployment Package"

It has a folder called "Errors". This is part of the project. Web Deploy adds it, but how do I specify that i want the application to have Write permissions on this folder?

Do I have to manually edit the source manifest each time, or can I set it somewhere to get the package to do it automagically?

View 2 Replies

WC3 Validation With Viewstate - Favicon - VS2010

Dec 14, 2010

I've been though this once before, but somehow can't get these two items to run correctly (VS2010 - Server 2008 R2 - .NET4.0) WC3 Validation I have entered (in Web.config)

[Code]....

and the favicon is displayed in the browser tab when run locally, but not when published.

View 1 Replies

How To Add A File To A VS2010 Project For Documentation

Jan 5, 2011

I would like to include a word document, and unused program files in a folder as part of my project, but I don't want it compiled, etc. How is the best way to do this?

View 1 Replies

Navigate Backwards In Editor - VS2010

Mar 15, 2011

In VS2010, when looking at a .CS code file, if I press F12 to "Go to Definition", is there a way to go back to where I just was?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved