Is it possible to use C# + Client Delphi server?

Asked

Viewed 256 times

1

C# has a framework Very good orm, this would help a lot when creating a server webservice between client and database.

Delphi has many components that help to develop a commercial automation application.

Is there any impediment to using both together? Objectively, it would be correct to use them together?

  • 4

    There is nothing that Delphi has for Windows applications that C# doesn’t have the same or similar improved. Go to C#.

  • 3

    How would these components for a commercial automation application that Delphi would be better than C#?

  • Acbr probably, but I think q they have a dll to be consumed by C#

1 answer

3


Each case is a case.

It is possible to use both and make them communicate through webservices or something similar. The intention of the webservice, that is not always the best solution, is precisely technologies can communicate without understanding the details of the communication and functioning of the other party. It is used to standardize access to data from one application by another application.

Of course I would try to make a homogeneous application whenever possible, and it seems to me that this case is not only possible, it is desirable.

I doubt it’s worth the trouble of creating webservices to take advantage of a component that helps you with some task. Something that can probably be done easily also in C# and that should have something ready to use with this language. But if you need webservices for other reasons, there already begins to have advantages.

That is, understand why you are choosing each one, but do not separate the application in two just because one language has better components for one thing and the other has better components for another.

  • 1

    Great moustache response. The idea of the webservice is so that in the future it is easy to provide web and mobile modules.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.