473,769 Members | 2,402 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Advice Needed on Using WebServices

Hi,
We are a small application development group. We have about 100 Users who
primarily use Microsoft Related Products.
Our Application Development was purley based on a CLient Server Model using
Visual Basic and SQL Server.
We plan to move forward to the .NET environment.

We plan to develop applications with ASP.NEt as well as VB.NET.

Right now we have some COM components or DLL's that we use. For example we
have a DLL called the DSNP Server which is consumed by all our applications.
The function of this is to return DataBase Connection Information for each
application.

We are planning to replace this by a WebService.
1) My first question here is : Do you think the web Service is something
ideal forthis type of functionality.

2) We also need our applications to discover this web Service dynamically so
that if the server hosting this web service goes down we dont need have to
recomiple all our applications to discover this web service. We had planned
to Use Microsoft UDDI Services to accomplish this.
DO you think UDDI Services is an ideal solution for this or is it a over
kill ? What is a good solution.

We eventually plan to use WebServices for other things to where we want to
share information across different systems for example share human resource
information to an application for time cards etc..

I would appreciate if someone could throw some light on this. This would be
of immense help.

Thanks,
Jothi
Jul 6 '06 #1
1 1159
Jothi,

I'd be very careful on proceeding with this route. In the event of a simple
service providing one-time information to an application is fine. If you are
frequently asking for data from the webservice during a users run, I would
rethink the strategy. The primary reason I say this is that webservices
introduce IP calls and latency that do not exist with tightly bound code.
This latency builds significantly if you are thinking of using webservices as
you "data layer".

Assuming the DBConnection information is sensitive, do you really want to
expose this over a webservice for security purposes? If so, you'll probably
want to float the actual connection string back as an encrypted, then encoded
base64 string. Each app will need a key or reference a common library to
decrypt.

If looking for redudancy, I'd look at putting 1 or more boxes behind a
simple load balancer that all users can point at.

"Jothi" wrote:
Hi,
We are a small application development group. We have about 100 Users who
primarily use Microsoft Related Products.
Our Application Development was purley based on a CLient Server Model using
Visual Basic and SQL Server.
We plan to move forward to the .NET environment.

We plan to develop applications with ASP.NEt as well as VB.NET.

Right now we have some COM components or DLL's that we use. For example we
have a DLL called the DSNP Server which is consumed by all our applications.
The function of this is to return DataBase Connection Information for each
application.

We are planning to replace this by a WebService.
1) My first question here is : Do you think the web Service is something
ideal forthis type of functionality.

2) We also need our applications to discover this web Service dynamically so
that if the server hosting this web service goes down we dont need have to
recomiple all our applications to discover this web service. We had planned
to Use Microsoft UDDI Services to accomplish this.
DO you think UDDI Services is an ideal solution for this or is it a over
kill ? What is a good solution.

We eventually plan to use WebServices for other things to where we want to
share information across different systems for example share human resource
information to an application for time cards etc..

I would appreciate if someone could throw some light on this. This would be
of immense help.

Thanks,
Jothi
Jul 7 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1375
by: Janus Knudsen | last post by:
Hello Im collecting ideas for a piece of software I've in mind. I need to create an application which can be started with some parameters, the application have to be started in many instances and on many servers. Every instance has a special job to fullfill, think of the instances as small robots - a robot farm or something like that. Every robot should be able to tell for instance when its idle, when its running etc..
24
2284
by: Joseph Geretz | last post by:
Up to this point, our application has been using Windows File Sharing to transfer files to and from our application document repository. This approach does not lend itself toward a secure environment and so we are in the process of imposing a WebService gateway between our application client and the repository. (As a starting point, the WebService won't be a richly featured application server; business rules are still implemented in the...
3
5059
by: Mae | last post by:
Dear All, I have a problem here, I'm using C# Webform calling a webservices. The webservices return me a XMLnode, using this XMLnode I want to convert it to dataset so I can bind to the datagrid, by extracting the <CustomerData></CustomerData> block from the xmlnode. Below is the sample of xmlnode return from webservices. <?xml version="1.0" encoding="utf-8"?>
8
984
by: TS | last post by:
Hi all, First of all, why I don't usually get a response for the questions I place in this newsgroup? It's like as if it's not enough that vb.net is way different than regular vb, but also developers who are trying their very best to update their knowledge to vb.net don't get enough support. I bought books, I'm trying to learn more about this .net thing, but people like me who are still in "the knowledge update stage" need more help. Are...
10
14857
by: Mae Lim | last post by:
Dear all, I'm new to C# WebServices. I compile the WebService project it return no errors "Build: 1 succeeded, 0 failed, 0 skipped". Basically I have 2 WebMethod, when I try to invoke the first method it is working fine. Then when I try to invoke the second method it return me an error, Just In-Time Debugging, with error message "An exception 'System.StackOverflowException' has occurred in WebServices"
6
1876
by: Eric Guthmann | last post by:
Hello all We have an SOA application that includes an ASP.NET webservice and WinForms client. My question is regarding the use of Add Web Reference in Visual Studio. The tool is nice because it easilly creates and updates the client-side proxies that we need to communicate with the webservice. The problem is that our webservice methods accept and return business objects and when generating the proxies, VS creates scoped versions of...
1
1284
by: Chris | last post by:
Hi, I am developing an app with the common layers APP,BLL and DAL. I am puzzled as to where I should put the DAL? I need the app to be distributed as possible as well as the DAL will be acceddes by multiple apps. I was thinking of puting the BLL on the webserver and the DAL on a separate server. If I go that way how would I access the DAL from the BLL? Remoting? I am using .NET 2.0. Should I consider Webservices to expose the DAL? OR make...
4
1671
by: Dave G | last post by:
I've just been informed that an Access 2003 based system in use at one of my customers now needs to send data in the form of an XML file to a webservice. They told me it was simple - but I don't know anything about it and a googling session yesterday made it look very complicated. So can anyone help with this question - I don't need anything fancy and I haven't got the experience to work it all out for myself from first principles (even...
1
775
by: mazdotnet | last post by:
Hi, We have an events page in our company that's database driven and we need to shared it with our partners. They need to pull information from our site. They can be running asp, php, .jsp..etc. I was thinking of using a web services and returning datatable (maybe to XML). Is that the best approach? Or should I just take it as a Url parameter and return an XML file? Any suggestions here would really help me.
0
9586
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
9990
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7406
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5446
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3956
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3561
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2814
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.