Advanced Forum Search Results
-
Hello
Professionally I have some experience with WCF services and hosting them in IIS.
But this hosting is done on a customer server so there's no problem.
But now I would like to start with a hobby project of mine.
What I would create
- SQL Server Express database
- WCF Service using this db
- Front-end : Silverlight app
Ideally I ...
-
Since your questions are about the C1 components, you'd better ask your questions on their forum.
I have very good experiences with it, so I'm sure somebody from C1 will help you there...
-
Looks like you are already doing what we ultimatly would like to be doing :).
At least the part where you send the info with information on what the client is actually allowed to do with it.
You might have noticed my thread http://silverlight.net/forums/t/22022.aspx.
I'm really interested if for your, pretty big it seems, project you used any ...
-
Thank you for your reply shanaolanxing.
I've already read (a bit) about the composite WPF. And the ideas outlined there are indeed very good (and actually more or less exactly what I'm after).
But as you say there are no libraries available.
So without investing time in creating Silverlight libraries ourselves, it's not ...
-
No problem. I started of with the exception being part the response but got stuck :-).
The reason I got stuck was because of our current WCF-service architecture (which in all modesty is pretty good ;)).
Reason I got stuck was that we (as you have I guess) have many OperationContracts each returning a specific typed response.
These responses ...
-
I thing I'm missing something because I don't see the service call being made in your code.
The only thing you do with your proxy is attach event-handler to the 'complete' event of your getnumbers-method.
I assume you call something like proxy.GetNumbersAsync somewhere, right?
Once the service call is completly finished, the ...
-
Have to dissapoint you there Jordan.
They did change something concerning the FaultExceptions.
In Beta 1, adding service reference to WCF service with FaultContracts specified caused compilation errors (as you probably now).
Because this information was added to the Reference class, but Silverlight doesn't know what to do with this.
In Beta 2 ...
-
Hello
In our company we did a POC (proof of concept) with Silverlight for our new products.
Now that this POC period has ended with a positive result it is now of course time for the real stuff :-)
One problem we still have with using Silverlight is the lack of some guidelines for your application structure.
Or better yet a framework to help ...
-
The way I do it now in my SL-application is to make sure my dialog is shown on top of all the other controls on the screen.
You can do this by playing with the Z-index property.
In the xaml of your messagedialog, make sure you have for instance a filled rectangle with adapted opacity property.
That way you can create a rather nice effect (I thing ...
-
For the moment Silverlight does not have a PasswordTextBox 'out of the box'.
You have some options if you want one:
- Get some third party controls (from componentone for instance)
- Use the class from this forum post (link to version a few posts higher...)
- Wait for the next release of Silverlight (and prey it will contain a ...