I LOVE C#

Vardi's WebLog
ADO.NET Data Services Viewer Tool

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:

  1. URL IntelliSense
  2. URL Tooltip
  3. Data Grid View
  4. XML Atom View
  5. Data Service Metadata View

 

DataServiceViewer

 

DataServicesViewerTool

Download Here. (ADO.NET Data Services Viewer Tool)

Expert Days מחזור שני

Expert Days מחזור שני

קודם כל אני רוצה להודות לכל המשתתפים הרבים שבאו.

בעקבות הביקוש הרב לסדנאת ה- Design Patterns ולסדנאות נוסופות החלטנו

להוסיף ימי מומחה לאירוע והם מעודכנים באתר, http://www.ExpertDays.co.il

בנוסף הרבה אנשים שהיו אצלי בסדנאות ה-WCF ביקשו סדנא על

Web Service Programming with WCF 3.5 אז לבקשתכם היא תהיה בסוף החודש הזה.

מספר תמונות אווירה:

   
   
Expert Days 2008 Day I

 

 


   

 

Code and PPT in the site - www.ExpertDays.co.il

Posted: Aug 11 2008, 09:50 PM by Vardi | with 3 comment(s) |
Filed under: , ,
WCF Debugger Visualization Past The 1,500 Download :-)

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:

 
MSDN

http://msdn.microsoft.com/en-us/vs2008/default.aspx

 

http://hyperthink.net/blog/cool-open-source-wcf-tool/

 

NicholasBlog

http://blogs.msdn.com/drnick/default.aspx

 

PPG

http://www.pnpguidance.net/post/wcfdebuggervisualizersmessageschanneldispatcherservicedescriptionservicehostsecurity.aspx

 

portal 

DotNetGuru.Org

Moggoly.me.uk

NVentive

להורדה:

http://www.codeplex.com/WCFVisualizer

Expert Days 2008 Workshops

Expert Days 2008 Workshops

List of workshops / Courses

11 - 08 - 2008

12 - 08 - 2008

 

13 - 08 - 2008

 

14 - 08 - 2008

Expert Days Conference 2008 Israel

Expert Days Conference 2008

 

1. List of lectures

2. List of Workshops by subjects

3. My Workshops / Courses:

Expert Days 2008

Expert Days 2008 site is open !

More then 20 Experts !!

More then 30 workshops / Courses !!!

image

Posted: Jul 01 2008, 10:35 PM by Vardi | with no comments
Filed under:
Obtaining an Untyped WCF Message from a Typed Service Operation

 

OperationContext.Current.RequestContext.RequestMessage

To see the information in WCF Service Visualizer

 

ocv_2

How to get implementation of IDispatchMessageFormatter

 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.

WCF Tools

WCF Tools & Links:

1. Managed Services Engine (MSE)

2. WCF Live Service Trace Viewer

3. WCF Visualizer

4. Web Service Software Factory (wssf)

5. Keystroke ESB.NET

6. DinnerNow.NET Sample Application

7. MSDN WCF Tools Page

8. WCF Load Test

Posted: Jun 02 2008, 09:43 PM by Vardi | with no comments |
More Posts Next page »