Other Consumer RDC in .net and how serialice map to object

netsistemas

Active Member
Licensed User
Longtime User
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:

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:

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.
 

OliverA

Expert
Licensed User
Longtime User
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.
FYI: The serialized data is POSTed

Clarification: From client to jRDC2 server, the serialized data is POSTed
 
Upvote 0
Top