User Ben - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:59:51Z http://stackoverflow.com/feeds/user/16424 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1503956/jboss-log-file-maintenance-cleanup 0 JBoss Log File Maintenance/Cleanup Ben 2009-10-01T13:27:14Z 2009-10-01T19:14:02Z <p>Hi,</p> <p>I am running JBoss 4.0.2 server and over the years it has created a large number of log files that I would like to clean up.</p> <p>I would like to keep the same logging level but also have it delete any log files older than 3 months. </p> <p>Is there a way to do that in the configuration or should I just write a perl script?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1439741/jboss-standard-out-timestamp 1 Jboss Standard Out Timestamp Ben 2009-09-17T15:56:08Z 2009-09-17T17:10:20Z <p>When I start up my JBoss server I pipe standard out to a file. When looking at that file I see a timestamp but I can't figure out what day the event happend. </p> <p>The sample below is from my output file. I can see the action happened at 10:35 but on what day and what does the "24,253" mean?</p> <pre><code> 10:35:24,253 INFO [STDOUT] Here 1 10:35:24,253 INFO [STDOUT] Here 2 10:35:24,254 INFO [STDOUT] Here 3 </code></pre> http://stackoverflow.com/questions/1298342/what-benefits-does-main-provide-over-using-a-static-initializer-as-a-pseudo/1300134#1300134 1 Answer by Ben for What benefits does main(...) provide over using a static-initializer as a pseudo entry-point? Ben 2009-08-19T13:59:03Z 2009-08-19T13:59:03Z <p>Let's not forget about maintainability. When someone else goes to change your code they are always going to look for a main() method to start the program. Unless there is some reason you can't get around (and I'm guessing there is not) then I would just use the main method.</p> http://stackoverflow.com/questions/1279699/what-are-the-common-tricks-in-eclipse-when-working-with-jsp-files/1280015#1280015 1 Answer by Ben for What are the common tricks in eclipse when working with jsp files? Ben 2009-08-14T20:28:17Z 2009-08-14T20:28:17Z <p>I use the MyEclipse plugin. I have been very happy with it and it has a lot of jsp support.</p> <p><a href="http://www.myeclipseide.com/" rel="nofollow">MyEclipse</a></p> http://stackoverflow.com/questions/1278364/java-telnetclient-hangs-at-press-any-key-to-continue 1 Java TelnetClient hangs at “press any key to continue” Ben 2009-08-14T14:57:05Z 2009-08-14T16:57:39Z <p>I have a Java program that runs on Linux and telnets into a remote server using <code>org.apache.commons.net.telnet.TelnetClient</code> and performs a few commands. The problem is that it hangs intermittently when it gets to an output display that asks the users to “press any key to continue…” The program hangs on this about 1 out of every 10 tims it runs and out of the 7 servers I run it on only 3 of the servers have problems. Also, when I run the same program on a windows box it works all the time.</p> <p>I was wondering if anyone else has encountered a problem like this? </p> <p>On a test server I can get it to hang every time to test with. I have tried to send in other commands that won’t cause it to hang but no luck. I have tried all the carrage return, line feed, adding a character and putting in a line feed. Nothing seems to make it client continue.</p> <p>Forgot to mention that flushing the buffer what the first thing I thought of. I put the flush command anywhere I thought it might hlep.<br /> I will also mention that when I run it and watch the output from the write line it does find the "press any key" and keeps going but hangs the terminal does not continue.</p> <p>CODE WHERE I MAKE THE CALL:</p> <pre><code> readUntil("X) Exit (no report)"); write("C", false); out.flush(); readUntil("continue...."); // write this for all servers. write("", true); out.flush(); readUntil("X) Exit"); write("X", false); /* * This method is used to read the command line until the pattern that was * passed in is found. */ public String readUntil(String pattern) throws Exception { try { String tempString; char lastChar = pattern.charAt(pattern.length() - 1); StringBuffer sb = new StringBuffer(); //boolean found = false; char ch = (char) in.read(); while (true) { // NOTE: Turn line below on to watch the program perform the telnet System.out.print(ch); sb.append(ch); tempString = sb.toString(); if (ch == lastChar) { if (tempString.endsWith(pattern)) { // log to file logFileWriter.write(tempString); logFileWriter.flush(); return tempString; } } ch = (char) in.read(); } } catch (Exception e) { e.printStackTrace(); throw e; } } /* * writes the String passed in to the command line. * boolean userWriteln: true - use the return key after the command, false - just type the * command with NO enter key */ public void write(String value, boolean useWriteln) { System.out.println("WRITTING '" + value + "'"); try { if (useWriteln) { out.println(value); } else { out.print(value); } out.flush(); System.out.println(value); } catch (Exception e) { e.printStackTrace(); } } </code></pre> <p>StackTrace: java.net.SocketTimeoutException: Read timed out at java.net.SocketInputStream.socketRead0(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java:129) at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) at java.io.BufferedInputStream.read(BufferedInputStream.java:237) at java.io.FilterInputStream.read(FilterInputStream.java:66) at java.io.PushbackInputStream.read(PushbackInputStream.java:122) at org.apache.commons.net.io.FromNetASCIIInputStream.__read(FromNetASCIIInputStream.java:77) at org.apache.commons.net.io.FromNetASCIIInputStream.read(FromNetASCIIInputStream.java:175) at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) at java.io.BufferedInputStream.read(BufferedInputStream.java:237) at org.apache.commons.net.telnet.TelnetInputStream.__read(TelnetInputStream.java:122) at org.apache.commons.net.telnet.TelnetInputStream.run(TelnetInputStream.java:564) at java.lang.Thread.run(Thread.java:619)</p> <p>WHERE IT HANGS: english 1 6000 4462 26 % 13826 11056 20 %</p> <pre><code>Calls answered since Thu Jun 4, 2009 3:11 am: 41245 </code></pre> <p>Press any key to continue....</p> http://stackoverflow.com/questions/1267365/confusion-in-line-about-the-difference-between-instance-and-object-in-context-of/1267597#1267597 0 Answer by Ben for Confusion in line about the difference between instance and object in context of Java Ben 2009-08-12T17:35:10Z 2009-08-12T17:35:10Z <p>In Java Context :</p> <p>Object: That is the Class Instance: The thing created when you use the class.</p> <p>EX: (to use the above car example) In the below example "Car" is the Object and myInstanceOfCar is the Instance. </p> <pre><code>class Car private String color; public static void main(String[] args) { Car myInstanceOfCar = new Car(); } } </code></pre> http://stackoverflow.com/questions/1262239/natural-sort-order-string-comparison-in-java-is-one-built-in/1262390#1262390 2 Answer by Ben for Natural sort order string comparison in Java - is one built in? Ben 2009-08-11T19:22:47Z 2009-08-11T19:22:47Z <p>I know Apache Commons has a natural sort order in the ComparatorUtils. That might be what you are looking for.</p> <p><a href="http://commons.apache.org/collections/apidocs/org/apache/commons/collections/ComparatorUtils.html" rel="nofollow">ComparatorUtils</a></p> http://stackoverflow.com/questions/278432/wsdl2java-error-emitter-failure-invalid-endpoint-address-in-port 0 wsdl2java Error: Emitter failure. Invalid endpoint address in port Ben 2008-11-10T16:49:12Z 2009-08-11T14:04:41Z <p>I am trying to run the wsdl2java command on a WSDL file that was given to me from another group in my company. I know wsdl2java works because I can run the examples but when I try it on the wsdl given to me it fails. The one big difference is that the WSDL given to me uses SSL.</p> <p>I’m using Java 1.4 (checked it a few time) and made sure all the correct jars are in my class path, jsse.jar is there.</p> <p>COMMAND: java org.apache.axis.wsdl.WSDL2Java --server-side GenericWebService.wsdl </p> <p>ERROR:</p> <p>log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle). log4j:WARN Please initialize the log4j system properly. **java.io.IOException: Emitter failure. Invalid endpoint address in port AC_x0020_Generic_x0020_Web_0020_ServiceSoap in service AC_x0020_Generic_x0020_Web_x0020_ServiceLocator: ** at org.apache.axis.wsdl.toJava.JavaServiceImplWriter.writeFileBody(JavaServiceImplWriter.ja a:242) at org.apache.axis.wsdl.toJava.JavaWriter.generate(JavaWriter.java:127) at org.apache.axis.wsdl.toJava.JavaServiceWriter.generate(JavaServiceWriter.java:112) at org.apache.axis.wsdl.toJava.JavaGeneratorFactory$Writers.generate(JavaGeneratorFactory.j va:421) at org.apache.axis.wsdl.gen.Parser.generate(Parser.java:476) at org.apache.axis.wsdl.gen.Parser.access$000(Parser.java:45) at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:362) at java.lang.Thread.run(Thread.java:534)</p> <p>asdf</p> <pre><code>&lt;wsdl:portType name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap"&gt; &lt;wsdl:operation name="Provision"&gt; &lt;wsdl:input message="tns:ProvisionSoapIn" /&gt; &lt;wsdl:output message="tns:ProvisionSoapOut" /&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" type="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap"&gt; &lt;soap:binding transport="http://schemas.xmlsoap.org/soap/http" /&gt; &lt;wsdl:operation name="Provision"&gt; &lt;soap:operation soapAction="http://xmlns.fmr.com/systems/dev/aar/2008/05/GenericWebService/Provision" style="document" /&gt; &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;soap:header message="tns:ProvisionServiceProcessingDirectives" part="ServiceProcessingDirectives" use="literal" /&gt; &lt;soap:header message="tns:ProvisionServiceCallContext" part="ServiceCallContext" use="literal" /&gt; &lt;/wsdl:input&gt; &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name="AC_x0020_Generic_x0020_Web_x0020_Service"&gt; &lt;wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"&gt;Generic web service definition for provisioning requests callable by AccessCENTRAL&lt;/wsdl:documentation&gt; &lt;wsdl:port name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" binding="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap"&gt; &lt;soap:address location="" /&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; </code></pre> <p><strong>UPDATED SOLUTION:</strong> The problem was that the parser needed a value in the &lt;soap:address location="" /&gt; for it to complete. I added the URL of my service and it worked.<br /> New Lines looked like:</p> <pre><code>&lt;soap:address location="" http://localhost:8080/axis/services/AC_x0020_Generic_x0020_Web_x0020_Service" /&gt; </code></pre> http://stackoverflow.com/questions/1257376/interesting-project-to-learn-c/1257615#1257615 1 Answer by Ben for Interesting project to learn C? Ben 2009-08-10T22:35:09Z 2009-08-10T22:35:09Z <p>When I want to learn a new language I always come up with some utility that I would find useful and write that. I find that writing an actual program that is going to be used teaches me more than just proof of concepts.</p> <p>For example, you might write a program that, starting at specified directory it will transverse down building a list of all files and do something with them. Like give you simple list of all files larger than a specified size. Then figure out how to add filters so that when complete you can use it to clean up directories. It might look for the word "backup" or files that contain tmp. Don't forget to have at least one function that passes a pointer to a pointer to get a good feel for them.</p> <p>Yes, i know you can do that as a script but you can also customize to something specific to you.</p> http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator 3 Looking for Java Telnet emulator Ben 2009-07-28T18:19:40Z 2009-07-31T22:09:11Z <p>I am writing a back end program that telnets into a server, runs some commands and saves all the output from those commands. Something just like Expect.</p> <p>I would like to use an open source solution that is well supported and runs with JDK 6. </p> <p>I have found 3 options so far and would like some help deciding which one (or a better suggestion) to use.</p> <p>commons-net – This is very well supported but I having trouble getting a simple “Log in and do ‘ls’” command working. I would prefer to use this library, if anyone can provide a simple example (and not the example that comes with it that takes input from the user) I would like to go that route. </p> <p>If I’m unable to use commons-net the next two options are:</p> <p>JExpect – This is not that hard to use, does what I need but how well supported is it? Will it work with JDK 6, I think so.</p> <p>Java Telnet Application (jta26) – This was easy to use but I’m not sure how versatile it is. I didn’t see any place to set a timeout value in the TelnetWrapper. I also was not sure if this code is being maintained since the last update to the site was in 2005. (<a href="http://www.javassh.org" rel="nofollow">http://www.javassh.org</a>)</p> <p>I know this is somewhat opinion oriented and hope SO is a good place to help me make a decision so I don’t start down one road and find out later it’s not what I’m looking for. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator/1213188#1213188 1 Answer by Ben for Looking for Java Telnet emulator Ben 2009-07-31T15:28:42Z 2009-07-31T22:09:11Z <p>Found what I was looking for here: <a href="http://twit88.com/blog/2007/12/22/java-writing-an-automated-telnet-client/" rel="nofollow">http://twit88.com/blog/2007/12/22/java-writing-an-automated-telnet-client/</a></p> <p><strong>You will need to modify the prompt variable.</strong></p> <p>Copy of code:</p> <pre><code>import org.apache.commons.net.telnet.TelnetClient; import java.io.InputStream; import java.io.PrintStream; public class AutomatedTelnetClient { private TelnetClient telnet = new TelnetClient(); private InputStream in; private PrintStream out; private String prompt = "%"; public AutomatedTelnetClient(String server, String user, String password) { try { // Connect to the specified server telnet.connect(server, 23); // Get input and output stream references in = telnet.getInputStream(); out = new PrintStream(telnet.getOutputStream()); // Log the user on readUntil("login: "); write(user); readUntil("Password: "); write(password); // Advance to a prompt readUntil(prompt + " "); } catch (Exception e) { e.printStackTrace(); } } public void su(String password) { try { write("su"); readUntil("Password: "); write(password); prompt = "#"; readUntil(prompt + " "); } catch (Exception e) { e.printStackTrace(); } } public String readUntil(String pattern) { try { char lastChar = pattern.charAt(pattern.length() - 1); StringBuffer sb = new StringBuffer(); boolean found = false; char ch = (char) in.read(); while (true) { System.out.print(ch); sb.append(ch); if (ch == lastChar) { if (sb.toString().endsWith(pattern)) { return sb.toString(); } } ch = (char) in.read(); } } catch (Exception e) { e.printStackTrace(); } return null; } public void write(String value) { try { out.println(value); out.flush(); System.out.println(value); } catch (Exception e) { e.printStackTrace(); } } public String sendCommand(String command) { try { write(command); return readUntil(prompt + " "); } catch (Exception e) { e.printStackTrace(); } return null; } public void disconnect() { try { telnet.disconnect(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { try { AutomatedTelnetClient telnet = new AutomatedTelnetClient( "myserver", "userId", "Password"); System.out.println("Got Connection..."); telnet.sendCommand("ps -ef "); System.out.println("run command"); telnet.sendCommand("ls "); System.out.println("run command 2"); telnet.disconnect(); System.out.println("DONE"); } catch (Exception e) { e.printStackTrace(); } } } </code></pre> http://stackoverflow.com/questions/1195594/is-there-a-java-tool-to-automate-the-reduction-of-class-and-method-visibility/1195984#1195984 0 Answer by Ben for Is there a Java tool to automate the reduction of class and method visibility? Ben 2009-07-28T18:43:19Z 2009-07-28T18:43:19Z <p>It's not an automated solution but could you bring up the Package View in eclipse, then start making methods and classes private. If it causes a problem you will see it almost instanly in the package viewer.</p> http://stackoverflow.com/questions/1168258/htmlunit-property-undefined-script-error 0 HtmlUnit property undefined script error Ben 2009-07-22T21:08:08Z 2009-07-24T13:36:18Z <p>I’m submitting a form using java HtmlUnit package. I am able to get pages and submit forms but on one page I’m getting a ScriptException error. The message is “Cannot set property "disabled" of undefined to "0"”</p> <p>I think it might be caused by a javascript method that tries to set a variable that has not been declared in the form but I’m not sure.</p> <pre><code>tempForm = MyPage.getFormByName("menu_form"); tempForm.getInputByName("userId").setValueAttribute("myusername"); HtmlPage editSubscriberPage = (HtmlPage) tempForm.getInputByName("submit_button").click(); EcmaError: lineNumber=[824] column=[0] lineSource=[null] name=[TypeError] sourceName=[script in https://labserver.comp.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&amp;return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&amp;selected=2322020c341b11de96c3000423d43f1d from (9, 32) to (840, 15)] message=[TypeError: Cannot set property "disabled" of undefined to "0" (script in https://myserver.company.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&amp;return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&amp;selected=22020c341b11de96c3000423d43f1d from (9, 32) to (840, 15)#824)] com.gargoylesoftware.htmlunit.ScriptException: TypeError: Cannot set property "disabled" of undefined to "0" (script in https://labserver.comp.com/mcwebadm/cgi-bin/edit_local.pl?operation=edit&amp;return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&amp;selected=22020c341b11de96c3000423d43f1d from (9, 32) to (840, 15)#824) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine$HtmlUnitContextAction.run(JavaScriptEngine.java:534) at net.sourceforge.htmlunit.corejs.javascript.Context.call(Context.java:515) at net.sourceforge.htmlunit.corejs.javascript.ContextFactory.call(ContextFactory.java:507) at com.gargoylesoftware.htmlunit.javascript.JavaScriptEngine.callFunction(JavaScriptEngine.java:464) at com.gargoylesoftware.htmlunit.html.HtmlPage.executeJavaScriptFunctionIfPossible(HtmlPage.java:992) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeEventHandler(EventListenersContainer.java:164) at com.gargoylesoftware.htmlunit.javascript.host.EventListenersContainer.executeBubblingListeners(EventListenersContainer.java:177) at com.gargoylesoftware.htmlunit.javascript.host.Node.fireEvent(Node.java:584) at com.gargoylesoftware.htmlunit.html.HtmlElement$2.run(HtmlElement.java:936) at net.sourceforge.htmlunit.corejs.javascript.Context.call(Context.java:515) at net.sourceforge.htmlunit.corejs.javascript.ContextFactory.call(ContextFactory.java:507) at com.gargoylesoftware.htmlunit.html.HtmlElement.fireEvent(HtmlElement.java:941) at com.gargoylesoftware.htmlunit.html.HtmlPage.executeEventHandlersIfNeeded(HtmlPage.java:1237) at com.gargoylesoftware.htmlunit.html.HtmlPage.initialize(HtmlPage.java:183) at com.gargoylesoftware.htmlunit.WebClient.loadWebResponseInto(WebClient.java:449) at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:329) at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:354) at com.gargoylesoftware.htmlunit.html.HtmlForm.submit(HtmlForm.java:179) at com.gargoylesoftware.htmlunit.html.HtmlSubmitInput.doClickAction(HtmlSubmitInput.java:82) at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1329) at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1288) at com.gargoylesoftware.htmlunit.html.HtmlElement.click(HtmlElement.java:1257) at TestOne.run(TestOne.java:77) at TestOne.main(TestOne.java:215) </code></pre> http://stackoverflow.com/questions/1168258/htmlunit-property-undefined-script-error/1174105#1174105 0 Answer by Ben for HtmlUnit property undefined script error Ben 2009-07-23T19:55:21Z 2009-07-24T13:36:18Z <p>This was caused my a javascript error on the page that was being loaded. I set the webClient.setThrowExceptionOnScriptError(false); but it still threw the exception. </p> <p>SOLUTION: If you catch the ScriptException the page is STILL fully loaded and you can just continue processing and ignoring the exception.</p> <p>Example of HTML that fails:</p> <pre><code>&lt;html&gt; &lt;Head&gt;&lt;title&gt;JS Test&lt;/title&gt; &lt;script type="text/javascript"&gt; function run_js() { form.myinput.value = "from on body"; // document.myform.myinput.value = "from body"; } &lt;/script&gt; &lt;/head&gt; &lt;body onload="run_js()"&gt; The Body. &lt;form name="myform"&gt; &lt;input name="myinput" type="text"/&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/944581/can-htmlunit-enter-data-in-password-fields/1166761#1166761 0 Answer by Ben for Can HTMLUnit enter data in password fields? Ben 2009-07-22T17:09:34Z 2009-07-22T17:09:34Z <p>It does work, I have it working.</p> <p>I would check to make sure you getting the correct input field name. If not, can you post the stacktrace.</p> <p>The below code works for me. form.getInputByName("password").setValueAttribute("1234");</p> http://stackoverflow.com/questions/836105/setting-up-jboss5-with-myeclipse/1104202#1104202 0 Answer by Ben for setting up JBoss5 with MyEclipse Ben 2009-07-09T14:22:45Z 2009-07-09T14:22:45Z <p>My first guess is that the server is trying to use a port that is alredy in use.</p> <p>Do you have any other web servers installed? I know some have services that start up automatically.</p> <p>To check for this on a windows box I usually reboot and the very first program I start up is the web server so it locks any ports it needs.</p> http://stackoverflow.com/questions/1064543/where-to-put-a-local-xsd-file-in-jboss-4-05/1104166#1104166 0 Answer by Ben for Where to put a local xsd file in Jboss 4.05 Ben 2009-07-09T14:14:39Z 2009-07-09T14:14:39Z <p>I think the xsd needs to be in the class path.</p> <p>It's the server that needs it then make sure the path to the file is in the Jboss start up classpath. You can change the startup classpath in the <em>run.bat</em> or <em>run.sh</em> file.</p> <p>If the probem is with a deployment then the file needs to go in that deployment's classpath.</p> <p>ex: for my axis deployment the xsd would be in the classes directoy.</p> <p><em>jboss-4.0.2\server\default\deploy\axis.war\WEB-INF\classes</em></p> http://stackoverflow.com/questions/1104055/java-ldap-with-sasl 0 Java LDAP with SASL Ben 2009-07-09T13:57:12Z 2009-07-09T13:57:12Z <p>Hi,</p> <p>I am using Java 1.2 with the Netscape ldapjdk.jar and trying to make an LDAP connection to one of our servers that needs SASL. I’m also relativity new to LDAP. I do know that java EE has built in LDAP but I am not able to use it at this time.</p> <p>I have been able to make a connection to another server using regular LDAP but I am not sure what I need to put into the parameters. If someone has a simple example that would be helpful.</p> <p>I think the class below is what I need to use:</p> <pre><code>String ldapUserDn = "cn=mycomputer,dc=Dcname"; String[] mechanisms = {"DIGEST-MD5"}; LDAPSaslBind saslBind = new LDAPSaslBind( String ldapUserDn, mechanisms, String packageName, Hashtable props, Object cbh); </code></pre> http://stackoverflow.com/questions/748937/java-netscape-ldap-delete 0 Java Netscape LDAP Delete Ben 2009-04-14T19:09:22Z 2009-04-15T15:12:21Z <p>I have been using the Java Netscape LDAP library to modify LDAP entries (<a href="http://www.mozilla.org/directory/javasdk.html" rel="nofollow">http://www.mozilla.org/directory/javasdk.html</a>). I now need a way to delete an entry. I looked through the library but could not find anything that I think would work.</p> <p>Found “LDAPDelete” but that looks like it’s used from the command line. </p> <p>If someone could post some sample code of how do this with an object ID it would very helpful.</p> <p>ADDED: After searching and finding the object I used the return value from getDN() method as the DN string.</p> http://stackoverflow.com/questions/54694/what-can-i-do-to-get-better-at-estimating-how-long-projects-are-going-to-take/202579#202579 1 Answer by Ben for What can I do to get better at estimating how long projects are going to take? Ben 2008-10-14T20:03:01Z 2008-10-14T20:03:01Z <p>There are a lot of good suggestions on how to do the estimate but they all take time. To get you the time to do an estimate correctly I use this tactic. </p> <p>When I’m asked for an estimate with out being given time to figure it out how long the project will take I always come back and give an estimate I know management will not like. Let’s say you think a project will take about 3 months. I will say something like 6 months to a year. They usually give me a bad look and I say, “Well, if you let me do a real estimate I can probably give you a better estimate.”</p> <p>Also, NEVER say a project will take 2-3 months! You are thinking the project will take 3 months and your manager will only hear 2 months.</p> http://stackoverflow.com/questions/141641/what-constitutes-effective-perl-training-for-non-perl-developers/141676#141676 4 Answer by Ben for What constitutes effective Perl training for non-Perl developers? Ben 2008-09-26T20:13:09Z 2008-10-08T06:53:54Z <p>I'm a java programmer who recently had to pick up Perl. The part I found hardest to get used to were all the special built in variables like $_ $~ $' and so on. Until you get used to them it's hard to keep track of which one does what.</p> <p>And, of course, the use of regular expressions. </p> <p>For example, I have to maintain code and when I saw the line below for the first time it was a little confusing. As a java programmer it looks like gibberish.</p> <pre><code>next unless "$_" !~ /^#/; </code></pre> http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/176584#176584 32 Answer by Ben for What was your first programming language? Ben 2008-10-06T23:10:20Z 2008-10-06T23:10:20Z <p>Basic and Logo. GO TURTLE GO</p> http://stackoverflow.com/questions/159567/how-can-i-parse-the-first-middle-and-last-name-from-a-full-name-field-in-sql/159742#159742 1 Answer by Ben for How can I parse the first, middle and last name from a full name field in SQL? Ben 2008-10-01T21:04:30Z 2008-10-01T21:04:30Z <p>I would do this as an iterative process. </p> <p>1) Dump the table to a flat file to work with.</p> <p>2) Write a simple program to break up your Names using a space as separator where firsts token is the first name, if there are 3 token then token 2 is middle name and token 3 is last name. If there are 2 tokens then the second token is the last name. (Perl, Java, or C/C++, language doesn't matter)</p> <p>3) Eyeball the results. Look for names that don't fit this rule. </p> <p>4) Using that example, create a new rule to handle that exception...</p> <p>5) Rinse and Repeat</p> <p>Eventually you will get a program that fixes all your data.</p> http://stackoverflow.com/questions/150043/python-v-perl/150066#150066 5 Answer by Ben for Python v. Perl Ben 2008-09-29T18:43:18Z 2008-09-29T18:43:18Z <p>I agree that Python is the langauge of today and might be better but I would also consider the environment you work in.</p> <p>In my case Perl is common on all our servers and it's not always easy to get Python installed. Also, most people in my organization know perl and not python so if someone needs to give me a hand or maintain a program when I'm on vacation again Perl will be the better choice.</p> http://stackoverflow.com/questions/149651/the-future-of-web-programming-languages/149981#149981 1 Answer by Ben for The Future of Web Programming Languages Ben 2008-09-29T18:18:18Z 2008-09-29T18:18:18Z <p>I suggest getting a strong working knowldge of the fundamentals that can translate to most languages. </p> <p>I would suggest knowing some C because it teaches you pointers, memory and a lot of other programming concepts that will help you with other langauges.</p> http://stackoverflow.com/questions/149898/preconditions-and-exceptions/149920#149920 1 Answer by Ben for preconditions and exceptions Ben 2008-09-29T18:03:59Z 2008-09-29T18:03:59Z <p>I think it's ok to create a different exception for all your exceptions as long as you plan on using and handling them.</p> <p>I have found that the better the error/exception handling the easier it is to debug software in the later stages. </p> <p>For example: If you have a generic excpeiton to handle all bad input then you must look at everything that was passed into the method if there is an error. If you have an excpetion of all the types of bad conditions you will know exaclty where to look.</p> http://stackoverflow.com/questions/141869/best-place-for-log-files-in-an-in-house-it-environment/141887#141887 0 Answer by Ben for Best place for log files in an in-house IT environment Ben 2008-09-26T20:48:46Z 2008-09-26T20:48:46Z <p>Can you have the log files writtin to peoples local machine and then have a script that pulls them to a common file server as a nightly batch job?</p> http://stackoverflow.com/questions/141720/how-do-you-compare-structs-for-equality-in-c/141739#141739 3 Answer by Ben for How do you compare structs for equality in C? Ben 2008-09-26T20:24:32Z 2008-09-26T20:24:32Z <p>If you do it a lot I would suggest writing a function that compares the two structures. That way, if you ever change the structure you only need to change the compare in one place. </p> <p>As for how to do it.... You need to compare every element individually</p> http://stackoverflow.com/questions/141525/absolute-beginners-guide-to-bit-shifting/141568#141568 0 Answer by Ben for Absolute Beginner's Guide to Bit Shifting? Ben 2008-09-26T19:53:55Z 2008-09-26T19:59:44Z <p>Wikipedia does a great job of explaining it: <a href="http://en.wikipedia.org/wiki/Bitwise_operation" rel="nofollow">http://en.wikipedia.org/wiki/Bitwise_operation</a></p> http://stackoverflow.com/questions/140270/humor-in-code/141437#141437 0 Answer by Ben for Humor in code Ben 2008-09-26T19:30:53Z 2008-09-26T19:30:53Z <p>When ever I test a system that needs information about people I always use The Simpsons characters. There are lots of them and when I see "Ned Flanders 132 Evergreen Terrace. Springfield MA I know it's one i created.<br /> (yes, I know it's the wrong state but I'm from MA and it's a debatable issue) It's also fun to see which of my co-workes notices it first.</p> http://stackoverflow.com/questions/1503956/jboss-log-file-maintenance-cleanup/1504199#1504199 Comment by Ben on JBoss Log File Maintenance/Cleanup Ben 2009-10-01T16:42:35Z 2009-10-01T16:42:35Z I looked up the command and it looks like it will solve my problem if I just make it -mtime +90. http://stackoverflow.com/questions/1439741/jboss-standard-out-timestamp/1440128#1440128 Comment by Ben on Jboss Standard Out Timestamp Ben 2009-09-17T17:51:51Z 2009-09-17T17:51:51Z I do know about the log files and should start using them. I was just wondering. Thanks. http://stackoverflow.com/questions/3553/one-piece-of-advice/3663#3663 Comment by Ben on One piece of advice Ben 2009-09-11T18:03:04Z 2009-09-11T18:03:04Z I suggest volunteering. Great way to build karma AND meet women. Male/Female ratio it's the anti-engineering profession. http://stackoverflow.com/questions/1278364/java-telnetclient-hangs-at-press-any-key-to-continue/1278550#1278550 Comment by Ben on Java TelnetClient hangs at “press any key to continue” Ben 2009-09-11T17:37:06Z 2009-09-11T17:37:06Z I have looked at both these and I am flushing my buffer. (many times and in many places). I also looked for additional text but did not see any. http://stackoverflow.com/questions/1278364/java-telnetclient-hangs-at-press-any-key-to-continue/1278916#1278916 Comment by Ben on Java TelnetClient hangs at “press any key to continue” Ben 2009-08-14T16:59:08Z 2009-08-14T16:59:08Z I have looked into the other options. I wanted to do it in Java to go with the most supported solution. I think commons is the best of the available technologies. http://stackoverflow.com/questions/1267198/best-coding-style-checking-if-a-character-is-a-valid-character/1267213#1267213 Comment by Ben on Best coding Style - Checking if a character is a valid character Ben 2009-08-12T17:45:20Z 2009-08-12T17:45:20Z I like this one the best because it's the simplest. If speed is not an issue I ALWAYS go for readiblity because you never know who is going to have to maintain your code when you are not around. http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator/1197582#1197582 Comment by Ben on Looking for Java Telnet emulator Ben 2009-07-31T15:24:42Z 2009-07-31T15:24:42Z Thanks for the good idea, i tried it but it was not exactly what I was looking for. After a lot more digging I was able to find a good example I'm posting. http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator/1195842#1195842 Comment by Ben on Looking for Java Telnet emulator Ben 2009-07-28T18:38:14Z 2009-07-28T18:38:14Z That is the exact example I don't need. I have seen it but I don't understand how it works. I know it takes input from the user and that's not what I'm looking for. Where do I put in an &quot;ls&quot; command and see the output? http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator/1195834#1195834 Comment by Ben on Looking for Java Telnet emulator Ben 2009-07-28T18:36:16Z 2009-07-28T18:36:16Z That looks like it would work but I have the same problem as with my other solutions, it's not as well supported. I would probably use JExpect or JTA instead. http://stackoverflow.com/questions/1168258/htmlunit-property-undefined-script-error Comment by Ben on HtmlUnit property undefined script error Ben 2009-07-23T18:33:47Z 2009-07-23T18:33:47Z I just tested it again and just noticed the page that loads does have a JS error. Is there a way I can tell HtmlUnit to keep processing like ie does? http://stackoverflow.com/questions/1168258/htmlunit-property-undefined-script-error/1171563#1171563 Comment by Ben on HtmlUnit property undefined script error Ben 2009-07-23T18:08:03Z 2009-07-23T18:08:03Z I'm not able to provide a public test case. I'm working on creating one. I have checked and I'm using version 2.5. I was hoping someone had seen something similar to this. http://stackoverflow.com/questions/748937/java-netscape-ldap-delete/749021#749021 Comment by Ben on Java Netscape LDAP Delete Ben 2009-04-15T15:10:30Z 2009-04-15T15:10:30Z I hadn't noticed that and was haivng trouble with the DN but got it working. Thanks! http://stackoverflow.com/questions/278432/wsdl2java-error-emitter-failure-invalid-endpoint-address-in-port/278851#278851 Comment by Ben on wsdl2java Error: Emitter failure. Invalid endpoint address in port Ben 2008-11-10T19:40:35Z 2008-11-10T19:40:35Z Thanks for the help, that worked! http://stackoverflow.com/questions/278432/wsdl2java-error-emitter-failure-invalid-endpoint-address-in-port Comment by Ben on wsdl2java Error: Emitter failure. Invalid endpoint address in port Ben 2008-11-10T18:23:00Z 2008-11-10T18:23:00Z Do you need more code than that? http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103916#103916 Comment by Ben on What was your first home computer? Ben 2008-10-14T20:12:32Z 2008-10-14T20:12:32Z That's just too funny. got my upvote.