I am starting the implementation of a .NET client that consumes JRDC2
My first step is to create the windows application and include something similar to this code:
I see that the HTML request (which in my case will be HTMLS) is through this url:
https // xxx.xxx.xxx.xxx: 17179 / rdc? method = query2
but here come my doubts, which are a few:
There is a point where an object is created with this code:
How can I generate that .net object or rather, what information does this object have to generate it in any other language.
I know that I will have to use net .net this library to transform or serialize and deserialize the data:
And when I have this understood and implemented I will have to know how to send that information in the URL, if for
post or get or in what way.
I acknowledge my low knowledge in this, so if I have to learn or document myself before in something, I also appreciate help.
If I don't get this I'll have to forget about RDC and use WebService that I know of.
The use should be in .NET because perhaps other programmers have to access information via RDC, which leads me to think of Web Services.
A step that has already been solved was to mount the rdc under htmls with digital certificates, which has already been achieved.
[B4X] jRDC2 - B4J implementation of RDC (Remote Database Connector)
RDC is a middleware server that makes it simple to safely connect clients and remote SQL database servers. jRDC2 is the latest version. All new projects should use this version. jRDC2 is made of two components: - B4J server. The server receives the requests from the clients, issues the SQL...
www.b4x.com
My first step is to create the windows application and include something similar to this code:
I see that the HTML request (which in my case will be HTMLS) is through this url:
https // xxx.xxx.xxx.xxx: 17179 / rdc? method = query2
but here come my doubts, which are a few:
There is a point where an object is created with this code:
B4X:
Obj = CreateMap ("command": Command, "limit": Limit, "version": VERSION)
How can I generate that .net object or rather, what information does this object have to generate it in any other language.
I know that I will have to use net .net this library to transform or serialize and deserialize the data:
[B4X] .Net Framework implementation of B4XSerializator
B4XSerializator is included in the internal RandomAccessFile library. The attached dll is for .Net Framework applications. B4XSerializator is a great tool that makes it simple to share data between B4A, B4i and B4J. It takes care of converting objects, including complex objects, to bytes and...
www.b4x.com
And when I have this understood and implemented I will have to know how to send that information in the URL, if for
post or get or in what way.
I acknowledge my low knowledge in this, so if I have to learn or document myself before in something, I also appreciate help.
If I don't get this I'll have to forget about RDC and use WebService that I know of.
The use should be in .NET because perhaps other programmers have to access information via RDC, which leads me to think of Web Services.
A step that has already been solved was to mount the rdc under htmls with digital certificates, which has already been achieved.