Advanced Forum Search Results
-
I have a WCF service that is referenced in my Silverlight project. In my app I'm trying to follow and obey an MVVM design pattern... I have a DataLayer on the server side, which gets data from my DB and returns a custom class to the WCF service... then the service returns the class to my View Model layer on the Silverlight side. ...
-
Here is a copy of what my Webservice code looks like:
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class Service2
{
[OperationContract]
public void DoWork()
{
// Add your operation ...
-
I have a webservice with a class dressed with [DataContract] and in it are properties dressed with [DataMember]..
In my silverlight application im unable to find this class for some reason. I can find my default class, the one with the genereic "DoWork()" method... but not my Data class.... why is this? ...
-
Is there a way to pass and XmlDocument accross a WCF service to my Silverlight app?
-
Ya, i saw that one and that just may be the the example i have to use... but in the new sl3 multip page template... there must be an easier way. :(
-
Hello,
I have a button on page 1 in the click event I would like to change to page 2 (in C#).
How can I do this?
I know its a simple question, but all the info I've found is about UriMapping, Routing, etc. If you can leave a code example or point me in the right direction, it would be greatly appreciated. ...
-
So i have a WCF service...and one of my operation contract methods returns a Dictionary<string, object>.
It works and runs fine until I return lists of Byte arrays and larger lists of numeras data... I get the "server not found" error... I also have basicHttpBinding configured to accept the max amount of bytes through messaging ...
-
True, the best method is to use Services, preferably WCF as it is less cumbersome. If its in a controlled environment (like your intranet) then just stick with WPF :)
-
the "Completed" events will not fire unless the "Async" events are fired first.
-
got it working now... just placed the xml file in the root local folder...
when i actually host the app then I will relocate the file to the server :)