473,396 Members | 1,827 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,396 software developers and data experts.

EAI, WSDL, SOAP or some thing else?

Hi all,

My issue is that I'm working on a project that should play the role of an
adaptor between internal and external application.

Each change done in the internal application should be known by the external
one. I know thank is so heavy for performance but should exist a solution.

My question is what problem I must handle in my requirement document?

and which technology can I use in this case?

Please let me know if you have any question,

Regards,
Nov 17 '05 #1
4 1535
Fouad,

It depends on the machines, and the technologies involved. If they are
both .NET apps, then I would recommend using remoting, perhaps (depending on
your security requirements). If they are both windows apps, then MSMQ or
enterprise services might be a good call.

If the apps are not both on windows machines, or one is external to your
organization (the machine hosting the app), then web services are the way to
go, in which case, you are going to use SOAP and WSDL (this is by default).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Fouad Fahim" <po********@gmail.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
Hi all,

My issue is that I'm working on a project that should play the role of an
adaptor between internal and external application.

Each change done in the internal application should be known by the
external one. I know thank is so heavy for performance but should exist a
solution.

My question is what problem I must handle in my requirement document?

and which technology can I use in this case?

Please let me know if you have any question,

Regards,

Nov 17 '05 #2
The internal application are built on C++ and Delphe for the moment and
there is an other on C# but it will be used in this concept next year.

That's one of the requirement but the main one that we change nothing in the
internal application so we should build some tool allow as to informe the
external applications about any change in data (Pruduct, Article, customer
....) in other to keep the same data between all applications.
I hope that's more clear,
Thanks for any idea,
Fouad,

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:eM**************@TK2MSFTNGP10.phx.gbl...
Fouad,

It depends on the machines, and the technologies involved. If they are
both .NET apps, then I would recommend using remoting, perhaps (depending
on your security requirements). If they are both windows apps, then MSMQ
or enterprise services might be a good call.

If the apps are not both on windows machines, or one is external to
your organization (the machine hosting the app), then web services are the
way to go, in which case, you are going to use SOAP and WSDL (this is by
default).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Fouad Fahim" <po********@gmail.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
Hi all,

My issue is that I'm working on a project that should play the role of an
adaptor between internal and external application.

Each change done in the internal application should be known by the
external one. I know thank is so heavy for performance but should exist a
solution.

My question is what problem I must handle in my requirement document?

and which technology can I use in this case?

Please let me know if you have any question,

Regards,


Nov 17 '05 #3
That's going to suck, that you can't change the internal application.
Ideally, if you were changing data in the internal application, you would
want to wrap that in a transaction, and then try to commit changes in the
other data sources that need to store this data as well (the assumption
being that they need to be kept in sync at all times).

If you don't have to be strict about keeping the data in sync (it is an
update done at the end of the day), then you could have another app expose a
webservice, which would take a timestamp of the last time the data was
updated, and then it would return any changes that have occured.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Fouad Fahim" <po********@gmail.com> wrote in message
news:uf*************@TK2MSFTNGP09.phx.gbl...
The internal application are built on C++ and Delphe for the moment and
there is an other on C# but it will be used in this concept next year.

That's one of the requirement but the main one that we change nothing in
the internal application so we should build some tool allow as to informe
the external applications about any change in data (Pruduct, Article,
customer ...) in other to keep the same data between all applications.
I hope that's more clear,
Thanks for any idea,
Fouad,

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote
in message news:eM**************@TK2MSFTNGP10.phx.gbl...
Fouad,

It depends on the machines, and the technologies involved. If they
are both .NET apps, then I would recommend using remoting, perhaps
(depending on your security requirements). If they are both windows
apps, then MSMQ or enterprise services might be a good call.

If the apps are not both on windows machines, or one is external to
your organization (the machine hosting the app), then web services are
the way to go, in which case, you are going to use SOAP and WSDL (this is
by default).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Fouad Fahim" <po********@gmail.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
Hi all,

My issue is that I'm working on a project that should play the role of
an adaptor between internal and external application.

Each change done in the internal application should be known by the
external one. I know thank is so heavy for performance but should exist
a solution.

My question is what problem I must handle in my requirement document?

and which technology can I use in this case?

Please let me know if you have any question,

