User Michael Sharek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:51:07Z http://stackoverflow.com/feeds/user/1958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798104/db2-override-auto-generated-key-when-inserting/1798587#1798587 2 Answer by Michael Sharek for DB2 override auto generated key when inserting Michael Sharek 2009-11-25T17:28:50Z 2009-11-25T17:28:50Z <p>I'm going to assume you are talking about identity columns and not sequences.</p> <p>In DB2's <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0000927.htm" rel="nofollow">CREATE TABLE</a> syntax, have a look at the "generated-column-spec" in the syntax diagram as it relates to identity columns. There are two ways to specify how the identity value will be generated:</p> <ul> <li>GENERATED ALWAYS: this option will always generate and identity value, and you cannot specify a value for the identity column in an insert statement</li> <li>GENERATED BY DEFAULT: this option will generate an identity value if no value for the column is specified in the insert statement. If you provide a value for the column in the insert statement, db2 will not generate an identity value for it.</li> </ul> <p>If the table you are trying to insert into used the ALWAYS option when the table is created, then you cannot override it. You'll need to drop and recreate the table or use the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0000888.htm" rel="nofollow">ALTER TABLE</a> statement to redefine the column to generate the identity value by default only.</p> http://stackoverflow.com/questions/1752222/can-db2-tell-a-web-app-when-a-table-data-is-updated/1752758#1752758 0 Answer by Michael Sharek for Can DB2 tell a web-app when a table data is updated? Michael Sharek 2009-11-18T00:06:31Z 2009-11-18T00:06:31Z <p>I think if your web application is running in WebSphere, setting up MQ would be a pretty good solution.</p> <p>You could write triggers that use the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0023485.htm#mq%5F23485" rel="nofollow">MQ Series routines</a> to add things to a queue, and your web app could subscribe to the queue and listen for updates.</p> <p>If your web app is not in WebSphere then you could still look at this option but it might be more difficult.</p> http://stackoverflow.com/questions/1634720/web-service-logging-not-outputting-but-not-failing/1634953#1634953 1 Answer by Michael Sharek for Web service logging not outputting, but not failing Michael Sharek 2009-10-28T02:47:51Z 2009-10-28T02:47:51Z <p>Axis2 is deployed as a web application in Tomcat, and has its own logging configuration (commons logging). Since it's the one that's invoking your service method, more than likely your logging statements are in Axis2's log files somewhere.</p> <p>You probably want to know how to have your service log to its own file. I think you'll have to change Axis2's logging configuration and add an appender specifically for your service.</p> http://stackoverflow.com/questions/1595367/add-a-column-to-a-db2-400-table-with-a-specific-ordinal-position/1595643#1595643 3 Answer by Michael Sharek for Add a column to a DB2/400 table with a specific ordinal position Michael Sharek 2009-10-20T15:53:27Z 2009-10-20T15:53:27Z <p>No. The <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.admin.doc/doc/r0000888.htm" rel="nofollow">ALTER TABLE</a> statement will allow you add a column to a table, but, according to the documentation:</p> <blockquote> <p>The new column is the last column of the table; that is, if initially there are n columns, the added column is column n+1.</p> </blockquote> <p>If you'd like to change the order of columns in your table, your best bet is to:</p> <ol> <li>Use the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.udb.doc/admin/r0000980.htm" rel="nofollow">RENAME</a> statement to rename the table. <li>Recreate the table, with its original name, with the columns in the order that you want. <li>Use an INSERT SELECT to populate the new table with the data from the renamed table. <li>When you're sure the data is intact, you can drop the renamed version of the table. </ol> http://stackoverflow.com/questions/1592390/db2-automatic-trim-tailing-whitespace/1595275#1595275 0 Answer by Michael Sharek for DB2 automatic trim tailing whitespace Michael Sharek 2009-10-20T15:01:25Z 2009-10-20T15:01:25Z <p>You should use the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.admin.doc/doc/r0000846.htm" rel="nofollow">RTRIM</a> or <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.admin.doc/doc/r0023198.htm" rel="nofollow">TRIM</a> function.</p> <pre><code>SELECT USER_USERID FROM TB_USER WHERE RTRIM(USER_USERID) = 'ADMIN' </code></pre> http://stackoverflow.com/questions/1545958/oracle-migration-workbench/1546389#1546389 0 Answer by Michael Sharek for Oracle Migration Workbench Michael Sharek 2009-10-09T22:36:05Z 2009-10-09T22:36:05Z <p>It seems there is some kind of problem with the user you are trying to connect with.</p> <p>According to the message reference for <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.msg.doc/doc/sql1402.htm" rel="nofollow">SQL1402N</a>:</p> <blockquote> <p>SQL1402N Unable to authenticate user due to unexpected system error. Explanation:</p> <p>Call your system administrator. On unix-based systems, the file db2ckpw may not have the correct permission bits set, or the system may have run out of swap/paging space. On Windows NT, the DB2 security service may not have been started or the account may be locked.</p> <p>The command can not be processed.</p> <p>Federated system users: this situation can also be detected by the data source. User response:</p> <p>On unix-based systems, have the system administrator ensure the correct access permissions are set for db2ckpw, and that there is enough swap/paging space allocated. On Windows NT, have the system administrator verify that the DB2 security service is installed and started. If the service is running then ensure that the account is not locked.</p> </blockquote> http://stackoverflow.com/questions/1528089/how-to-do-basic-authentication-with-an-axis2-adb-client/1528129#1528129 1 Answer by Michael Sharek for How to do Basic Authentication with an Axis2 ADB Client? Michael Sharek 2009-10-06T21:12:42Z 2009-10-06T21:12:42Z <p>I think you're close, your code looks really close to <a href="http://wso2.org/library/161" rel="nofollow">this</a>? The following is the difference:</p> <pre><code>clientOptions.setProperty( org.apache.axis2.transport.http.HTTPConstants.BASIC_AUTHENTICATION, basicAuth); </code></pre> http://stackoverflow.com/questions/1525306/axis2-problem-in-setting-soapaction-http-header/1526571#1526571 0 Answer by Michael Sharek for Axis2 problem in setting SOAPAction HTTP header Michael Sharek 2009-10-06T16:08:25Z 2009-10-06T16:08:25Z <p>Have a look at the answer to <a href="http://stackoverflow.com/questions/205240/axis2-web-service-client-generation-types-without-modifying-the-client/206188">this question</a>...you may be able to find similar code in your generated stubs.</p> <p>If that's the case, then I think you can set the action (according to the <a href="http://ws.apache.org/axis2/1%5F0/api/org/apache/axis2/client/Options.html#setAction%28java.lang.String%29" rel="nofollow">API</a>):</p> <pre><code>serviceClient = new RPCServiceClient(); Options options = serviceClient.getOptions(); options.setAction(""); </code></pre> <p>I think the action is handled differently depending on the SOAP version. To specify a different version:</p> <pre><code>options.setSoapVersionURI( org.apache.axiom.soap.SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI); </code></pre> <p>(or the SOAP12 version of the constant).</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1426919/c-client-calling-java-axis2-web-service-object-resets/1427778#1427778 0 Answer by Michael Sharek for c# client calling java axis2 web service, object "resets" Michael Sharek 2009-09-15T15:09:06Z 2009-09-15T15:09:06Z <p>I'm not sure why @shivaspk left a comment instead of writing an answer, it is quite correct: web service calls (not just axis calls) are meant to be stateless, so although the project object gets created by </p> <pre><code>db.login(); </code></pre> <p>when you call</p> <pre><code>db.getProject(); </code></pre> <p>It is being called on a different instance of your Database class that was created by Axis to service the second call.</p> <p>There is no really good answer to your question, except for you to rethink what you are trying to do. If you need some kind of authentication (via login), then that authentication needs to be part of every web service call.</p> http://stackoverflow.com/questions/1422478/db2-runtime-error/1424038#1424038 1 Answer by Michael Sharek for DB2 Runtime Error Michael Sharek 2009-09-14T21:35:04Z 2009-09-14T21:35:04Z <p>All DB2 messages and their meanings can be found online.</p> <p>In your case, according to the writeup for <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.msg.doc/doc/sql0811.htm" rel="nofollow">SQL0811N</a>:</p> <p>One of the following caused the error:</p> <ul> <li>Execution of an embedded SELECT INTO or VALUES INTO statement resulted in a result table of more than one row. <li>Execution of a scalar fullselect resulted in a result table of more than one row. </ul> <p>This means that your select statement that starts:</p> <pre><code>SELECT FS.a, FS.b, FS.c FROM ... </code></pre> <p>returns more than one row. This isn't allowed since you're trying to set a single row's values in the update statement.</p> http://stackoverflow.com/questions/1306254/axis2-and-jax-ws-how-can-i-change-the-ssl-handshaking/1306999#1306999 0 Answer by Michael Sharek for AXIS2 and JAX-WS how can I change the SSL handshaking ? Michael Sharek 2009-08-20T15:32:32Z 2009-08-20T15:32:32Z <p>Axis2 is configured using axis.xml. <a href="http://ws.apache.org/axis2/1%5F3/http-transport.html" rel="nofollow">Here</a> is the section on http transport.</p> <p>You may also want to look at the <a href="http://ws.apache.org/rampart/" rel="nofollow">rampart</a> module and how to configure it.</p> <p>I hope that helps. There's not a lot of information out there on this topic.</p> http://stackoverflow.com/questions/1275739/db2-client-v9-5-on-win-2003-taking-long-time-to-establish-connection/1278694#1278694 0 Answer by Michael Sharek for DB2 Client v9.5 on Win 2003 Taking Long time to establish Connection Michael Sharek 2009-08-14T15:59:01Z 2009-08-14T15:59:01Z <p>DB2 has no concept of a "database-only" userid and will always use the operating system to perform authentication. If your OS authentication happens through Active Directory then that's how DB2 will authenticate too.</p> <p>I think your DBA has given you the correct solution by changing settings/accounts in the OS to make the authentication easier.</p> <p>I don't think this is a flaw in the driver.</p> http://stackoverflow.com/questions/1265371/db2-how-to-send-an-email-from-stored-procedure/1266490#1266490 0 Answer by Michael Sharek for DB2 how to send an email from Stored Procedure? Michael Sharek 2009-08-12T14:21:45Z 2009-08-12T14:21:45Z <p>There is nothing built-in in DB2 to do that, like xp_sendmail in SQL Server.</p> <p>You have to write your stored procedure in one of the hosted languages (Java, C++) and then use an API from that language to send the mail.</p> <p>See <a href="http://www.ibm.com/developerworks/data/library/techarticle/0205bhogal/0205bhogal.html" rel="nofollow">this article</a> on how to do it using Java.</p> http://stackoverflow.com/questions/404640/have-you-ever-written-an-infinite-loop-that-made-it-into-production 3 Have you ever written an infinite loop that made it into production? Michael Sharek 2009-01-01T06:21:29Z 2009-08-11T20:21:10Z <p>I was reading today about <a href="http://gizmodo.com/5121311/30gb-zunes-failing-everywhere-all-at-once" rel="nofollow">every 30 GB Zune failing at exactly the same time</a>.</p> <p>As it turns out, the cause is probably an infinite loop that will only appear on the 366th day of a leap year (see <a href="http://www.zuneboards.com/forums/zune-news/38143-cause-zune-30-leapyear-problem-isolated.html" rel="nofollow">this</a> write-up).</p> <p>So just curious...have you ever written an infinite loop that made it all the way to production without being detected?</p> http://stackoverflow.com/questions/1240152/voice-recognition-in-iphone/1240172#1240172 2 Answer by Michael Sharek for Voice Recognition in iPhone ? Michael Sharek 2009-08-06T16:56:47Z 2009-08-06T16:56:47Z <p>Look again at the answer to <a href="http://stackoverflow.com/questions/1208069/can-we-do-voice-calling-in-the-iphone">this question</a>. Particularly:</p> <blockquote> <p>Apple has not opened up any APIs to access voice dialing (or any of the other voice controlling features) to third party developers. However, if you want to create your own voice recognition algorithms this can be done.</p> </blockquote> <p>You need to do it yourself somehow. The other question you linked to has some good suggestions on that.</p> http://stackoverflow.com/questions/1229839/how-to-create-data-source-without-pooling-in-tomcat/1235836#1235836 0 Answer by Michael Sharek for How to Create Data Source without Pooling in Tomcat Michael Sharek 2009-08-05T21:23:29Z 2009-08-06T16:47:38Z <p>If you really want just one connection, try setting the intialSize to 1 and maxActive to 1 in your <a href="http://commons.apache.org/dbcp/configuration.html" rel="nofollow">DBCP configuration</a>.</p> <p>In the long term, if you don't want to use connection pooling, then don't use JNDI to configure your datasource, just create it directly in the code of your web application.</p> <p>Edit:</p> <p>In your comment you say: "It only allows one connection and the server hangs right away because every request is waiting for the connection."</p> <p>Yes, if you effectively turn off pooling by making the pool size 1, that is what will happen. But the title of your question is "How to Create DataSource without Pooling" so I'm confused about what exactly you are trying to accomplish.</p> <p>My suggestion would be to not use JNDI to define your connections (the whole purpose of defining a JNDI datasource is for connection pooling across web applications). Instead, define your connection in your servlet code for your two cases, one case that continues to use DBCP, the other case that uses your other low-level connection pool.</p> http://stackoverflow.com/questions/1230977/help-on-axis2-deployment-exception/1234653#1234653 0 Answer by Michael Sharek for Help on Axis2 Deployment Exception Michael Sharek 2009-08-05T17:31:56Z 2009-08-06T15:03:51Z <p>Have a look at <a href="http://ws.apache.org/axis2/0%5F94/axis2config.html" rel="nofollow">this page</a>, underneath the "Phase Order" heading. That should let you know how you need to define the Dispatch phase in your axis2.xml.</p> <p>It's also possible that the axis2.xml file can't be found or is missing. You haven't provided many details so it's hard to be more specific than that.</p> <p>Edit:</p> <p>Remember that Axis2 is a standalone web application that is deployed into a servlet container.</p> <p>You indicated in your comments that you modified your web application's web.xml. You should not need to do that to get Axis2 to work properly, so you can remove those mappings and redeploy your applications.</p> <p>Try <a href="http://charithaka.blogspot.com/2008/06/how-to-deploy-apache-axis2-on-resin-and.html" rel="nofollow">this guide</a>. Make sure that you can see the "Axis2 Happiness" page described in step 6.</p> <p>Once you have that working, you can go back to your other web applications and start modifying them to call your web services.</p> http://stackoverflow.com/questions/1230858/iphone-core-data-crashing-on-save/1233717#1233717 0 Answer by Michael Sharek for Iphone Core Data crashing on Save Michael Sharek 2009-08-05T14:43:24Z 2009-08-05T14:43:24Z <p>I have seen many funny behaviours with CoreData on iPhone that were solved by resetting content and settings in the iPhone simulator.</p> http://stackoverflow.com/questions/1202444/how-is-javas-threadlocal-implemented-under-the-hood/1202467#1202467 1 Answer by Michael Sharek for How is Java's ThreadLocal implemented under the hood? Michael Sharek 2009-07-29T19:20:35Z 2009-07-29T19:20:35Z <p>I think you are referring to ThreadLocal?</p> <p>Source is <a href="http://www.docjar.org/html/api/java/lang/ThreadLocal.java.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1158180/reloaddata-method-not-called-from-another-class/1160033#1160033 0 Answer by Michael Sharek for reloadData method not called from another class Michael Sharek 2009-07-21T15:42:38Z 2009-07-21T15:42:38Z <p>You're close, put this in class A:</p> <pre><code>- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.tableView reloadData]; } </code></pre> http://stackoverflow.com/questions/41937/converting-latitude-longitude-to-alberta-10-tm-projection 4 Converting latitude/longitude to Alberta 10 TM Projection Michael Sharek 2008-09-03T15:29:24Z 2009-07-17T14:46:53Z <p>I need to convert latitude/longitude coordinates into Easting/Northing coordinates in the Alberta 10 TM Projection.</p> <p>The 10 TM projection is similar to UTM, but it is a custom projection for the province of Alberta, Canada. I think (with some effort) I could code it myself but would rather not reinvent the wheel if it's been done already.</p> http://stackoverflow.com/questions/1143576/jboss-connection-pooling/1143721#1143721 0 Answer by Michael Sharek for jboss connection pooling Michael Sharek 2009-07-17T14:45:10Z 2009-07-17T14:45:10Z <p>Set idle timeout=480 minutes?</p> http://stackoverflow.com/questions/1102763/db2-sql-script-file/1104845#1104845 2 Answer by Michael Sharek for db2 sql script file Michael Sharek 2009-07-09T15:59:42Z 2009-07-14T19:22:21Z <p>The thing you are after is the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0010412.htm" rel="nofollow">DB2 Command Line Processor (CLP).</a></p> <p>If you want to execute a script, you would execute in the CLP:</p> <pre><code>db2 -vtf script1 </code></pre> <p>-f tells the CLP to run command input from the given file.</p> <p>Here's the <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0010410.htm" rel="nofollow">full list of options</a>.</p> <p>Unfortunately db2 doesn't support passing parameters to a script. You would have to combine your db2 -vtf commands with other scripting commands (such as sed) to generate the scripts for you, as in <a href="http://www.tek-tips.com/viewthread.cfm?qid=1501961&amp;page=8" rel="nofollow">this example</a>.</p> http://stackoverflow.com/questions/1125954/how-to-display-a-different-jsp-view-for-different-types-of-objects/1126147#1126147 0 Answer by Michael Sharek for How to display a different JSP view for different types of objects Michael Sharek 2009-07-14T15:24:08Z 2009-07-14T15:24:08Z <p>Declare an abstract method on Animal that returns a string, called getMyJspPage().</p> <p>Then cats and dogs can return a reference to a different jsp page or jsp fragment that you can include.</p> http://stackoverflow.com/questions/1120439/top-10-sql-server-tools-for-dbas/1120717#1120717 1 Answer by Michael Sharek for Top 10 SQL Server tools for DBAs Michael Sharek 2009-07-13T16:51:53Z 2009-07-13T16:51:53Z <p>Embarcadero has a few...</p> <p><a href="http://www.embarcadero.com/products/dbartisan/" rel="nofollow">DBArtisan</a></p> <p><a href="http://www.embarcadero.com/products/change%5Fmanager/" rel="nofollow">Change Manager</a></p> <p><a href="http://www.embarcadero.com/products/index.php" rel="nofollow">more...</a></p> http://stackoverflow.com/questions/1090375/dates-in-iphone-settings-bundle 0 Dates in iPhone Settings Bundle Michael Sharek 2009-07-07T04:37:56Z 2009-07-08T00:36:47Z <p>I'm working on a very simple iPhone app, that in the end will have maybe 3 or 4 settings.</p> <p>Ideally I'd like to use the Settings app provided for free in the SDK.</p> <p>One of the settings I'd like the user to be able to enter is their date of birth, however <a href="http://developer.apple.com/iphone/library/documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Introduction/Introduction.html" rel="nofollow">there doesn't seem to be a way</a> to prompt the user for a date in the Settings app.</p> <p>Aside from writing a custom settings page within my app, is there any other options?</p> http://stackoverflow.com/questions/1090373/is-it-possible-to-open-settings-app-using-openurl/1090456#1090456 1 Answer by Michael Sharek for is it possible to open Settings App using openURL? Michael Sharek 2009-07-07T05:12:29Z 2009-07-07T05:12:29Z <p>I think <a href="http://stackoverflow.com/questions/377102/how-do-i-open-the-settings-application-from-my-application">this question</a> answers it.</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954350#954350 12 Answer by Michael Sharek for Hidden Features of HTML Michael Sharek 2009-06-05T05:07:31Z 2009-06-22T18:16:01Z <p>I recently found out about the fieldset and label tags. As above, not hidden but useful for forms.</p> <p><a href="http://www.w3schools.com/TAGS/tag%5Ffieldset.asp" rel="nofollow">&lt;fieldset> explanation</a></p> <p><a href="http://www.w3schools.com/TAGS/tryit.asp?filename=tryhtml%5Ffieldset" rel="nofollow">&lt;fieldset> example</a></p> http://stackoverflow.com/questions/1006066/if-we-have-a-view-over-another-view-and-we-drop-th-eparent-view-what-happens-to-t/1009785#1009785 0 Answer by Michael Sharek for If we have a view over another view and we drop th eparent view what happens to the other view Michael Sharek 2009-06-17T22:11:43Z 2009-06-17T22:11:43Z <p>Probably the same thing that happens in <a href="http://stackoverflow.com/questions/642218/what-happens-to-an-existing-db2-view-if-the-table-is-dropped/643259#643259">this question</a>.</p> http://stackoverflow.com/questions/1001707/axis2-on-server-with-different-clients/1007659#1007659 1 Answer by Michael Sharek for Axis2 on server with different clients Michael Sharek 2009-06-17T15:11:09Z 2009-06-17T15:11:09Z <p>Yes. The whole idea behind web services is interoperability.</p> <p>There can be issues. I'm not really sure what you're trying to do so it's hard to say what those issues would be.</p> http://stackoverflow.com/questions/1311554/axis2-migration Comment by Michael Sharek on Axis2 Migration Michael Sharek 2009-08-21T17:35:54Z 2009-08-21T17:35:54Z I've looked at the revisions and some of the original XML file was truncated...please restore it http://stackoverflow.com/questions/1265371/db2-how-to-send-an-email-from-stored-procedure/1278116#1278116 Comment by Michael Sharek on DB2 how to send an email from Stored Procedure? Michael Sharek 2009-08-14T16:55:27Z 2009-08-14T16:55:27Z Thanks...did not know about that http://stackoverflow.com/questions/1240152/voice-recognition-in-iphone/1240172#1240172 Comment by Michael Sharek on Voice Recognition in iPhone ? Michael Sharek 2009-08-06T17:29:56Z 2009-08-06T17:29:56Z They did it themselves, using the technique described in <a href="http://stackoverflow.com/questions/942312/iphone-app-add-voice-recognition" rel="nofollow" title="iphone app add voice recognition">stackoverflow.com/questions/942312/&hellip;</a> Also you could read this for more on how they did it: <a href="http://joelaz.com/post/60338144/google-voice-recognition-voice-search-api" rel="nofollow" title="iphone app add voice recognition">joelaz.com/post/60338144/&hellip;</a> http://stackoverflow.com/questions/1109632/java-web-service-client Comment by Michael Sharek on Java web service client: Michael Sharek 2009-07-10T20:25:51Z 2009-07-10T20:25:51Z Why does the client need to discover the wsdl at runtime? Does the definition of the service change dynamically? http://stackoverflow.com/questions/1090375/dates-in-iphone-settings-bundle/1090718#1090718 Comment by Michael Sharek on Dates in iPhone Settings Bundle Michael Sharek 2009-07-07T15:07:15Z 2009-07-07T15:07:15Z Thanks, that's a good idea. http://stackoverflow.com/questions/1090375/dates-in-iphone-settings-bundle/1090727#1090727 Comment by Michael Sharek on Dates in iPhone Settings Bundle Michael Sharek 2009-07-07T15:06:34Z 2009-07-07T15:06:34Z What I'm after is a way to display one of those in the Settings system application. http://stackoverflow.com/questions/1061797/axis2-netbeans-faulty-service Comment by Michael Sharek on Axis2 & Netbeans...faulty service Michael Sharek 2009-06-30T15:03:42Z 2009-06-30T15:03:42Z &quot;when it's time to deploy, I get errors from Axis2&quot;...what do you mean by this? are you running this inside NetBeans or are you deploying it to a server? http://stackoverflow.com/questions/469527/whats-your-complete-tool-stack-for-java-web-development-and-why/581321#581321 Comment by Michael Sharek on What's Your Complete Tool Stack for Java Web Development and Why? Michael Sharek 2009-06-17T16:15:44Z 2009-06-17T16:15:44Z db2 sucks because <i>YOU</i> can't figure it out? http://stackoverflow.com/questions/1001707/axis2-on-server-with-different-clients Comment by Michael Sharek on Axis2 on server with different clients Michael Sharek 2009-06-17T15:11:05Z 2009-06-17T15:11:05Z If you're looking for more information suggest you update your question with more specific details. http://stackoverflow.com/questions/925519/sql-dump-from-db2/926671#926671 Comment by Michael Sharek on SQL Dump from DB2 Michael Sharek 2009-05-29T16:00:33Z 2009-05-29T16:00:33Z You're correct, doctor...not really sure what op was after so linked to all data movement options for db2 http://stackoverflow.com/questions/894631/over-ride-browser-authentication-dialog/894694#894694 Comment by Michael Sharek on Over-ride Browser Authentication Dialog Michael Sharek 2009-05-21T19:57:23Z 2009-05-21T19:57:23Z OK Ken, suggest you update your question with the details in this comment...I'll update my answer http://stackoverflow.com/questions/839423/db2-sprename-equivalent/841230#841230 Comment by Michael Sharek on DB2 sp_rename equivalent Michael Sharek 2009-05-11T15:26:18Z 2009-05-11T15:26:18Z You have to do drop/create...alter procedure doesn't allow rename. <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.admin.doc/doc/r0008168.htm" rel="nofollow">publib.boulder.ibm.com/infocenter/db2luw/&hellip;</a> http://stackoverflow.com/questions/16451/calling-net-web-service-wse-2-3-ws-security-from-java/16683#16683 Comment by Michael Sharek on Calling .NET Web Service (WSE 2/3, WS-Security) from Java Michael Sharek 2009-04-02T20:24:46Z 2009-04-02T20:24:46Z @aurealus - Yes we did, updated this question. Hopefully it will help you. :) http://stackoverflow.com/questions/607863/do-you-find-java-util-logging-sufficient/607991#607991 Comment by Michael Sharek on Do you find java.util.logging sufficient? Michael Sharek 2009-03-03T22:20:21Z 2009-03-03T22:20:21Z @oxbow_lakes: no. For example you can tell log4j that every logging statement in Foo class at DEBUG or higher should come out, and every logging statement in Bar class should only come out if it's FATAL or higher...very useful if you want to see what Foo is doing without any noise from Bar http://stackoverflow.com/questions/493028/problem-in-running-junit-tests-in-eclipse-3-4-1-on-mac-os Comment by Michael Sharek on Problem in running Junit tests in eclipse 3.4.1 on Mac OS Michael Sharek 2009-01-29T20:37:16Z 2009-01-29T20:37:16Z More info please...are you trying to run the tests in debug mode? Are you trying to run some remote tests? What do your tests do?