W wl Well-Known Member Licensed User Longtime User Jul 23, 2014 #1 Hi, I would like to user b4j to implement my own dyn dns server. Is there any library that can take care of the dns protocol ? Thank you !
Hi, I would like to user b4j to implement my own dyn dns server. Is there any library that can take care of the dns protocol ? Thank you !
Erel B4X founder Staff member Licensed User Longtime User Jul 24, 2014 #2 Assuming that you don't want to actually implement the protocol with sockets then there is no library available. There are several open source Java projects which you should check such as this one: http://www.xbill.org/dnsjava/ Upvote 0
Assuming that you don't want to actually implement the protocol with sockets then there is no library available. There are several open source Java projects which you should check such as this one: http://www.xbill.org/dnsjava/
W wl Well-Known Member Licensed User Longtime User Jul 25, 2014 #3 Thanks Erel, I guess an SMTP or POP3 server is not available either ? But POP3 and SMTP protocols are ASCII-based and could be implemented using AsyncText ? thanks Upvote 0
Thanks Erel, I guess an SMTP or POP3 server is not available either ? But POP3 and SMTP protocols are ASCII-based and could be implemented using AsyncText ? thanks
Erel B4X founder Staff member Licensed User Longtime User Jul 26, 2014 #4 That is correct. Only client SMTP and POP3 are supported with the Net library. You can build a mail server (with Network + AsyncStreams libraries). However you will need to implement the protocols. Upvote 0
That is correct. Only client SMTP and POP3 are supported with the Net library. You can build a mail server (with Network + AsyncStreams libraries). However you will need to implement the protocols.