15,998,003 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Nicolas Dorier (Top 3 by date)
Nicolas Dorier
27-Dec-11 7:23am
View
Deleted
what is bad ? do you have a better solution ?
Nicolas Dorier
13-Dec-11 3:56am
View
Deleted
Yes, it should not change a lot when you are in a SOA design. That is, service first.
In RIA application, the definition of service is user interface driven so the service contract change as fast as the requirements change.
One way is to use a big datacontract (what I did before) so you don't have to change your service contract, but that's not really easy to use and write.
Nicolas Dorier
22-Nov-11 4:26am
View
Deleted
Hi GATzilla,
In my case, I never use the wizard and always use ChannelFactory<t> class (except if I use an external service). This way, I don't have to think to regenerate proxies with Visual studio every time I change the service definition or a DataContract definition, it is always in sync. The proxy generation of Visual studio is great for external services since they don t change frequently. But I hate having to run the wizard everytime I make a change to a contract. Anyway, good observation I accept the alternative since I should have talked about it.