User webclimber - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:40:52Zhttp://stackoverflow.com/feeds/user/23238http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550242/should-we-always-reproduce-the-bugs-to-verify-the-fixes10Should we always reproduce the bugs to verify the fixes ?webclimber2009-02-15T03:18:16Z2009-11-28T20:40:39Z
<p>From time to time we get bugs on production that can be fixed by for example by changing a configuration, disabling some part of the logic, and such.</p>
<p>I've argued with my manager that we should reproduce the bugs locally to ensure the fix works, and more importantly so developers and QA can include the check for these cases as part of the regular release.</p>
<p>My manager thinks is a waste of time, as the solution works so there is no need to reproduce locally.</p>
<p>So:
Should we try to reproduce locally to verify the fixes ?
Any pointers on how to sell this point to my manager if you agree with me ?</p>
http://stackoverflow.com/questions/1141362/data-collection-with-android-via-usb2Data collection with Android via USBwebclimber2009-07-17T03:43:51Z2009-11-21T16:06:45Z
<p>What would be the best way to access the USB as a serial port on a android device (HTC Magic) ?
I am thinking about a OBD-II interface, can I do this on a startdard phone or more likely I'll need a modified firmware ?</p>
http://stackoverflow.com/questions/1627794/mysql-update-takingtoo-long-time0MySQL update taking(too) long time ....webclimber2009-10-26T22:50:25Z2009-10-27T02:22:39Z
<p>After some expected growth on our service all of the sudden some updates are taking extremely long time, these used to be pretty fast until the table reached about 2MM records, now they take about 40-60 seconds each.</p>
<pre><code>update table1 set field1=field1+1 where id=2229230;
Query OK, 0 rows affected (42.31 sec)
Rows matched: 1 Changed: 0 Warnings: 0
</code></pre>
<p>Here are the field types:</p>
<pre><code>`id` bigint(20) NOT NULL auto_increment,
`field1` int(11) default '0',
</code></pre>
<p>Result from the profiling, for context switches which is the only one that seems to have high numbers on the results:</p>
<pre><code>mysql> show profile context switches
-> ;
+----------------------+-----------+-------------------+---------------------+
| Status | Duration | Context_voluntary | Context_involuntary |
+----------------------+-----------+-------------------+---------------------+
| (initialization) | 0.000007 | 0 | 0 |
| checking permissions | 0.000009 | 0 | 0 |
| Opening tables | 0.000045 | 0 | 0 |
| System lock | 0.000009 | 0 | 0 |
| Table lock | 0.000008 | 0 | 0 |
| init | 0.000056 | 0 | 0 |
| Updating | 46.063662 | 75487 | 14658 |
| end | 2.803943 | 5851 | 857 |
| query end | 0.000054 | 0 | 0 |
| freeing items | 0.000011 | 0 | 0 |
| closing tables | 0.000008 | 0 | 0 |
| logging slow query | 0.000265 | 2 | 1 |
+----------------------+-----------+-------------------+---------------------+
12 rows in set (0.00 sec)
</code></pre>
<p>The table is about 2.5 million records, the id is the primary key, and it has one unique index on another field (not included in the update).</p>
<p>It's a innodb table.</p>
<p>any pointers on what could be the cause ? </p>
<p>Any particular variables that could help track the issue down ? </p>
<p>Is there a "explain" for updates ?</p>
<p>EDIT: Also I just noticed that the table also has a :</p>
<pre><code>`modDate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
</code></pre>
<p>Explain:</p>
<pre><code>+----+-------------+---------------+-------+---------------+---------+---------+-------+------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+---------------+-------+---------------+---------+---------+-------+------+-------+
| 1 | SIMPLE | table1 | const | PRIMARY | PRIMARY | 8 | const | 1 | |
+----+-------------+---------------+-------+---------------+---------+---------+-------+------+-------+
1 row in set (0.02 sec)
</code></pre>
http://stackoverflow.com/questions/1627794/mysql-update-takingtoo-long-time/1628446#16284460Answer by webclimber for MySQL update taking(too) long time ....webclimber2009-10-27T02:22:39Z2009-10-27T02:22:39Z<p>Ok after a few hours of tracking down this one, it seems the cause was a "duplicate index", the create table that I was doing to answer Keith, had this strange combo:</p>
<ul>
<li>a unique key on fieldx</li>
<li>a key on fieldx </li>
</ul>
<p>the second one is obviously redundant and useless, but after I dropped the key all updates went back to < 1 sec.</p>
<p>+1 to Keith and Ivan as their comments help me finally track down the issue.</p>
http://stackoverflow.com/questions/624071/writing-on-a-separate-thread-for-a-web-app1Writing on a separate thread for a web app.webclimber2009-03-08T18:38:47Z2009-10-27T02:13:32Z
<p>For one of the URLs that my clients will be calling, I want it to return as soon as possible with minimal disruption, so even if the database is down or slow, the request still returns pretty fast. </p>
<p>I still need to do some processing of the data sent, so I am thinking about having a separate "queue" that holds the data and then process in almost realtime but in a separate thread.</p>
<p>Before I go off and start writing this queue I wanted to ask if there are readily available classes/libraries to do this ?</p>
<p>This is a java web app, deployed with jboss.</p>
http://stackoverflow.com/questions/624071/writing-on-a-separate-thread-for-a-web-app/1628415#16284150Answer by webclimber for Writing on a separate thread for a web app.webclimber2009-10-27T02:13:32Z2009-10-27T02:13:32Z<p>The implementation ended up being a JMS message and a few Message Driven Beans processing the data wich has worked great and scaled pretty nice sofar.</p>
<p>I appreciate all the help and comments, specially the commonj, as well as the warnings about creating thread manually. </p>
http://stackoverflow.com/questions/1493726/mysql-calculate-an-complicated-expression/1493738#14937380Answer by webclimber for MySQL calculate an complicated expressionwebclimber2009-09-29T16:52:34Z2009-09-29T16:52:34Z<p>maybe someting like:</p>
<pre><code>if (field1 > field2, (field1 - field2)/field1, (field2 - field1) / field1)
</code></pre>
http://stackoverflow.com/questions/570309/nokia-widget-how-can-i-pass-a-startup-parameter0Nokia Widget: How can I pass a startup parameter ?webclimber2009-02-20T16:45:32Z2009-09-23T09:07:04Z
<p>We are developing a new UI for one of the products and we are exploring using the Nokia Widgets, It seems to do almost everything we need, but we need to pass an initial token to the widget on startup.</p>
<p>So far I have not found any way to do so (looking on the Nokia forums, SO and Google... :( ) so I am wondering if it is possible at all.</p>
<p>I'd like my app to start the widget with a single parameter, that's all I need.</p>
http://stackoverflow.com/questions/388192/nssound-on-the-iphone3NSSound on the iphonewebclimber2008-12-23T04:44:39Z2009-09-20T13:31:56Z
<p>I've been looking for a while how to play sound on the iphone, and I think it's something along the lines of:</p>
<pre><code>[[NSSound soundNamed:@"cat.mp3"] play];
</code></pre>
<p>But the NSSound is on the AppKit ... any suggestions ? I know there is a really simple answer to this, but today my searches are not rendering any result ...</p>
http://stackoverflow.com/questions/541613/how-to-get-started-with-symbian-s60-plattorm10How to get started with Symbian (S60 plattorm)webclimber2009-02-12T14:56:41Z2009-08-19T17:33:44Z
<p>So at my new job one of the platforms we use is S60 (Nokia phones, Symbian OS) and I am getting curious about it, as well feeling the need to help the team a bit from time to time (I actually work on the server side of things for this software).</p>
<p>So any good pointers/recommendations/tutorials and shared experiece that might put me in the right direction ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1289282/hibernate-ehcache-keep-missing-the-cache0Hibernate + EhCache, keep missing the cachewebclimber2009-08-17T17:24:35Z2009-08-17T17:47:14Z
<p>I've configure a few of my objects to be cacheable ( on the mapping file) and from what I can see for this particular object the cache is not working so well. </p>
<p>For other objects I see the hit count increasing on each iteration, but the missed count as 0, whereas for this one I see it misses every single time for the session.</p>
<pre><code>Elements in Memory: 8305
Elements on Disk: 0
Hit Count: 24915
Missed Count 8305
Put Count: 8305
</code></pre>
<p>I am looking for some pointers to what might be wrong.</p>
<ul>
<li>As background I've checked equals and hashCode implementations, and even debugging seems to be returning the correct results.</li>
<li>This particular object is used in collections for other objects, as well as a top level one.</li>
</ul>
http://stackoverflow.com/questions/1229692/configuring-ehcache-on-jboss0Configuring EhCache on JBosswebclimber2009-08-04T20:15:41Z2009-08-04T22:04:07Z
<p>Ok this is driving me crazy....</p>
<p>Server: JBoss 4.0.5 </p>
<p>I have my hibernate-service.xml where I include the:</p>
<pre><code><attribute name="CacheProviderClass">
org.hibernate.cache.EhCacheProvider
</attribute>
</code></pre>
<p>Which seems to work fine in terms of loading and getting the ehcache started, but I do see this pesky message about: </p>
<blockquote>
<p>WARNING: No configuration found.
Configuring ehcache from
ehcache-failsafe.xml found in the
classpath:
jar:file:/C:/jboss-4.0.5.GA/server/default/lib/ehcache-1.6.1.jar!/ehcache-failsafe.xml</p>
</blockquote>
<p>The final app is a ear file with has the following structure:</p>
<pre><code> META-INF/MANIFEST.MF
META-INF/application.xml
META-INF/jboss-app.xml
app-mdb.jar
app.har
app.war
</code></pre>
<p>the app.har contains the beans and the hibernate mappings and the hibernate-service.xml and the hibernate.cfg.xml and and the ehcache.xml at the root of the classes. </p>
<p>It all works just fine, MDBs and Webapp works but I have not been able to configure the ehcache and I suspect that I am either not specifying the configuration correctly or the ehcache.xml is not on the right place.</p>
http://stackoverflow.com/questions/678582/jboss-4-0-5-mdb-configuration0JBoss 4.0.5 MDB Configurationwebclimber2009-03-24T18:17:02Z2009-08-04T21:01:43Z
<p>This one is beating me, and I have not been able to figure it out ... So here it goes.
I want to add a Message Drive Bean to my app which is packaged as a .ear file</p>
<p>Following the documentation I've created a jboss.xml and a ejb-jar.xml, which I tried to put on the META-INF and the root and on the WEB-INF but I just don;t see it working (i.e. the MDB is never loaded, nor it received the messages.</p>
<p>My ear file looks like:</p>
<pre><code>META-INF/
META-INF/MANIFEST.MF
META-INF/application.xml
myapp.war
</code></pre>
http://stackoverflow.com/questions/678582/jboss-4-0-5-mdb-configuration/1229928#12299280Answer by webclimber for JBoss 4.0.5 MDB Configurationwebclimber2009-08-04T21:01:43Z2009-08-04T21:01:43Z<p>My final solution was to separate the MDB code (and supporting classes) into a separate file inside the ear (myapp-mdb.jar) And to support that with the same hibernate mappings and classes, the hibernate related files were packaged on the myapp.har.</p>
<pre><code>META-INF\MANIFEST.MF
META-INF\application.xml
META-INF\jboss-app.xml
myapp-mdb.jar
myapp.har
myapp.war
</code></pre>
<p>Just posting the answer for reference.</p>
http://stackoverflow.com/questions/1121807/to-understand-recursive-grep-in-xargs/1121822#11218221Answer by webclimber for To understand recursive grep in xargswebclimber2009-07-13T20:23:34Z2009-07-13T20:23:34Z<p>I think none
The A will try to recurse over file names (as the find is only searching for files) so it will not recurse into anything...</p>
http://stackoverflow.com/questions/1036085/sending-messages-to-a-remote-jms-topic0Sending messages to a remote JMS Topic webclimber2009-06-24T01:47:35Z2009-06-24T01:51:01Z
<p>I am writing a small utility to send JMS messages to a remote server, but I am failing to configure correctly the InitialContext (or so it seems)</p>
<p>code to init the Context:</p>
<pre><code> Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
p.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces");
p.put(Context.PROVIDER_URL, "jnp://10.10.10.10:1099/");
Context context = new InitialContext(p);
</code></pre>
<p>But when I run it I get an exception:</p>
<blockquote>
<pre><code>javax.naming.CommunicationException
[Root exception is java.rmi.ConnectException:
Connection refused to host: 127.0.0.1;
nested exception is:
java.net.ConnectException: Connection refused: connect]
</code></pre>
</blockquote>
<p>So what is baffling me is that is complaining about 127.0.0.1 event though I am configuring it for 10.10.10.10, which is alive, running jboss, no firewall, I can get a telnet session to port 1099, so it seems to be ok</p>
<p>Any pointers ? or helpers ?</p>
http://stackoverflow.com/questions/978062/in-memory-filtering-of-not-persistent-collection-with-hibernate/979418#9794180Answer by webclimber for In memory filtering of not persistent collection with Hibernatewebclimber2009-06-11T05:11:47Z2009-06-11T05:11:47Z<p>Not sure about #1 but it might work... </p>
<p>I would recommend looking maybe at commons-collection (CollectionsUtils) and do the filtering in memory as you need</p>
<p>Also depending on the queries you do, the second level cache might actually prevent the access to the database if configured correctly.</p>
http://stackoverflow.com/questions/760987/what-is-the-most-weird-bug-youve-found1What is the most weird bug you've found ? [closed]webclimber2009-04-17T15:53:17Z2009-04-17T16:00:28Z
<p>I've seen and fixed my good share of bugs, but I have a special place for this one.</p>
<p>One good day the application stopped working on production servers, a good reboot would fix it, but it would fail again after a few days, no way to reproduce in any of the QA or DEV environments, So we enabled the DEBUG on production, just to see that the the app was blocking when it tried to generate the session id... </p>
<p>After looking into it for a few hours I found that java was calling /dev/random to generate the session ids, and that call was blocking... As you can imagine after some research we switch to /dev/urandom and it all worked.</p>
<p>My answer to the higher ups? Sorry Mr CEO, the machine just does not have enough entropy.</p>
http://stackoverflow.com/questions/748387/how-to-remove-a-stack-item-which-is-not-on-the-top-of-the-stack-in-c/748408#7484080Answer by webclimber for How to remove a stack item which is not on the top of the stack in C#webclimber2009-04-14T16:38:00Z2009-04-14T16:38:00Z<p>hmmmm...... I agree with the previous two answers but if you are looking to hack your way just pop and save all elements until you get to the one you want, and the re-push them all</p>
<p>Yes is ugly, badly performing, probably weird code that will need a long comment explaining why, but you could do it....</p>
http://stackoverflow.com/questions/742254/can-i-add-classes-to-suns-rt-jar-file/742288#7422880Answer by webclimber for Can I add classes to sun's rt.jar file?webclimber2009-04-12T19:39:24Z2009-04-12T19:39:24Z<p>Most definitely no.
If you post the command you are running from the command line we will be able to point you on the right direction, but most likely you are just missing a classpath parameter.</p>
<p>java -classpath /path/to/mail.jar MyClass</p>
http://stackoverflow.com/questions/723587/whats-the-longest-possible-worldwide-phone-number-i-should-consider-in-sql-varch/723599#7235993Answer by webclimber for What's the longest possible worldwide phone number I should consider in SQL varchar(length) for phonewebclimber2009-04-06T23:11:05Z2009-04-06T23:11:05Z<p>It's a bit worse, I use a calling card for international calls, so its local number in the US + account# (6 digits) + pin (4 digits) + "pause" + what you described above.</p>
<p>I suspect there might be other cases </p>
http://stackoverflow.com/questions/694903/migrating-a-mysql-server-from-one-box-to-another/694917#6949170Answer by webclimber for Migrating a MySQL server from one box to anotherwebclimber2009-03-29T16:39:34Z2009-03-29T16:39:34Z<p>You could setup a MySQL slave replication and let MySQL copy the data, and then make the slave the new master</p>
http://stackoverflow.com/questions/566587/how-to-find-the-cause-for-a-user-44-panic2How to find the cause for a USER 44 PANIC?webclimber2009-02-19T18:36:56Z2009-03-26T09:54:32Z
<p>One of the products we develop is a phone app for nokia phones done in C++ and Symbian, we started getting "random" crashes a while a ago with a USER 44 panic.</p>
<p>I am pretty new to the symbian environment so I am looking for tools and recommendations to help finding the root of this bug. </p>
<p>Is there a equivalent of a "stack trace" that I can get?
Is there generic panic catching code that could give me some insight into it?</p>
http://stackoverflow.com/questions/671991/is-there-a-reason-i-should-not-start-with-c/672014#6720142Answer by webclimber for Is there a reason I should not start with C#webclimber2009-03-23T02:02:13Z2009-03-23T02:02:13Z<p>I think the cost of deployment might be a different thing, i.e. if your project needs to scale horizontally, and add more servers to load balance or even for geographically distributed servers. Usually the windows hosting will run a bit more than linux (without even considering the flame wars reasons).</p>
http://stackoverflow.com/questions/666696/have-you-found-success-with-a-spring-and-hibernate-web-application/671135#6711352Answer by webclimber for Have you found success with a Spring and Hibernate Web Applicationwebclimber2009-03-22T14:55:08Z2009-03-22T14:55:08Z<p>techincally speaking I have, I've deployed commercial applications with numbers from the thousands to a few hundreds of thousands using spring, hibernate and both.</p>
<p>From the management perspective in one case, I had a team that were good technologists, so they managed to rewrite an app with spring and hibernate but... they went crazy with the interfaces (each new object to the model needed 16 interfaces), abused the AOP so transactions and logging were almost impossible to follow and stack traces were meaningless, used tools to map the hibernate files without fully understanding what was being done (in some cases joining 4 tables for what could've been a simple entity, and a variety of issues that made the resulting application much harder to enhance, debug, fix, even setup the developer's environment....)</p>
<p>my 2c </p>
http://stackoverflow.com/questions/639852/parallel-processing-of-jms-messages1Parallel processing of JMS messages ?webclimber2009-03-12T18:16:34Z2009-03-12T18:21:29Z
<p>Is it possible to create a pool of Message Listeners or a Message Driven Beans to process messages from a JMS queue or topic in parallel ?</p>
<p>I am using JBoss and JBoss's JMS</p>
http://stackoverflow.com/questions/631871/php-temp-file-names-for-uploads-colliding/631885#631885-1Answer by webclimber for PHP temp file names for uploads collidingwebclimber2009-03-10T19:25:57Z2009-03-10T19:25:57Z<p>I would recommend using a GUID generator for the filename seeing that you are getting so many.</p>
http://stackoverflow.com/questions/630356/is-project-management-the-only-path-when-you-reach-your-30s/630384#6303845Answer by webclimber for Is project management the only path when you reach your 30s?webclimber2009-03-10T14:11:53Z2009-03-10T14:11:53Z<p>The startups offer a very fertile ground for experienced developers, people that can start from scratch and grow with the company and projects.</p>
<p>Of course is a riskier option than the large IT firms, but at the same time in my experience a very rewarding one.</p>
<p>I have done everything from senior developer to CTO (not in that order) in a variety of startups over the past 10 years</p>
http://stackoverflow.com/questions/577858/how-much-business-knowledge-do-you-need-to-be-an-effective-developer/577864#5778642Answer by webclimber for How much business knowledge do you need, to be an effective developer?webclimber2009-02-23T14:52:44Z2009-02-23T14:52:44Z<p>The key is to be able to get in the user's shoes, as well as understand what the customer wants to do with the software, so the more that is understood (business knowledge) the better your software will be.</p>
<p>As an example some automakers made designers to go into the production line to understand that some of those pesky nuts where in places that were too hard to reach.</p>
http://stackoverflow.com/questions/577554/when-is-assembler-faster-than-c/577808#5778080Answer by webclimber for When is assembler faster than C?webclimber2009-02-23T14:31:10Z2009-02-23T14:31:10Z<p>I'd say that when you are better than the compiler for a given set of instructions. So no generic answer I think</p>
http://stackoverflow.com/questions/1627794/mysql-update-takingtoo-long-time/1628063#1628063Comment by webclimber on MySQL update taking(too) long time ....webclimber2009-10-27T00:24:08Z2009-10-27T00:24:08Zis there a way to know before hand if the optimize or repair will do something ? or running them is the only option ?http://stackoverflow.com/questions/1627794/mysql-update-takingtoo-long-timeComment by webclimber on MySQL update taking(too) long time ....webclimber2009-10-26T23:21:21Z2009-10-26T23:21:21Zselect runs in: 1 row in set (0.01 sec)
http://stackoverflow.com/questions/1627794/mysql-update-takingtoo-long-timeComment by webclimber on MySQL update taking(too) long time ....webclimber2009-10-26T23:01:16Z2009-10-26T23:01:16ZTrue, I actually ran it with field1 = field1http://stackoverflow.com/questions/986852/clustering-coordinates-on-server-side/987206#987206Comment by webclimber on Clustering Coordinates on Server Sidewebclimber2009-10-01T17:43:14Z2009-10-01T17:43:14ZAgree with Chris, for non user specific data, pre cluster the first 5/6 zoom levels and you'll be fine.
In my experience the clustering itself is not too bad once you have the data in memory, the io (database/file/API) is where the time goes.http://stackoverflow.com/questions/1375337/when-youre-the-new-guy-and-you-keep-seeing-dumb-things-do-you-refactor-them/1375623#1375623Comment by webclimber on When you're the new guy and you keep seeing dumb things - do you refactor them?webclimber2009-09-29T16:25:53Z2009-09-29T16:25:53Zexactly, ask if there was a reason, and check. I've foudn many times that code like this is just a side effect of older/legacy code, Of course many times is just ignorance, and just asking the question helps both the code base and the programmer.http://stackoverflow.com/questions/1036085/sending-messages-to-a-remote-jms-topic/1036094#1036094Comment by webclimber on Sending messages to a remote JMS Topic webclimber2009-06-24T17:09:44Z2009-06-24T17:09:44Zworked like a charm, I had to choose a single ip, for the -b param, didn't seem to work for the multi-homed machine.http://stackoverflow.com/questions/1036085/sending-messages-to-a-remote-jms-topic/1036094#1036094Comment by webclimber on Sending messages to a remote JMS Topic webclimber2009-06-24T02:47:30Z2009-06-24T02:47:30ZThis looks promising :) definitely will try tomorrow morning and report back
http://stackoverflow.com/questions/771016/what-does-your-workplace-look-like/771052#771052Comment by webclimber on What does your workplace look like?webclimber2009-04-21T14:14:46Z2009-04-21T14:14:46Zthat's been the past 10 Fri !!! for me...http://stackoverflow.com/questions/681855/how-do-you-read-technical-books/681876#681876Comment by webclimber on How do you read technical books?webclimber2009-03-25T14:39:57Z2009-03-25T14:39:57ZMaybe call readPage, if not you might be reading only as many chars as the book has pages ;)http://stackoverflow.com/questions/677595/initialize-final-variable-before-constructor-in-javaComment by webclimber on Initialize final variable before constructor in Javawebclimber2009-03-24T14:25:23Z2009-03-24T14:25:23ZI assume that you want to change the value on the constructor right ?http://stackoverflow.com/questions/671991/is-there-a-reason-i-should-not-start-with-c/672035#672035Comment by webclimber on Is there a reason I should not start with C#webclimber2009-03-23T02:49:03Z2009-03-23T02:49:03Z@John Saunders: for question #2, I think is more relevant to ask what percentage of web applications are running on this proprietary OS ? At least for this particular questionhttp://stackoverflow.com/questions/566587/how-to-find-the-cause-for-a-user-44-panic/567479#567479Comment by webclimber on How to find the cause for a USER 44 PANIC?webclimber2009-03-09T02:13:58Z2009-03-09T02:13:58ZHard to track, but it was exactly a double delete ...http://stackoverflow.com/questions/624071/writing-on-a-separate-thread-for-a-web-app/624105#624105Comment by webclimber on Writing on a separate thread for a web app.webclimber2009-03-09T00:33:44Z2009-03-09T00:33:44ZActually there is no guarantee the user will be there, and this part of the processing is not relevant to the user's request (at least to that one).http://stackoverflow.com/questions/624071/writing-on-a-separate-thread-for-a-web-app/624078#624078Comment by webclimber on Writing on a separate thread for a web app.webclimber2009-03-09T00:32:59Z2009-03-09T00:32:59Zthat's what I was afraid of, JMS feels a bit heavy handed for what I thought should be an easy fix.
http://stackoverflow.com/questions/612059/how-do-you-structure-your-entities-you-intend-to-reuseComment by webclimber on How do you structure your entities you intend to reuse?webclimber2009-03-04T19:27:40Z2009-03-04T19:27:40Zthe image seems to be missing.