active questions tagged connection - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:15:48Zhttp://stackoverflow.com/feeds/tag/connectionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1744691/display-problem-with-absolutepanel-with-gwt-connector1Display Problem with absolutepanel with gwt-connectorsony2009-11-16T20:36:34Z2009-11-26T07:27:22Z
<p>Hi,</p>
<p>I am trying to use GWT-Connector in one of my classes to create the connection point to the widgets. Here is what i have:</p>
<pre><code>public class Test extends Composite{
RequiredData rd = new RequiredData();
public Test(){
TextBox t1 = new TextBox();
t1.setSize("100px", "20px");
t1.setText("Hi");
t1.setTitle("textbox");
CustomShapeRet r = new CustomShapeRet();
VerticalPanel v1 = new VerticalPanel();
v1.setVerticalAlignment(VerticalPanel.ALIGN_MIDDLE);
v1.setStyleName("vertical");
v1.add(r);
v1.add(t1);
AbsolutePanel ap = new AbsolutePanel();
ap.setSize("120px", "100px");
ap.add(v1, 0, 0);
Diagram d1 = new Diagram(ap);
Shape s = new Shape(v1);
s.showOnDiagram(d1);
initWidget(ap);
}
}
</code></pre>
<p>When i run my program it is not displaying the vertical panel properly. Here is how it looks: <a href="http://www.cs.uofs.edu/~sudhakaras2/absolute.jpg" rel="nofollow">http://www.cs.uofs.edu/~sudhakaras2/absolute,jpg</a> But when i remove the following code:</p>
<pre><code> Diagram d1 = new Diagram(ap);
Shape s = new Shape(v1);
s.showOnDiagram(d1);
</code></pre>
<p>it just works fine.</p>
<p>Question:</p>
<ol>
<li>Is my gwt-connector usage correct?</li>
<li>Do i have to add this absolute to rootpanel for connector to work?</li>
<li>Is there a way to get around this?</li>
</ol>
<p>Any suggestion will be of great help.
Thank you.</p>
http://stackoverflow.com/questions/1794520/asp-net-no-access-to-configurationmanager0asp.net no access to ConfigurationManagerGrayson Mitchell2009-11-25T03:58:44Z2009-11-25T19:28:03Z
<p>I created one asp.net mvc application using linq to sql, and in the generated code it created this:</p>
<pre><code>public ApowDataContext() :
base(global::System.Configuration.ConfigurationManager.ConnectionStrings["APOWConnectionString"].ConnectionString, mappingSource)
{
OnCreated();
}
</code></pre>
<p>Which worked well, However in my next mvc application for some reason it decided instead of looking at the web.config to look at a project resource instead... (and thus when deploying it did not work because the connectionstring was pointing to a dev server. </p>
<p>So to fix this I have edited the new projects datacontext to use the configurationmanager to grab the connectionstring BUT even after adding System.Configuration I cannot access the configuration manager (in my resources I can browse to the System.Configuration.ConfigurationManager and see the ConnectionStrings command, but in the code intellecence does not contain the ConfigurationManager under System.Configuration (but I can see a bunch of other methods, like ConfigurationSettings, for example)</p>
<p>So my questions are:</p>
<p>1\ Why has linq to sql objects decided to use a different method of looking up my connection string in my second project (i.e not use web.config).</p>
<p>2\ What is going on with the ConfigurationManager (why can't I access it?) </p>
http://stackoverflow.com/questions/1565564/asp-net-connection-closing-after-repeater-databinding0ASP.NET: Connection closing after repeater databindingDarkJaff2009-10-14T10:52:26Z2009-11-24T11:09:06Z
<p>Hi,</p>
<p>I recently changed the way the connection worked on my web app and now I'm facing something that I don't understand.</p>
<p>I hava a page that call a function called "ItemGet" in the Page_Load and it work perfectly when there is no data in the first repeater (Repeater1). When I click on a button that reload the page with different data (I know there is data in the repeater), the connection is closed automatically right after that same repeater (Repeater 1). The problem, is that there is another repeater right after (RepeaterTopTen) that need the same connection. I closed manually the connection right after the call to that function but at least I need the connection to stay open during all the function. </p>
<p>Do any of you know the reason why it closed itself and what I can do to prevent it to close at this time?</p>
<p>Here is the code :</p>
<pre><code>private void ItemsGet(string csCategory, string csTimeFrame)
{
DataSet data;
if (csCategory == null)
{
data = m_database.GetPost(Tools.GetPostLang(), Session["TimeFrame"].ToString());
Page.Title = m_database.GetTranslation(509);
}
else
{
data = m_database.GetPost(Convert.ToInt32(csCategory), Tools.GetPostLang(), Session["TimeFrame"].ToString());
Page.Title = m_database.GetTranslation(508) + m_database.GetCategoryName(Convert.ToInt32(csCategory));
}
// Populate the repeater control with the Items DataSet
PagedDataSource objPds = new PagedDataSource();
objPds.DataSource = (DataView)(data.Tables[0].DefaultView);
// Indicate that the data should be paged
objPds.AllowPaging = true;
// Set the number of items you wish to display per page
objPds.PageSize = 5;
// Set the PagedDataSource's current page
if (CurrentPage != 0)
objPds.CurrentPageIndex = CurrentPage;
else
objPds.CurrentPageIndex = 0;
lblCurrentPage.Text = m_database.GetTranslation(423) + (CurrentPage + 1).ToString() + m_database.GetTranslation(422) + objPds.PageCount.ToString();
// Disable Prev or Next buttons if necessary
btnPrev.Enabled = !objPds.IsFirstPage;
btnNext.Enabled = !objPds.IsLastPage;
Repeater1.DataSource = objPds;
Repeater1.DataBind();
DataSet dataTopTen = m_database.GetTopTenUser();
RepeaterTopTen.DataSource = dataTopTen;
RepeaterTopTen.DataBind();
}
</code></pre>
<p>Thanks a lot!</p>
<p>DarkJaff</p>
http://stackoverflow.com/questions/1778741/read-function-in-socket-programming-in-c0read() function in socket programming in cSjB2009-11-22T13:48:01Z2009-11-22T15:47:07Z
<p>I use this code for reading from socket :</p>
<pre><code>int n ;
char buffer[256];
n = read(newsockfd, buffer, 255);
if (n < 0)
{
error("ERROR reading from socket");
}
</code></pre>
<p>if the data that must be read bigger than 255 byte (for example 1000) which change must be occured ?</p>
<p>I know change <code>char buffer[1000]</code>, I need different solution . </p>
http://stackoverflow.com/questions/1771757/difference-b-w-connecting-to-sql-server-from-asp-net-and-desktop-application-in0Difference b/w connecting to SQL Server from ASP.net and Desktop application. In terms of CAL?Muhammad Kashif Nadeem2009-11-20T16:50:10Z2009-11-21T19:06:47Z
<p>-What is difference between connection to SQL Server from ASP.net and Desktop application?</p>
<ul>
<li><p>Why purchasing a Client Access License (CAL) for every device that accesses your server is not needed in web?</p></li>
<li><p>If I have a CAL for 10 devices and I need one more device to connect to SQL Server, can I do this using Web service?</p></li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/1775223/which-scenario-in-http-transaction-is-occurred0which scenario in http transaction is occurred ?SjB2009-11-21T11:23:52Z2009-11-21T12:44:18Z
<p>In http transaction for request and response which scenario is occurred ?</p>
<ol>
<li>client (web browser) open connection and send it's request and connection open (keep alive) until server accept and answer then close connection ?</li>
<li>client (web browser) open connection and send it's request then connection is closed and server accept and answer and reconnect and send response ?</li>
</ol>
<p>in http1.0 and http1.1 this scenario is different ? </p>
http://stackoverflow.com/questions/1439908/multiple-connection-types-for-one-designer-generated-tableadapter1Multiple Connection Types for one Designer Generated TableAdapterTim2009-09-17T16:28:28Z2009-11-20T22:00:02Z
<p>I have a Windows Forms application with a DataSet (.xsd) that is currently set to connect to a Sql Ce database. Compact Edition is being used so the users can use this application in the field without an internet connection, and then sync their data at day's end.</p>
<p>I have been given a new project to create a supplemental web interface for displaying some of the same reports as the Windows Forms application so certain users can obtain reports without installing the Windows app.</p>
<p>What I've done so far is create a new Web Project and added it to my current Solution. I have split both the reports (.rdlc) and DataSets out of the Windows Forms project into their own projects so they can be accessed by both the Windows and Web applications. So far, this is working fine.</p>
<p>Here's my dilemma:</p>
<p>As I said before, the DataSets are currently set up to connect to a local Sql Ce database file. This is correct for the Windows app, but for the Web application I would like to use these same TableAdapters and queries to connect to the Sql Server 2005 database. I have found that the designer generated, strongly-typed TableAdapter classes have a ConnectionModifier property that allows you to make the TableAdapter's Connection public. This exposes the Connection property and allows me to set it, however it is strongly-typed as a SqlCeConnection, whereas I would like to set it to a SqlConnection for my Web project.</p>
<p>I'm assuming the DataSet Designer strongly-types the Connection, Command, and DataAdapter objects based on the Provider of the ConnectionString as indicated in the app.config file. Is there any way I can use some generic provider so that the DataSet Designer will use object types that can connect to both a Sql Ce database file AND the actual Sql Server 2005 database?</p>
<p>I know that SqlCeConnection and SqlConnection both inherit from DbConnection, which implements IDbConnection. Relatively, the same goes for SqlCeCommand/SqlCommand:DbCommand:IDbCommand. It would be nice if I could just figure out a way for the designer to use the Interface types rather than the strong types, but I'm hesitant that that is possible.</p>
<p>I hope my problem and question are clear. Any help is much appreciated. Let me know if there's anything I can clarify.</p>
http://stackoverflow.com/questions/1772010/any-other-way-to-redirect-a-connection-to-custom-ip-port0Any other way to redirect a connection to custom ip/port?whathehell2009-11-20T17:22:27Z2009-11-20T17:41:55Z
<p>Hi,</p>
<p>I need to redirect a connection from a game to my custom ip/port. I know that it can be done via detours, or modifying the host file, just wondering if there is any other way?</p>
http://stackoverflow.com/questions/1770446/sql-server-single-user-mode0SQL Server single user modecfdev92009-11-20T13:33:18Z2009-11-20T13:47:38Z
<p>Im experiencing an issue with a production server. I can connect to the server from only one program at a time. Eg, when I connect from SQL Management Studio then nobody else can, and vice versa with a different user. It's like the server is in single user mode, except, it's in multi user mode.</p>
<p>Any ideas?</p>
<p>I get this error message when connecting:</p>
<pre><code>TITLE: Connect to Server
Cannot connect to myserver\ myserver.
ADDITIONAL INFORMATION:
A network-related or instance-specific error occurred while establishing
a connection to SQL Server. The server was not found or was not accessible.
Verify that the instance name is correct and that SQL Server is configured
to allow remote connections. (provider: SQL Network Interfaces,
error: 26 - Error Locating Server/Instance Specified)
(Microsoft SQL Server, Error: -1)
For help, click:
http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=-1&LinkId=20476
------------------------------
BUTTONS:
OK
------------------------------
</code></pre>
http://stackoverflow.com/questions/1437993/iphone-tcp-ip-socket-server-client-program0iPhone TCP/IP Socket Server/Client ProgramMark2009-09-17T10:35:08Z2009-11-20T11:00:06Z
<p><em>I have read a lot of questions regarding this subject on this website however they didn't quiet answer my question. If you can't be ### about my goal or background skip to the question.</em></p>
<p><strong>My Goal</strong> </p>
<p>Is to build a server that can run on Mac OS X 10.4+ and later, port it to Windows XP/Vista (no idea how to do that yet, but that's a problem for later). </p>
<p>Then let the iPhone be the client that is able to see the computer names that are running the server (through WiFi). The user of the iPhone can then select the computer name to connect to the server on that computer. </p>
<p>After that they can send simple text messages to each other. For example, the iPhone sends 'Knock Knock' and the server responds 'Who is there?'. Or a simple client: 'Ping', server responds 'Pong' will do just fine.</p>
<p><strong>Background</strong> </p>
<p>I have worked with sockets in the past, but only in Visual Basic 6 with the WINSOCKET.dll it was very easy to create a TCP/IP server.</p>
<pre><code>server.host = localhost;
server.port = 12203;
server.listen();
</code></pre>
<p>With the client I only needed to do the following to connect.</p>
<pre><code>client.connect(localhost, 12203);
</code></pre>
<p>There were some callbacks available like connect, close, dataArrival, etc. which I could use to do anything I want.</p>
<p>Perhaps for the iPhone there are libraries written for it, but is it that hard to create this simple application yourself? After doing some research I understand that I have to look in the area of CFNetwork, CFHost, CFSocket, CFStream. </p>
<p><strong>Question</strong></p>
<p>Is there anyone that could guide me to a tutorial or post the code where you have two buttons on the iPhone. [ Start Server ] and [ Connect to Server] where the first will start a TCP/IP server on a certain port and the second connects to it. </p>
<p>After a connection has been made maybe also the code to send a simple 'Ping'-message to the server after the server receives this responds with a 'Pong'-message to the client.</p>
<p>That would really be helpful. But maybe I am asking for to much here.</p>
http://stackoverflow.com/questions/1769271/c-what-is-the-correct-way-to-close-a-tcp-connection1[C#] What is the correct way to close a TCP connectionkornelijepetak2009-11-20T09:17:56Z2009-11-20T09:33:13Z
<p>I have a TcpClient object which sends some data to server, using its underlying NetworkStream.Write().
Therefor, I have:</p>
<pre><code>TcpClient server = new TcpClient(serverName, 50001);
/* ... */
NetworkStream stream = server.GetStream();
</code></pre>
<p>Now, when a button is pressed, the connection should close.
What is the right way to close the connection? The MSDN docs say that closing the TcpClient (with .Close()) does not in fact close the socket, only the TcpClient resources (that's at least the way I understood the docs).</p>
<p>So, would doing the next code correctly close the connection?</p>
<pre><code>stream.Close();
server.Close();
</code></pre>
<p>Is this enough, or should I first check (somehow) if the stream (or server) can be closed (in case the connection is half-open or something)...</p>
<p>Even more, NetworkStream.Close() MSDN docs states that it releases resources (even sockets), so maybe closing the stream would be enough, taken that I prevent using the TcpClient after that point.</p>
<p>What is the right approach?</p>
http://stackoverflow.com/questions/1759645/connection-time-zone-issue-with-jora-eclipse-plugin-1connection time zone issue with jOra eclipse pluginDoug2009-11-18T22:34:09Z2009-11-19T19:15:33Z
<p>I started using the jOra eclipse plugin. The plugin seems pretty robust and I'm hoping to stop using SQLDeveloper for 95% of my database needs. </p>
<p>Many of our tables have columns of type TIMESTAMP with LOCAL TIME ZONE. I can connect to the oracle DB using a jdbc string and the plugin seems to function very well. However, when I try to update one of these TIMESTAMP with LOCAL TIME ZONE values, I get a sql exception: java.sql.SQLException: connection session time zone was not set.</p>
<p>Does anyone know how I can set the time zone through the jdbc connection url? jOra doesn't seem to support adding custom connection properties, so the connection URL is really my only option.</p>
<p>Update: Running version 1.0.1, which I believe is the latest version.<br>
Update2: Apparently I can perform an update statement in the sql worksheet just fine, just can't use their detail browser interface to update.</p>
http://stackoverflow.com/questions/1762881/how-to-sort-out-mysql-odbc-connection-strings-stored-in-registry-as-plain-text1how to Sort out Mysql odbc connection strings stored in registry as plain text Jason2009-11-19T12:14:00Z2009-11-19T12:47:20Z
<p>Mysql odbc connection string is stored in the windows registry as plain text. So someone can find it and view my database. </p>
<p>How can I sort out this security problem.</p>
<p>thanks </p>
http://stackoverflow.com/questions/1727519/help-socket-programming0Help Socket Programming Amit Battan2009-11-13T06:35:31Z2009-11-19T04:30:52Z
<p>Hi All</p>
<p>In my application I fetching the updated data in every 25 second…
but some time my application crashes while fetching the updated data..
to resolve this we are planning to use socket connection for live updates</p>
<p>I am tried to find any sample application for socket connection or socket communication in ADC Library platform but found no any sample application related to this</p>
<p>Socket programming is new for me.
Can any body help me in socket programming
or can provide me some link related to it.</p>
<p>Thanks
Amit Battan</p>
http://stackoverflow.com/questions/1760457/finisar-sqlite-library-for-c-unsuported-file-format0Finisar SQLite library for C# Unsuported file formatEmanuel2009-11-19T02:04:33Z2009-11-19T02:04:33Z
<p>I've created a database an a table ("Mail") having 2 columns: id INTEGER, content INTEGER. In my aplication I have tested the connection and it works well.</p>
<pre><code>using Finisar.SQLite;
...
string db = "mydatabase";
SQLiteConnectionsql_con = new SQLiteConnection("Data Source=" + db + ";Version=3;New=False;Compress=True;");
sql_con.Open();
sql_con.Close();
</code></pre>
<p>After this I have alter the table "Mail" and it look like this: id INTEGER, content INTEGER, accountid INTEGER. When I tryed the connection again the next error was show: <strong>UNSUPORTED FILE FORMAT</strong>.
This mean that I can't modify any table?</p>
<p>Please make me understand.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1757439/connecting-to-a-mysql-database-with-c-express-via-odbc0Connecting to a MySQL database with C# express via ODBCChris2009-11-18T16:55:44Z2009-11-18T17:03:23Z
<p>Hi,</p>
<p>I need to connect to a MySQL database via C# express 2008. I think I got the code right apart from the connection string. I obtained this code from a forum but the connection string was for SQLExpress 2005. Can someone please help me on how can I fix this? Here is the code with the SQL Express connection string:</p>
<pre><code>//string connectionString = "Driver={SQL Native Client}; Server=localhost\\sqlexpress;" + "Database=oshahsdb;Trusted_Connection=yes;";
using (OdbcConnection odbcCon = new OdbcConnection(connectionString))
using (OdbcCommand odbcCom = new OdbcCommand("Select * FROM Product", odbcCon))
using (OdbcDataAdapter odbcDA = new OdbcDataAdapter(odbcCom))
using (DataSet ds = new DataSet())
{
odbcCon.Open();
odbcDA.Fill(ds);
this.dataGridView1.DataSource = ds.Tables[0];
}
</code></pre>
<p>I also need to add a username and password to the connection string.</p>
<p>Any help would be greatly appreciated.</p>
<p>Many thanks in advance.</p>
<p>Chris</p>
http://stackoverflow.com/questions/1756977/how-to-specify-a-basedn-when-connecting-to-ldap-via-python0How to specify a baseDN when connecting to LDAP via python?asmaier2009-11-18T15:54:48Z2009-11-18T16:06:06Z
<p>I want to connect to a ldap server with python-ldap using a specific baseDN. </p>
<pre><code>import ldap
baseDN="ou=unit,o=org.c=xx" # doesn't work
#baseDN="" # works
host="ldaps://test.org.xx:636"
userDN="cn=proxyhlrb,ou=services,o=org,c=xx"
passwd="secret"
server=ldap.initialize(host+"/"+baseDN)
server.bind_s(userDN,passwd,ldap.AUTH_SIMPLE)
</code></pre>
<p>What is wrong here? According to the documentation the argument of ldap.initialize must be a valid LDAP URL according to RFC4516 and therefore using a host+baseDN should work. Is there another way to specify a baseDN in python-ldap?</p>
http://stackoverflow.com/questions/1755170/setting-up-tomcat-ssl-failed-cannot-connect-to-ssl-channel0Setting up tomcat + ssl failed.. cannot connect to SSL channel?futureelite72009-11-18T10:49:16Z2009-11-18T11:14:53Z
<p>Hi,</p>
<p>I'm trying to get Tomcat 6.0.20 working with SSL authentication. I used keytool to create a new certificate, put it into my user dir, and set the tomcat authentication to this (server.xml):</p>
<pre><code> (Omitted)
-->
<Server port="8005" shutdown="SHUTDOWN">
<!--APR library loader. Documentation at /docs/apr.html -->
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" SSLRandomSeed="builtin" />
<!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
<Listener className="org.apache.catalina.core.JasperListener" />
<!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
<Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<!-- Global JNDI resources
Documentation at /docs/jndi-resources-howto.html
-->
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<!-- A "Service" is a collection of one or more "Connectors" that share
a single "Container" Note: A "Service" is not itself a "Container",
so you may not define subcomponents such as "Valves" at this level.
Documentation at /docs/config/service.html
-->
<Service name="Catalina">
<!--The connectors can use a shared executor, you can define one or more named thread pools-->
<!--
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
maxThreads="150" minSpareThreads="4"/>
-->
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080
-->
<Connector port="9090" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="9091" />
<!-- A "Connector" using the shared thread pool-->
<!--
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
-->
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation -->
<Connector port="9091" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
keystoreFile="/home/media/.keystore"
keystorePass="123456"
clientAuth="false" sslProtocol="TLS" />
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="8009" protocol="AJP/1.3" redirectPort="9091" />
<!-- An Engine represents the entry point (within Catalina) that processes
every request. The Engine implementation for Tomcat stand alone
analyzes the HTTP headers included with the request, and passes them
on to the appropriate Host (virtual host).
Documentation at /docs/config/engine.html -->
<!-- You should set jvmRoute to support load-balancing via AJP ie :
<Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
-->
<Engine name="Catalina" defaultHost="localhost">
<!--For clustering, please take a look at documentation at:
/docs/cluster-howto.html (simple how to)
/docs/config/cluster.html (reference documentation) -->
<!--
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
-->
<!-- The request dumper valve dumps useful debugging information about
the request and response data received and sent by Tomcat.
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.valves.RequestDumperValve"/>
-->
<!-- This Realm uses the UserDatabase configured in the global JNDI
resources under the key "UserDatabase". Any edits
that are performed against this UserDatabase are immediately
available for use by the Realm. -->
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<!-- Define the default virtual host
Note: XML Schema validation will not work with Xerces 2.2.
-->
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
-->
</Host>
</Engine>
</Service>
</Server>
</code></pre>
<p>However, whist connection thru http is fine, whenever I try to connect through port 9091 (https) I always get the message "the connection was interrupted". I never got a certificate or anything, though there was no errors in catalina.out</p>
<p>What could be wrong. Must I generate a OpenSSL key pair and import it in addition to creating and specifying a keystore?</p>
http://stackoverflow.com/questions/1754277/connection-refused-to-s3-storage0Connection refused to s3 storageAditya2009-11-18T07:49:52Z2009-11-18T08:05:02Z
<p>Hello everybody,</p>
<p>I m trying to upload a file through attachment fu to amazon s3 storage using the following code :-</p>
<pre><code>has_attachment :storage => :s3,
:content_type =>
['audio/mp3','audio/flac','audio/wav'],
:path_prefix => '#####',
:output_path => '######',
:processor => :none
</code></pre>
<p>But get the following error:-</p>
<p>Connection refused - connect(2)</p>
<pre><code>Application Trace | Framework Trace | Full Trace
/usr/lib/ruby/1.8/net/http.rb:560:in `initialize'
/usr/lib/ruby/1.8/net/http.rb:560:in `open'
/usr/lib/ruby/1.8/net/http.rb:560:in `connect'
/usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
/usr/lib/ruby/1.8/timeout.rb:93:in `timeout'
/usr/lib/ruby/1.8/net/http.rb:560:in `connect'
/usr/lib/ruby/1.8/net/http.rb:553:in `do_start'
/usr/lib/ruby/1.8/net/http.rb:542:in `start'
vendor/plugins/aws-s3/lib/aws/s3/connection.rb:52:in `request'
vendor/plugins/aws-s3/lib/aws/s3/base.rb:69:in `request'
vendor/plugins/aws-s3/lib/aws/s3/base.rb:88:in `put'
vendor/plugins/aws-s3/lib/aws/s3/object.rb:241:in `store'
vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb:294:in `save_to_storage'
vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb:369:in `after_process_attachment'
vendor/rails/activerecord/lib/active_record/callbacks.rb:307:in `send'
vendor/rails/activerecord/lib/active_record/callbacks.rb:307:in `callback'
vendor/rails/activerecord/lib/active_record/callbacks.rb:304:in `each'
vendor/rails/activerecord/lib/active_record/callbacks.rb:304:in `callback'
vendor/rails/activerecord/lib/active_record/callbacks.rb:214:in `create_or_update'
vendor/rails/activerecord/lib/active_record/base.rb:1973:in `save_without_validation'
vendor/rails/activerecord/lib/active_record/validations.rb:927:in `save_without_transactions'
vendor/rails/activerecord/lib/active_record/transactions.rb:108:in `save'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction'
vendor/rails/activerecord/lib/active_record/transactions.rb:80:in `transaction'
vendor/rails/activerecord/lib/active_record/transactions.rb:100:in `transaction'
vendor/rails/activerecord/lib/active_record/transactions.rb:108:in `save'
vendor/rails/activerecord/lib/active_record/transactions.rb:120:in `rollback_active_record_state!'
vendor/rails/activerecord/lib/active_record/transactions.rb:108:in `save'
vendor/rails/activerecord/lib/active_record/base.rb:2035:in `update_attributes'
app/models/track_file.rb:45:in `upload'
app/controllers/media_controller.rb:202:in `track_update'
app/controllers/application.rb:157:in `access_session_value_in_models'
</code></pre>
http://stackoverflow.com/questions/397815/how-do-i-invoke-ajax-onclick-from-provider-web-part-to-consumer-web-part0How do I Invoke Ajax OnClick from Provider Web Part to Consumer Web PartRob2008-12-29T14:26:43Z2009-11-18T01:00:01Z
<p>I am attempting to manage an ajax connection by calling a button onclick method on a separate web part in order to force the partial postback on the consumer. </p>
<p>Web part A (Provider) invokes the method on Web Part B (Consumer)</p>
<p>Web Part A</p>
<p>Type t = myButton.GetType();
object[] p = new object[1];
p[0] = EventArgs.Empty;
MethodInfo m = t.GetMethod("OnClick", BindingFlags.NonPublic | BindingFlags.Instance);
m.Invoke(myButton, p);</p>
<p>Web Part B</p>
<p>public void btnHidden_Click(object sender, EventArgs e)
{
Label1.Text = "Hidden Button: " + DateTime.Now.ToString();
}</p>
<p>When I use reflection, I get the correct information on the HiddenButton. However, I cannot invoke the "OnClick" event. The btnHidden_Click does not execute. It works fine when I invoke from WebPart B to WebPart B, but not from a different webpart.</p>
<p>There doesn't appear to be too much information regarding this behavior. Any suggestions?</p>
<p>Thanks.</p>
<p>Rob</p>
http://stackoverflow.com/questions/1361615/weblogic-context-lookup-error-java-rmi-unmarshalexception-error-unmarshalling0weblogic context lookup error : java.rmi.UnmarshalException: error unmarshalling argumentsShailendher2009-09-01T10:03:30Z2009-11-17T20:27:38Z
<p>Hi,</p>
<p>We are facing an issue in our production env. We have searched the net high and low and we were not able to come up with any answers.
This error(stacktrace below) occurs when an ejb lookup is made from managed server 1 to manager server 2. Virtual ip is used for the lookup. It occurs intermittently and at random intervals. We are not able to identify any pattern and If the ejb call is attempted two or three times, it gets through successfully.</p>
<p>Env details :
server : weblogic 10.0 MP1 running on java 1.5
os : solaris</p>
<p>Pls revert if any other details are required.</p>
<p>Source used for lookup :</p>
<pre><code>private TreControlRemote getController() throws Exception {
Context context = null;
Properties p = new Properties();
TreControlHome treHome = null;
TreControlRemote remote = null;
ConfigurationLoader lAppLoader = null;
try {
mLog.debug("Entering");
lAppLoader = PropertiesFileLoader.getInstance("context.properties");
p.put(Context.INITIAL_CONTEXT_FACTORY, lAppLoader.getValue("INITIAL_CONTEXT_FACTORY"));
p.put(Context.PROVIDER_URL, lAppLoader.getValue("PROVIDER_URL"));
context = new InitialContext(p);
mLog.debug("context : " + context.getEnvironment());
remote = null;
treHome = (TreControlHome) context.lookup("CONTROL");
mLog.debug("Object --->>>>" + treHome);
remote = (TreControlRemote) treHome.create();
mLog.debug("Leaving");
} catch (Exception ex) {
mLog.fatal("Exception while getting remote", ex);
ex.printStackTrace();
throw ex;
} finally {
lAppLoader = null;
}
return remote;
}
</code></pre>
<p>The url is a virtual ip pointing to managed server 2 and it contains a ejb with jndi "CONTROL". The problem is that it successful on certain occassions and fails randomly with the error:</p>
<p>stack trace of the error :</p>
<p>*javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.io.StreamCorruptedException]
at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:74)
at weblogic.jndi.internal.WLContextImpl.translateException(WLContextImpl.java:426)
at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:382)
at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:367)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
```````````````````````````````````````````````````````````````````
Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.io.StreamCorruptedException
at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:221)
at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
at weblogic.jndi.internal.ServerNamingNode_1001_WLStub.lookup(Unknown Source)
at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:379)
... 33 more
Caused by: java.io.StreamCorruptedException
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1332)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:191)
at weblogic.jndi.internal.RootNamingNode_WLSkel.invoke(Unknown Source)
at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:224)
at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:479)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
at weblogic.security.service.SecurityManager.runAs(Unknown Source)
at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:475)
at weblogic.rmi.internal.BasicServerRef.access$300(BasicServerRef.java:59)
at weblogic.rmi.internal.BasicServerRef$BasicExecuteRequest.run(BasicServerRef.java:1016)
... 2 more*</p>
<p>Obtained the below mentioned stacktrace from the weblogic log. Could this error be related to our problem mentioned above?</p>
<p><em>#### <> <1251162664181> </em>.net:10240,pkssv049.<em>.net:10241,pkssv050.<strong></em>.net:10240,pkssv050.*</strong>.net:10241:LIQP1_LMSDomain:M1AP3
java.io.IOException: The connection manager to ConnectionManager for: 'weblogic.rjvm.RJVMImpl@189ed0e - id: '5433424963141690658S:169.93.73.0:10040,10040,-1,-1,-1,-1,-1:pkssv049.<strong><em>.net:10240,pkssv049.</em></strong>.net:10241,pkssv050.<strong><em>.net:10240,pkssv050.</em></strong>.net:10241:LIQP1_LMSDomain:M1AP3' connect time: 'Mon Aug 24 20:24:02 BST 2009'' has already been shut down.
java.io.IOException: The connection manager to ConnectionManager for: 'weblogic.rjvm.RJVMImpl@189ed0e - id: '5433424963141690658S:169.93.73.0:10040,10040,-1,-1,-1,-1,-1:pkssv049.<strong><em>.net:10240,pkssv049.</em></strong>.net:10241,pkssv050.<strong><em>.net:10240,pkssv050.</em></strong>.net:10241:LIQP1_LMSDomain:M1AP3' connect time: 'Mon Aug 24 20:24:02 BST 2009'' has already been shut down
at weblogic.rjvm.ConnectionManager.getOutputStream(ConnectionManager.java:1686)
at weblogic.rjvm.ConnectionManager.createHeartbeatMsg(ConnectionManager.java:1629)
at weblogic.rjvm.ConnectionManager.sendHeartbeatMsg(ConnectionManager.java:607)
at weblogic.rjvm.RJVMImpl$HeartbeatChecker.timerExpired(RJVMImpl.java:1540)
at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:464)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)*</p>
<p>Any help would be greatly appreciated.</p>
<p>Here is some additional info..</p>
<p>Is the problem intermittent, or does reproduce every single time? If the problem is intermittent, do you know what conditions it occurs under?
<em>It occurs intermittently and we are not able to observe any pattern.</em></p>
<p>Are there any other errors/warnings logged either on the local server or on the remote server?
<em>We see a lot of connection refused errors in the weblogic log</em></p>
<p>Are both the managed servers in the same domain?
<em>Yes</em></p>
http://stackoverflow.com/questions/1743223/coverageinfo-getcoveragestatus-vs-coverageinfo-iscoveragesufficient-are-they0CoverageInfo.getCoverageStatus() vs CoverageInfo.isCoverageSufficient(), are they the same?AtariPete2009-11-16T16:20:03Z2009-11-17T14:35:43Z
<p>In trying to determing a if a specific connection is supported, I'm cofused about the difference between <em>CoverageInfo.getCoverageStatus()</em> and <em>CoverageInfo.isCoverageSufficient()</em>. For example:</p>
<pre><code>// check mds with getCoverageStatus() and bitwise check
boolean hasMdsCoverage1 = (CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS;
// check mds with isCoverageSufficient()
boolean hasMdsCoverage2 = CoverageInfo.isCoverageSufficient(CoverageInfo.COVERAGE_MDS);
</code></pre>
<p>Both <em>hasMdsCoverage1</em> and <em>hasMdsCoverage2</em> seem to return the same result, but why two different approaches? Is there ever a case where they'll return a different result?</p>
<p>Ideally I'd like to use <em>CoverageInfo.isCoverageSufficent()</em> since this looks cleaner in code, but before I do so I want to make sure I'm not missing out on anything that <em>getCoverageStatus()</em> would provide. </p>
<p>NOTE: I'm using this to check for valid connections via BIS, MDS, WAP and WAP2 protocols.</p>
http://stackoverflow.com/questions/1748582/java-windows-mobile-application-taking-too-long-to-reestablish-network-connectivi1Java Windows Mobile Application Taking Too Long To Reestablish Network ConnectivityJon Hopkins2009-11-17T12:35:56Z2009-11-17T12:35:56Z
<p>We have a Java application running on the JBed JVM on Windows mobile 6.1.</p>
<p>When it loses connectivity the application is taking a long time (8 - 10 minutes) to re-establish VPN network connectivity, despite the fact that other applications can see the VPN far sooner (roughly 2 - 3 minutes).</p>
<p>From our application logs we can see that two network calls (each independent of the other) - one to establish the IP address of the device on the VPN (InetAddress local = InetAddress.getLocalHost), one to open a socket (connection = new Socket(IP address of host, port);)are failing repeatedly during both the period where the connection is completely absent and once the connection has been restored to other applications but both calls seem to regain access to the network at the same time (the first successful attempt to open a socket happens the first time it is attempted after a successful IP address is obtained).</p>
<p>Some other things we've learned / know:</p>
<p>1) The device IP address is not used in opening the socket - they are separate routines running in separate threads. My feeling is that the failure of one does not cause the other, rather they both succeed / fail based on the same underlying reason.</p>
<p>2) The call to establish the IP address isn't failing during this period, it's just not seeing the VPN connection - the cellular network connection IP address is visible. When I refer to success/failure it's not an exception being thrown, it's about it seeing a network connection in the right IP range.</p>
<p>3) If you kill the process and restart the application it connects fine, but there's no real code running on start up which could account for that - just the same two calls.</p>
<p>4) The attempt to open the socket uses the IP address of the server to make the connection (as opposed to a name it would need to resolve).</p>
<p>5) Something called Checkpoint is being used to manage the network connectivity - not idea if it may be contributing.</p>
<p>I'm thinking that there could be some sort of caching / pooling going on at the JVM level which is causing this.</p>
<p>Does anyone have any thoughts on what might be contributing and anything we could try to prevent it? </p>
<p>Oh, and it's Java 1.2.</p>
http://stackoverflow.com/questions/1740663/juggernaut-like-engine-for-net0Juggernaut-like engine for .net?Zip Gun Jim2009-11-16T07:39:16Z2009-11-16T07:47:52Z
<p>Does anyone know of an engine for .net that provides realtime server connection like <a href="http://juggernaut.rubyforge.org/" rel="nofollow">Juggernaut</a> for Rails? Preferably open source.</p>
http://stackoverflow.com/questions/1735224/cant-connect-to-mysql-database-from-tomcat0Can't connect to MySQL database from tomcatfmsf2009-11-14T19:03:02Z2009-11-16T04:46:58Z
<p>Hey, I'm getting this error:</p>
<pre><code>com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:
Could not create connection to database server.
Attempted reconnect 3 times. Giving up.
</code></pre>
<p>I'm just trying to connect to the database. With this code</p>
<pre><code><%@page import="java.sql.*"%>
<%
try{
// Class.forName("com.mysql.jdbc.Driver");
Class.forName("org.gjt.mm.mysql.Driver");
out.println("found");
} catch (ClassNotFoundException ex){
out.println("Erro<br/>");
out.println(ex.toString());
} catch (Exception e){
out.println(e.toString());
}
Connection ocon;
try{
ocon = DriverManager.getConnection("jdbc:mysql://localhost/cpjcoimbra?autoReconnect=true", "*****", "*****"); //password matches
out.print("connected");
} catch (Exception e){
out.println(e.toString()+"<br/>");
}
%>
</code></pre>
<p>It does find the driver but I'm getting that error when i try to connect to the database.</p>
<p>I have this permission on catalina 50.local.policy</p>
<pre><code>grant codeBase "file:/var/lib/tomcat6/WEB-INF/lib/-" {
permission java.security.AllPermission;
};
</code></pre>
<p>Anyone has any idea why that error shows up?</p>
<p>Edit:
service mysql status gives this:</p>
<pre><code> * /usr/bin/mysqladmin Ver 8.42 Distrib 5.1.37, for debian-linux-gnu on i486
Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license
Server version 5.1.37-1ubuntu5
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /var/run/mysqld/mysqld.sock
Uptime: 1 hour 32 min 21 sec
Threads: 1 Questions: 103 Slow queries: 0 Opens: 171 Flush tables: 1 Open tables: 41 Queries per second avg: 0.18
</code></pre>
http://stackoverflow.com/questions/1724209/network-connection-blackberry0Network Connection BlackberryAfzal2009-11-12T18:02:47Z2009-11-14T05:32:22Z
<p>How to get the best possible http connection in an blackberry application? I use the Network Diagnostic tool provided by RIM but most of the time it fails to find any connection while other applications are connected to the internet without a problem.</p>
<p>Is there any other way to find out how to connect to internet?</p>
http://stackoverflow.com/questions/1728769/hibernate-causing-too-many-timewait-connections0Hibernate causing too many time_wait connectionsBeginner2009-11-13T11:53:47Z2009-11-13T12:33:23Z
<p>I am using Hibernate 3 and I am facing a problem related to connections being closed. </p>
<p>I am using c3p0-0.9.1.2.jar and I checked onto the connections to database server opened by Hibernate, I found that there are established connections which are 5 in number; at some TCP ports of server (see below log).</p>
<p>But these established connections keeps on changing the TCP Ports on which they are established and thus releasing the earlier ports used by them, making these ports in TIME_WAIT state (rather than closing them).</p>
<p>This keeps on going and make the count in hundreds; for connections in TIME_WAIT condition. </p>
<p>I am not sure what is happening and why the ports are switching from Established to TIME_WAIT and none of the earlier ones are closing.</p>
<p>Below is the sample taken by running NETSTAT -ano|find "x.9" where x.9 is database server IP.</p>
<pre><code>TCP x.124.x.66:4379 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4381 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4382 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4383 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4384 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4385 x.124.x.9:1433 TIME_WAIT 0
TCP x.124.x.66:4386 x.124.x.9:1433 ESTABLISHED 5916
TCP x.124.x.66:4387 x.124.x.9:1433 ESTABLISHED 5916
TCP x.124.x.66:4388 x.124.x.9:1433 ESTABLISHED 5916
TCP x.124.x.66:4389 x.124.x.9:1433 ESTABLISHED 5916
TCP x.124.x.66:4390 x.124.x.9:1433 ESTABLISHED 5916
</code></pre>
<p>Hibernate.properties file used by me.</p>
<pre><code>hibernate.c3p0.min_size=5
hibernate.c3p0.timeout=2
hibernate.c3p0.max_size=50
hibernate.c3p0.idle_test_period=10000
hibernate.connection.release_mode=auto
</code></pre>
<p>Thanks for help.</p>
http://stackoverflow.com/questions/1727333/getting-ioexception-peer-refused-the-connection-blackberry0 getting IOException : Peer refused the connection (BlackBerry)tek32009-11-13T05:38:29Z2009-11-13T08:16:55Z
<p>Hi all...</p>
<p>Can anyone tell me why i am getting this IOException:smileytongue:eer refused the connection??? I was testing my application yesterday it was working fine..but today when i opened it i cannot log int my application...i cannot login from the simulator.</p>
<p>.i hve tried appending ";deviceside=true" , ";deviceside=false" and removing it from the url..but nothing seems to work even on simulator...Iwas able to login until yesterday...no change in the code has been made...</p>
<p>The login url is Https url..but i dont think that may be the issue since i was able to access it till yesterdey...</p>
<p>Can any one help..??</p>
http://stackoverflow.com/questions/1675805/persistence-createentitymanagerfactory-in-j2ee-ignores-jta-source0Persistence.createEntityManagerFactory() in J2EE ignores jta sourceDraemon2009-11-04T18:42:04Z2009-11-13T07:11:03Z
<p>I have a perfectly working application client deployed to a glassfish v2 server inside an ear with some EJBs, Entities, etc. I'm using eclipselink.</p>
<p>Currently I have in my persistence.xml:</p>
<pre><code><persistence-unit name="mysource">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/mysource</jta-data-source>
<class>entities.one</class>
<class>entities.two</class>
...
<properties>
<property name="eclipselink.target-server" value="SunAS9"/>
<property name="eclipselink.logging.level" value="FINE"/>
</properties>
</persistence-unit>
</code></pre>
<p>And this works fine when I inject the <code>EntityManager</code> into the EJB:</p>
<pre><code>@PersistenceContext(unitName="mysource")
private EntityManager em;
</code></pre>
<p>Now I have a requirement to dynamically switch persistence units/databases.
I figure I can get an <code>EntityManager</code> programatically:</p>
<pre><code>em = Persistence.createEntityManagerFactory("mysource").createEntityManager();
</code></pre>
<p>but I get the following error:</p>
<pre><code>Unable to acquire a connection from driver [null], user [null] and URL [null]
</code></pre>
<p>Even "overriding" javax.persistence.jtaDataSource" to "jdbc/mysource" in a <code>Map</code> and calling <code>createEntityManagerFactory("mysource", map)</code> doesn't make a difference.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1726186/https-requests-and-multi-threading1HTTPS requests and multi-threadingnotnoop2009-11-12T23:38:57Z2009-11-13T01:48:32Z
<p>Is Java's <a href="http://java.sun.com/javase/6/docs/api/java/net/URL.html" rel="nofollow"><code>URL</code></a> class a thread-safe, in particular <a href="http://java.sun.com/javase/6/docs/api/java/net/URL.html#openConnection%28)" rel="nofollow"><code>URL.openConnection()</code></a>?</p>
<p>In my application, I make tens of concurrent HTTPS connections a second to the same URL, and I would like to maximize object reuse. Yet, it's not clear from the documentation what can be reused.</p>
<p>EDIT: I'm open to using a different library if needed.</p>