Cassio Posted October 7, 2003 Posted October 7, 2003 Im working on a web project with a group. The thing is that they are putting all the functions on a webservice. The webservice is on the same machine of the project, but they say they could use the same webservice for diferent projects on diferent servers. The strange thing is that these function are sometimes too simple, and they use it all the time on every page. I think its completly unnecessary to call a webservice function everytime if you can put all this functions in a class within the project. Wouldnt that be a lot faster? Even if the webservice is on the same machine? I guess they misundertood the idea behind webservices, right? Thanks. Quote Stream of Consciousness (My blog)
Administrators PlausiblyDamp Posted October 7, 2003 Administrators Posted October 7, 2003 If the webservice is going to be located on a remote machine then every method call will involve a network round trip - this most definately will incur performance overheads. What kind of functionality is going into this webservice and does it require access to server side resources? If not it may be more sensible to put some of these functions into a DLL that can be shared between the applications. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Cassio Posted October 7, 2003 Author Posted October 7, 2003 Most of the functions doesnt need to access the server, they are most logical functions. Another question is: If the webservice is on the same machine of the application, will it work on the same speed of a dll? Thanks. Quote Stream of Consciousness (My blog)
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.