> I just wonder if there is a better way than store to database and select > from database. Something that could bypass the database.
Don't wonder too soon... it's called premature optimization. Keep it simple, build the simplest thing that could work and if necessary, keep in mind while doing it that the technical solution might change. > Also do you have any ideas what is the best way to implement server > application? So far I thought of CGI or basic deamon app. Not really sure > which is better. You could implement server with plain java in the same servlet container as wicket even.. depend's on your requirements, really. ** Martin > Martin Makundi wrote / napísal(a): >> >> You could use SQL database / or other "storage" to store data which is >> readable by wicket app. Could that work? >> >> ** >> Martin >> >> 2009/11/25 Tomas Mihok <[email protected]>: >> >>> >>> Hello, >>> >>> we are currently desingnig a new project. It is a complex network >>> monitoring >>> tool for enterprise use. >>> >>> WicketApp >>> | >>> Server >>> >>> purpouse of Server is that it takes data from clients, stores them in >>> database. Data are sent every 3 seconds. Functionality we want to add is >>> that after data are stored to database, we also want to pass them to >>> Wicket >>> application, which should process them and display them in various ways. >>> >>> My question here is: how can i solve communication Server - WicketApp. >>> Which >>> is the best way to pass data to the application (don't forget that data >>> are >>> passed every 3 seconds). Thank you for your ideas. >>> >>> tm >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [email protected] >> For additional commands, e-mail: [email protected] >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
