----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: ConfinedVivek Message 2 in Discussion (I got this excellent reply from codeproject.com)..If any body have any explanation or doubt, please post it out.!!!!!!!! Sure you can define such a constructor, but it won't make a difference. The XML Web Service specifications don't describe activation but remote method calls. ASP.NET - having to instantiate the WebService derivative when calls are made - has to instantiate objects because that's how the .NET Framework works. XML-RPC - a predacessor to XML Web Services and there are now WSDL/SOAP-compliant libraries - simply allows you to call methods with an object at all. For that matter, so does XML Web Services. Object activation is a feature of the hosting framework - not of XML Web Services. Even when you instantiate your client proxy for the XML Web Service, the object on the server is not created. It is created on the first call to its methods with a particular lifetime. It's when you make calls that any remote calls are made. In fact, find yourself a packet analyzer (like the widely popular WinPcap with its corresponding Analyer program) and examine the packets after 1) instantiating the client proxy, and 2) calling a method. You'll actually only see one request (assuming data chunking isn't used for that method): for the method. ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/BDOTNET/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
