Heiner Wolf wrote:

Hi,

what is the recommended way to store something (XML) on the server?
I have a suspicion, but I would like to hear from someone else :-)

I'm working on jabberd2 server project for the moment... and I have to store data, and I use this function :

01030 void nad_print(nad_t nad, int elem, char **xml, int *len)
01031 {
01032     int ixml = nad->ccur;
01033
01034     _nad_ptr_check(__func__, nad);
01035
01036     _nad_lp0(nad,elem);
01037     *len = nad->ccur - ixml;
01038     *xml = nad->cdata + ixml;
01039 }

jabberd 1.x provided public XML storage of iq-query namespaces like 
"storage:client:something". What kind of

server storage is recommended for jabberd2?

some datas are stored in the DB, but you can store all that you want by using the nar_pirint function. You can read the log files too !


hw

good luck

--
Dr. Klaus H. Wolf
bluehands GmbH & Co.mmunication KG
http://www.bluehands.de/people/hw
+49 (0721) 16108 75
--
Jabber enabled virtual presence on the web: http://www.lluna.de/
Open Source Future History: http://www.galactic-developments.com/

_______________________________________________
jdev mailing list
[EMAIL PROTECTED]
https://jabberstudio.org/mailman/listinfo/jdev



-- Remy Harel - [EMAIL PROTECTED] G.I.C.M - Distributed Systems & IT Linux Registered User #224740



_______________________________________________
jdev mailing list
[EMAIL PROTECTED]
https://jabberstudio.org/mailman/listinfo/jdev

Reply via email to