Regards,



Nov 17 '05 #4
For updating the data periodeclly you right but in my case all changer
should be send in the RealTime (Civil Security Application) so about
security, it's so mandatory....
Fouad

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:u8**************@TK2MSFTNGP15.phx.gbl...
That's going to suck, that you can't change the internal application.
Ideally, if you were changing data in the internal application, you would
want to wrap that in a transaction, and then try to commit changes in the
other data sources that need to store this data as well (the assumption
being that they need to be kept in sync at all times).

If you don't have to be strict about keeping the data in sync (it is an
update done at the end of the day), then you could have another app expose
a webservice, which would take a timestamp of the last time the data was
updated, and then it would return any changes that have occured.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Fouad Fahim" <po********@gmail.com> wrote in message
news:uf*************@TK2MSFTNGP09.phx.gbl...
The internal application are built on C++ and Delphe for the moment and
there is an other on C# but it will be used in this concept next year.

That's one of the requirement but the main one that we change nothing in
the internal application so we should build some tool allow as to informe
the external applications about any change in data (Pruduct, Article,
customer ...) in other to keep the same data between all applications.
I hope that's more clear,
Thanks for any idea,
Fouad,

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote
in message news:eM**************@TK2MSFTNGP10.phx.gbl...
Fouad,

It depends on the machines, and the technologies involved. If they
are both .NET apps, then I would recommend using remoting, perhaps
(depending on your security requirements). If they are both windows
apps, then MSMQ or enterprise services might be a good call.

If the apps are not both on windows machines, or one is external to
your organization (the machine hosting the app), then web services are
the way to go, in which case, you are going to use SOAP and WSDL (this
is by default).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Fouad Fahim" <po********@gmail.com> wrote in message
news:%2***************@TK2MSFTNGP15.phx.gbl...
Hi all,

My issue is that I'm working on a project that should play the role of
an adaptor between internal and external application.

Each change done in the internal application should be known by the
external one. I know thank is so heavy for performance but should exist
a solution.

My question is what problem I must handle in my requirement document?

and which technology can I use in this case?

Please let me know if you have any question,

Regards,



Nov 17 '05 #5

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

Similar topics

2
by: Tomislav Lepusic | last post by:
Hello, I don't know if this is the right group (I'm more in Perl, know nothing about Python), so if you can help me thanks, if not, sorry to bother you. I'm working on my student project and...
24
by: Generic Usenet Account | last post by:
Does anyone have an opinion on how IDL and WSDL compare to each other? Are they equally powerful in their "expressive power"? Sometimes it appears to me that IDL is a little easier for humans to...
5
by: relaxedrob | last post by:
Hi All! I ran the following w3c example through my WSDL parser (SOA Editor from Cape Clear): http://www.w3.org/TR/wsdl#_rpcexample It told me that there were a bunch of erros about no...
1
by: ffhansix | last post by:
Hi, I am having problems with generating a c# proxy class from a IBM websphere WSDL file, when running the wsdl.exe to create the c# proxy file command i recieve an error: Warning: one or...
4
by: Brian | last post by:
I am trying to use a web service from a non Microsoft product. When I do a "Add Web Reference" from the Visual Studio dialog box, a request is generated and received by the web services supplier....
2
by: pshvarts | last post by:
(I'm new in SOAP) I get some wsdl file (from apache service ). I tried creating SOAP client with .NET - trying to add Web Reference and get error like: "Custom tool error: Unable to import...
0
by: Jigar.Patel | last post by:
I have simple remoting server exposing following simple method. When I try to add webreference to this server in another project, it gives me following error: Custom tool error: Unable to import...
0
by: robert | last post by:
Hi all, I'm having a hard time resolving a namespace issue in my wsdl. Here's an element that explains my question, with the full wsdl below: <definitions name="MaragatoService"...
4
by: Jon Davis | last post by:
When people discuss XML Web Services in the context of .NET, and they talk about their WSDL file and the like, does this infer SOAP? Or are there other XML-based web protocols besides SOAP that...
0
by: Philluminati | last post by:
Hi guys. I'm trying to write a SOAP server in Perl and it seems I need to handwrite the WSDL files. The good news is, I've already done some samples and have it working but I'm trying to grow these...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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.