bruno-pere Posted June 21, 2012 Posted June 21, 2012 Hi! Is anyone using unigui in production? Comments please. Thx! Bruno Quote
bruno-pere Posted June 21, 2012 Author Posted June 21, 2012 LOL But, can you tell more details?? - How many clients are using (total and concurrent) - Uptime (does it need constant restarts?) - What kind of project - Isapi, Standalone or service - what database are you using and component for connection (ado, dbexpress) thank you! Bruno Quote
zilav Posted June 22, 2012 Posted June 22, 2012 - How many clients are using (total and concurrent) - Uptime (does it need constant restarts?) - What kind of project - Isapi, Standalone or service - what database are you using and component for connection (ado, dbexpress) - dunno, up to 100 concurrent. I think it can easily handle 1000 or even more, because I don't see any kind of stress on server at all. - unless your app leaks memory no restarts are needed - usual business CRUD apps - isapi on windows server 2003. Frankly speaking, standalone is purely for development, when deploying isapi is THE only real option. You want that security and management ISS provides, and allows combining unigui with other isapi modules (Delphi's WebBroker), html, php, node.js, etc. - MSSQL 2008, built-in ADO 1 Quote
ttamturk Posted June 22, 2012 Posted June 22, 2012 I use unigui as 1. Internal task list & Calendar Management my stuff. (<10) 2. Customer Relation Management, bug tracer and analyse (<100) no problem here. It runs like a porsche Tugrul 1 Quote
bruno-pere Posted June 22, 2012 Author Posted June 22, 2012 Thx Tugrul! Nice! As ISAPI? Bruno 1 Quote
ttamturk Posted June 22, 2012 Posted June 22, 2012 Windows2008 Server 64 bit MsSQL 2008 R2 Enterprise ISAPI 7.5 Quote
Administrators Farshad Mohajeri Posted June 22, 2012 Administrators Posted June 22, 2012 http://forums.unigui.com/index.php?/topic/2100-sebaot-web/page__view__findpost__p__9340 Quote
lema Posted June 23, 2012 Posted June 23, 2012 It is a simple web frontend for a technical bulletins database (automotive). It took me 2-3 hours to develop it. MySQL , MyDAC. No problems with ~100 users. PS. I removed logos , captions , etc , because I need the client's permission. 2 Quote
lema Posted June 23, 2012 Posted June 23, 2012 Here is another simple application (automotive field). Just one form showing DTC (Diagnostic Trouble Codes). MySQL , MyDAC. Running 24/7 , ~100 users , No problems. PS. I removed logos , captions , etc , because I need the client's permission. 1 Quote
ttamturk Posted June 23, 2012 Posted June 23, 2012 Actually UniGui helps to Delphi about a long time desired Bussines Web Applications. (After very bad choices like Intraweb, even firemonkey!) UniGui simply does the job.. Developer instantly adapts codes to Web... No need to invent the wheel again.. Not underestimate this product. FMSoft must be supported very well for Delphi's good fortune also... Best Regards, Tugrul 1 Quote
bruno-pere Posted June 25, 2012 Author Posted June 25, 2012 Thanks!! A lot of samples already in production. No more doubt that Unigui is exactly what I was looking for. Web with no pain. Quote
asapltda Posted July 4, 2012 Posted July 4, 2012 - Warehouse, orders and billing control. - About 70 forms Hello I need to start a transaction with firebird but, by stating in the data module database.startransaction generate an error saying that there is no active connection to the database, could help explain how to do thanks Quote
adragan Posted July 4, 2012 Posted July 4, 2012 If you use IBX then try this way : if Transaction.InTransaction then Transaction.Commit; Transaction.StartTransaction; ..... do something ..... if Transaction.InTransaction then try Transaction.Commit; except on e:Exception do begin Transaction.RollBack; ShowMessage("some rollback message" + e.message ); end; end; where Transaction is the TIBTransaction object attached to then query or whatever you use in the "do something" code. ADO openes the transaction by itself but to be on the safe side you need to do at the end if Connection.InTransaction then try Connection.CommitTrans; except on e:Exception do begin Connection.RollbackTrans; ShowMessage('Some error message '+e.Message); end; end; For Zeos components it's almost the same as for ADO; DBX has a much more complicated way of handelig transaction. 1 Quote
rencarnacion Posted August 28, 2012 Posted August 28, 2012 - Warehouse, orders and billing control. - About 70 forms - Windows 2008 R2 64Bits Foundation - UniGui ISAPI running under IIS 7 - MySql Database (But also support PostgreSql) - UniDac Components to connect to database - Printing reports with FastReport - Máx. 20 simultaneous users (is a small company, so few users are connected at the same time, but it should support much more users connected) Hi, Could You send and Example how to print a report in Unigui because the documentation there isn't any information about it thanks Quote
sokel Posted November 21, 2014 Posted November 21, 2014 Please share with me how to use fastreport in unigui! Thanks Sokely Quote
sokel Posted November 21, 2014 Posted November 21, 2014 Please share with me how to use fastreport in unigui! Thanks Sokel Quote
Harry Rogers Posted November 21, 2014 Posted November 21, 2014 simple PDF library app, 250 users across 100+ locations on a nationwide WAN, 24/7 uptime (3 or 4 restarts in 2 years - not related to the uniGui) Advantage Database Standalone Chrome and IE clients No issues at all. 3 Quote
Rafael Sifontes Posted November 21, 2014 Posted November 21, 2014 Hi Sokel, Use it as you use in not unigui apps. Im using and its working ok... Design your report as usual and when printing use somthing like this: frxRepRelCobroxAgencia.PrepareReport; //prepare your report frxPDFExport1.FileName:= 'myreport.pdf'; frxPDFExport1.ShowDialog := false; frxRepRelCobroxAgencia.Export(Dm_Reportes.frxPDFExport1); UniSession.SendFile(Dm_Reportes.frxPDFExport1.FileName); // open pdf in browser (depends on browser settings) for this you need to drop in your form a fastreport PDFExport component. 1 Quote
sokel Posted December 31, 2014 Posted December 31, 2014 Fjtrooper can you share your codes for printing fastreport? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.