Click here to Skip to main content
15,867,330 members
Please Sign up or sign in to vote.
2.50/5 (2 votes)
See more:
Hi,
I'm getting "exception has been thrown by the target of an invocation" while calling a wcf service method at the client side using reflection.
I'm getting the exception while invoking the method at the line:
object result = oMeth.Invoke(oProxy,@params);

Here is my service :

public string GetData(int value)
        {
            return string.Format("You entered: {0}", value);
        }


my client side code:

ChannelFactory<WcfService1.IService1> myFactory = default(ChannelFactory<WcfService1.IService1>);
            myFactory = new ChannelFactory<WcfService1.IService1>(new BasicHttpBinding(), "http://localhost:3250");
            object oProxy = myFactory.CreateChannel();           
            Type oType = oProxy.GetType();
            MethodInfo oMeth = oType.GetMethod("GetData");
            object[] @params = { 3 };
            object result = oMeth.Invoke(oProxy,@params);

Plz help if know the solution.

Thanks & Regards,
Ramana
Posted
Updated 15-May-11 18:59pm
v2
Comments
sekharkaza 16-May-11 0:48am    
Can you tell what the exception is

Take a look at this[^] and check if it will work on your side.
 
Share this answer
 
When the exception gets thrown, drill down into the innerexception details - there's more info there!

Either your service endpoint isn't using a BasicHttpBinding or your URL is wrong. I suspect the latter.

Your code works fine for me.
 
Share this answer
 
In my case also same error occur.i found that when i'm passing wrong parameter name then error occur. otherwise it is working fine
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900