ADO.NET Data Services Viewer Tool
I build this tool to help me build ADO.NET Data Services URL query ( for example http://e4d.com/Courses.svc/Courses?$orderby=Date/ )
and to see the result. this is first version, please send feedback...
Key Features:
- URL IntelliSense
- URL Tooltip
- Data Grid View
- XML Atom View
- Data Service Metadata View
Download Here. (ADO.NET Data Services Viewer Tool)
Expert Days מחזור שני
קודם כל אני רוצה להודות לכל המשתתפים הרבים שבאו.
בעקבות הביקוש הרב לסדנאת ה- Design Patterns ולסדנאות נוסופות החלטנו
להוסיף ימי מומחה לאירוע והם מעודכנים באתר, http://www.ExpertDays.co.il
בנוסף הרבה אנשים שהיו אצלי בסדנאות ה-WCF ביקשו סדנא על
Web Service Programming with WCF 3.5 אז לבקשתכם היא תהיה בסוף החודש הזה.
מספר תמונות אווירה:
WCF Debugger Visualizer Tool
The post that make my day.
Just wanted to let you know that during these past few days I’ve been working on WCF extensively, and I find the visualizers absolutely indispensible ! Excellent work !
This is probably the best WCF add-on tool I found so far…
Aside from the kudos - If you want something to improve, I would recommend adding a zoom-in/out feature to the class diagram feature. As it is, it is quite unusable since the content (text etc.) is practically invisible.
Keep up the good work !
Danny.
Sites:
http://msdn.microsoft.com/en-us/vs2008/default.aspx
http://hyperthink.net/blog/cool-open-source-wcf-tool/

http://blogs.msdn.com/drnick/default.aspx
http://www.pnpguidance.net/post/wcfdebuggervisualizersmessageschanneldispatcherservicedescriptionservicehostsecurity.aspx
להורדה:
http://www.codeplex.com/WCFVisualizer
class E4DBehaviorAttribute : Attribute , IOperationBehavior
{
#region IOperationBehavior Members
public void AddBindingParameters (
OperationDescription operationDescription ,
BindingParameterCollection bindingParameters )
{
}
public void ApplyClientBehavior (
OperationDescription operationDescription ,
ClientOperation clientOperation )
{
}
public void ApplyDispatchBehavior (
OperationDescription operationDescription ,
DispatchOperation dispatchOperation )
{
DataContractSerializerOperationBehavior SerializerBehavior =
operationDescription
.Behaviors.Find<DataContractSerializerOperationBehavior>();
if ( dispatchOperation.Formatter == null )
{
((IOperationBehavior)SerializerBehavior)
.ApplyDispatchBehavior (
operationDescription , dispatchOperation );
}
IDispatchMessageFormatter innerDispatchFormatter =
dispatchOperation.Formatter;
// Create Empty Message with IDispatchMessageFormatter
Message msg = innerDispatchFormatter
.SerializeReply(
MessageVersion.Soap12 , new object[]{} , null );
Console.WriteLine ( msg.ToString() );
}
public void Validate ( OperationDescription operationDescription )
{
}
#endregion
}
Tip: Download WCF Visualizers.