hot questions tagged 2-tier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:06:46Z http://stackoverflow.com/feeds/tag?tagnames=2-tier&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1244465/software-design-tier-2-application-with-clientdataset-and-sockets 1 Software Design: Tier 2 Application with ClientDataSet and Sockets pr0wl 2009-08-07T12:31:58Z 2009-08-07T16:02:44Z <p>I have the task to create a tier 2 application as follows:</p> <p>MSSQL Database &lt;-> Server &lt;-> n-Client (n for many)</p> <p>The client sends data to the server. The server selects stuff from the database and then sends it back to the client. Currently I am doing that with Records and SendDataToSocket(url is below).</p> <p><strong>I want to use TDBGrid on the client using data received via sockets from the server.</strong> At the moment it goes like this:</p> <p><strong>Server:</strong> DB -> ADOQuery -> DataSetProvider -> ClientDataSet -> SaveToStream(MemoryStream)</p> <p><strong>Client:</strong> ClientDataSet -> LoadFromStream(MemoryStream) -> DataSource -> DBGrid</p> <p>I am using <a href="http://stackoverflow.com/questions/1168507/10057-wsa-exception-when-sendbuf-via-socket/1169284#1169284">SendDataToSocket(Socket: TCustomWinSocket; Data: Pointer; DataSize: Integer; Buffer: TMemoryStream): Integer;</a></p> <p><strong>So what I want to do is send the stream the clientdataset on the server side creates to the client who uses loadfromstream to read the stream. Is the SendDataToSocket viable here?</strong></p> <p><em>I hope you get what I mean.</em></p> http://stackoverflow.com/questions/887970/logging-into-peoplesoft-app-designer-in-2-tier-using-ldap-authentication 0 Logging into Peoplesoft App-Designer in 2 Tier using LDAP authentication. Alterlife 2009-05-20T13:40:27Z 2009-06-29T06:16:17Z <p>I have a database with LDAP login enabled. It works fine when logging in through the PIA or when logging into app-designer through the application server.</p> <p>I need to make app-designer allow me to login with 2-tier mode using LDAP authentication. Is this possible without customization?</p> http://stackoverflow.com/questions/487705/would-2-tier-be-a-valid-choice-for-this-scenario 0 Would 2 tier be a valid choice for this scenario kjack 2009-01-28T14:00:59Z 2009-02-07T20:41:53Z <p>Would 2 tier be a valid choice for this scenario:</p> <ol> <li>sql server database</li> <li>the business would never require more than a couple of hundred simultaneous connections to the shared database over a LAN</li> <li>the fact that (I believe) it is a lot less effort to develop a 2 tier<br /> application</li> <li>Client program updates automated over the LAN</li> </ol>