About remoting and web services. Difference between them?
Answers were Sorted based on User's Feedback
Answer / madhavi latha
asp.net web services are accessed using HTTP only.while
remoting accessed over any protocal like TCP,SMTP,HTTP.
webservices are stateless,where as remoting has support
both stateless and with state,which is achieved using
singleton,singlecall.
singlecall:object doesn't maintain any state bitween calls.
bcoz it maintains instance instance for every call.
singleton:it maintains single instance for all client
request.it is useful when you need to maintain shared data
or resources b/w clients.ex:-windows media player
no need to build webservices in .net it allows other
platforms webservices also.where as remoting build in same
platform only.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / krishna prasad
remoting ---(same platform )
webservices---(any platform)
Is This Answer Correct ? | 0 Yes | 2 No |
How many view state can be hold by a aspx page ?
What is ascx?
How do we invoke queries from the application?
How many web config files can be created for an application?
Where is session data stored in asp net?
what is silverlight and what is the purpose of silverlight?
How do I use response redirect?
WSDL means?
Difference between datareader and dataset ?
What are the media types of http requests and response?
What is owin authentication?
Take one textbox if I am inputting abc alphabet in capital letter or in small letter on the button click it will be bcd or if I enter 123 and it would be 234 like that in ASP.NET?