473,395 Members | 1,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

A question of design

Hi.

Our company and one of our contractors are going to exchange data between
our financial systems. The contractor has set up a web service so that I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day. In
addition to that they want me to create a web application they can access at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that contains
all the methods needed and then use that from both the web application and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn


Jan 10 '06 #1
5 1121
You should always design your business classes without an interface (other
than a programming interface) in mind. Then you can implement any type of
external user or software interface to make use of them.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:uv**************@TK2MSFTNGP10.phx.gbl...
Hi.

Our company and one of our contractors are going to exchange data between
our financial systems. The contractor has set up a web service so that I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day. In
addition to that they want me to create a web application they can access
at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that contains
all the methods needed and then use that from both the web application and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn

Jan 10 '06 #2
Ok, but how do I actually do it? Do I create a class that communicates with
the web service and use that class from the interface or do I make a dll and
refer to it from Visual Studio? Or some other way maybe?

As you undoubtedly have figured out by now I've never done this before :-)

Thanks,
Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You should always design your business classes without an interface (other
than a programming interface) in mind. Then you can implement any type of
external user or software interface to make use of them.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:uv**************@TK2MSFTNGP10.phx.gbl...
Hi.

Our company and one of our contractors are going to exchange data between
our financial systems. The contractor has set up a web service so that I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day. In
addition to that they want me to create a web application they can access
at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that contains
all the methods needed and then use that from both the web application and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn


Jan 10 '06 #3
A DLL is a file. A class is software. The software must reside in a file,
which would be a DLL or executable. In this case, it would be a DLL, or, in
Visual Studio, a Class Library.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Ok, but how do I actually do it? Do I create a class that communicates
with
the web service and use that class from the interface or do I make a dll
and
refer to it from Visual Studio? Or some other way maybe?

As you undoubtedly have figured out by now I've never done this before :-)

Thanks,
Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You should always design your business classes without an interface (other
than a programming interface) in mind. Then you can implement any type of
external user or software interface to make use of them.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:uv**************@TK2MSFTNGP10.phx.gbl...
Hi.

Our company and one of our contractors are going to exchange data between
our financial systems. The contractor has set up a web service so that I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day.
In
addition to that they want me to create a web application they can access
at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that
contains
all the methods needed and then use that from both the web application
and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn


Jan 10 '06 #4
Thanks.
Do you know any good articles on the area, or books for that matter? I
really need to get myself up to date on this.

Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:Ol**************@TK2MSFTNGP12.phx.gbl...
A DLL is a file. A class is software. The software must reside in a file,
which would be a DLL or executable. In this case, it would be a DLL, or, in
Visual Studio, a Class Library.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Ok, but how do I actually do it? Do I create a class that communicates
with
the web service and use that class from the interface or do I make a dll
and
refer to it from Visual Studio? Or some other way maybe?

As you undoubtedly have figured out by now I've never done this before :-)

Thanks,
Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You should always design your business classes without an interface (other
than a programming interface) in mind. Then you can implement any type of
external user or software interface to make use of them.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:uv**************@TK2MSFTNGP10.phx.gbl...
Hi.

Our company and one of our contractors are going to exchange data between
our financial systems. The contractor has set up a web service so that I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day.
In
addition to that they want me to create a web application they can access
at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that
contains
all the methods needed and then use that from both the web application
and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn



Jan 10 '06 #5
If you have Visual Studio, check out the documentation regarding "Class
Library" Projects. The "Class Library" template is one of the New Project
templates that are available.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Thanks.
Do you know any good articles on the area, or books for that matter? I
really need to get myself up to date on this.

Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:Ol**************@TK2MSFTNGP12.phx.gbl...
A DLL is a file. A class is software. The software must reside in a file,
which would be a DLL or executable. In this case, it would be a DLL, or,
in
Visual Studio, a Class Library.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Ok, but how do I actually do it? Do I create a class that communicates
with
the web service and use that class from the interface or do I make a dll
and
refer to it from Visual Studio? Or some other way maybe?

As you undoubtedly have figured out by now I've never done this before
:-)

Thanks,
Shawn

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You should always design your business classes without an interface
(other
than a programming interface) in mind. Then you can implement any type of
external user or software interface to make use of them.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.

"Shawn" <bo********@hotmail.com> wrote in message
news:uv**************@TK2MSFTNGP10.phx.gbl...
Hi.

Our company and one of our contractors are going to exchange data
between
our financial systems. The contractor has set up a web service so that
I
can download and upload data between the systems. The data is to be
exchanged in two ways. Sometime during the night the application should
start and download/upload everything that has changed during that day.
In
addition to that they want me to create a web application they can
access
at
any time and download data that is needed immediately.

What is the best way to do this? Should I just create a dll that
contains
all the methods needed and then use that from both the web application
and
the windows application that should be started during the night?

Any help is greatly appreciated!

Thanks,

Shawn



Jan 10 '06 #6

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

Similar topics

2
by: adb | last post by:
I came up with a replication configuration that is basically the result of all the restrictions of replication as well as the restrictions of allowable software on work PC's and I was curious if...
3
by: zlst | last post by:
Many technological innovations rely upon User Interface Design to elevate their technical complexity to a usable product. Technology alone may not win user acceptance and subsequent marketability....
0
by: Edward Diener | last post by:
In Borland's VCL it was possible to divide a component into design time and run time DLLs. The design time DLL would only be necessary when the programmer was setting a component's properties or...
7
by: Shimon Sim | last post by:
I have a custom composite control I have following property
2
by: Paul Cheetham | last post by:
Hi, I have moved an application from VS2003 to VS2005, and I am now unable to view most of my forms in the designer. The majority of the forms in my project are derived from class PACForm,...
1
by: Nogusta123 | last post by:
Hi, I have had a lot of problems getting web pages, master pages and content pages to render in VS2005 design view the same as they would in Internet Explorer. I did a lot of looking on the...
0
by: YellowFin Announcements | last post by:
Introduction Usability and relevance have been identified as the major factors preventing mass adoption of Business Intelligence applications. What we have today are traditional BI tools that...
19
by: neelsmail | last post by:
Hi, I have been working on C++ for some time now, and I think I have a flair for design (which just might be only my imagination over- stretched.. :) ). So, I tried to find a design...
10
by: vital | last post by:
Hi, I am designing the middle tier of a project. It has 6 classes and microsoft application data access block. The six classes are DBServices, Logger, ProjectServices ... etc. and all these...
4
by: Ken Fine | last post by:
I've been living with a frustrating issue with VS.NET for some months now and I need to figure out what the problem is. Hopefully someone has run into the same issue and can suggest a fix. I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.