> Thanks Marvin.
>
[quoted text clipped - 30 lines]
> > >
> > >Where is the source code? What can I do?
Thanks Petru.
I found the source code (with your technique), but is not posible to change
the source code, is read only and is hidden, I think VS2005 could change it
without warning me.
So, my other option is to use de wsdl.exe tool, I'll generate the proxy and
then I work directly with the proxy class.
I'll try this approach, if some of you have a better idea, please share it
with us.

Signature
Henry Sequeira
Costa Rica
> The easyest way to see the generated proxy class (as far as I know) is:
> write some code in Visual Studio 2005 using the proxy class and then right
[quoted text clipped - 37 lines]
> > > >
> > > >Where is the source code? What can I do?
Tiberiu Covaci - 27 Oct 2005 08:06 GMT
Hi Henry,
Another solution is to create a derived class that inherits form your proxy
class, and implements the interface. I assume that you already have the
mothods that you want to expose via the interface, so you will have an empty
derived class. EX:
If your webservice class is MyWebservice and your interface is
IMyWebInterface then you will hava a class
public class MyDerivedWebServiceWithInterface : MyWebservice,
IMyWebInterface {
}
That is all.
Best Regards,
Tiberiu Covaci
> Thanks Petru.
>
[quoted text clipped - 56 lines]
>> > > >
>> > > >Where is the source code? What can I do?