Advanced Forum Search Results
-
Yes I have tried and it didn't fix the problem.
But I should be able to not define it right?
-
Hello dear Silverlighters!
I'm trying to build my Silverlight 2.0 Beta 1 application with the new release of Silverlight 2.0, and the only warning I get is this one:
The property 'NumberFormat' does not exist on the type 'Graph' in the XML namespace 'clr-namespace:ecoSilverlight'.
Here is the class the Graph.cs ...
-
[quote user="Yi-Lun Luo - MSFT"]
I think currently you'll have to modify Reference.cs to catch the Exception. That means every time you regenerate the proxy, you'll have to do that again. There's likely to be some changes in the auto-generated proxy in the future, but I can't assure you anything at this ...
-
Ok I see what you mean, so no workaround ?
-
void replayRaceButton_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
SetRaceInfoAndSensorStatusClient proxy = new ...
-
Hi all !
I have another problem.
I have several webservices called in my application, so the Reference.cs file has been generated.
But when the services are not reachable, i have an exception in the Reference.cs, which says Unexpected HTTP return code.
That's the first problem, the second is that I want to handle this exception, like all ...
-
[quote user="WPCoder"]Silverlight might be trying to fetch something (WSDL?) immediately upon startup of your silverlight code ... if that fails, it never tries again.[/quote]
I think that answers the question.
And I will take a look at fiddler.
Thank you !
-
Currently I make calls to the web services every 2 seconds, that works perfectly, except that :
"If the server of WCF services is not running at the exact moment of the Silverlight start, even if i start the WCF server, i won't be able to make my calls."
Is my question clear now ?
-
The file needs to be at the ROOT of the web services server.
So even if the service has this kind of address : http://xxx.xxx.xxx.xxx/blabla/blabla/Service
You must have the crossdomain.xml or clientaccesspolicy.xml at the root so here : http://xxx.xxx.xxx.xxx/crossdomain.xml
And the same domain is the same domain AND the same port.
Hope it ...
-
[quote user="Yavor Georgiev - MSFT"]You shouldn't be developing your WCF service in one VS instance, and your Silverlight app in another instnace.[/quote]
Ok the problem is that i don't develop an application just for testing it in Visual Studio, actually we are two to develop this application, one for the silverlight ...