User Ben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T07:59:51Zhttp://stackoverflow.com/feeds/user/16424http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1503956/jboss-log-file-maintenance-cleanup0JBoss Log File Maintenance/CleanupBen2009-10-01T13:27:14Z2009-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-timestamp1Jboss Standard Out TimestampBen2009-09-17T15:56:08Z2009-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#13001341Answer by Ben for What benefits does main(...) provide over using a static-initializer as a pseudo entry-point?Ben2009-08-19T13:59:03Z2009-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#12800151Answer by Ben for What are the common tricks in eclipse when working with jsp files?Ben2009-08-14T20:28:17Z2009-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-continue1Java TelnetClient hangs at “press any key to continue”Ben2009-08-14T14:57:05Z2009-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#12675970Answer by Ben for Confusion in line about the difference between instance and object in context of JavaBen2009-08-12T17:35:10Z2009-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#12623902Answer by Ben for Natural sort order string comparison in Java - is one built in?Ben2009-08-11T19:22:47Z2009-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-port0wsdl2java Error: Emitter failure. Invalid endpoint address in portBen2008-11-10T16:49:12Z2009-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><wsdl:portType name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
<wsdl:operation name="Provision">
<wsdl:input message="tns:ProvisionSoapIn" />
<wsdl:output message="tns:ProvisionSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" type="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="Provision">
<soap:operation soapAction="http://xmlns.fmr.com/systems/dev/aar/2008/05/GenericWebService/Provision" style="document" />
<wsdl:input>
<soap:body use="literal" />
<soap:header message="tns:ProvisionServiceProcessingDirectives" part="ServiceProcessingDirectives" use="literal" />
<soap:header message="tns:ProvisionServiceCallContext" part="ServiceCallContext" use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="AC_x0020_Generic_x0020_Web_x0020_Service">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Generic web service definition for provisioning requests callable by AccessCENTRAL</wsdl:documentation>
<wsdl:port name="AC_x0020_Generic_x0020_Web_x0020_ServiceSoap" binding="tns:AC_x0020_Generic_x0020_Web_x0020_ServiceSoap">
<soap:address location="" />
</wsdl:port>
</wsdl:service>
</code></pre>
<p><strong>UPDATED SOLUTION:</strong>
The problem was that the parser needed a value in the <soap:address location="" /> for it to complete. I added the URL of my service and it worked.<br />
New Lines looked like:</p>
<pre><code><soap:address location="" http://localhost:8080/axis/services/AC_x0020_Generic_x0020_Web_x0020_Service" />
</code></pre>
http://stackoverflow.com/questions/1257376/interesting-project-to-learn-c/1257615#12576151Answer by Ben for Interesting project to learn C?Ben2009-08-10T22:35:09Z2009-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-emulator3Looking for Java Telnet emulatorBen2009-07-28T18:19:40Z2009-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#12131881Answer by Ben for Looking for Java Telnet emulatorBen2009-07-31T15:28:42Z2009-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#11959840Answer by Ben for Is there a Java tool to automate the reduction of class and method visibility?Ben2009-07-28T18:43:19Z2009-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-error0HtmlUnit property undefined script errorBen2009-07-22T21:08:08Z2009-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&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&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&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&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&return_address=%2Fmcwebadm%2Fcgi-bin%2Fmenu.pl&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#11741050Answer by Ben for HtmlUnit property undefined script errorBen2009-07-23T19:55:21Z2009-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><html>
<Head><title>JS Test</title>
<script type="text/javascript">
function run_js()
{
form.myinput.value = "from on body";
// document.myform.myinput.value = "from body";
}
</script>
</head>
<body onload="run_js()">
The Body.
<form name="myform">
<input name="myinput" type="text"/>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/944581/can-htmlunit-enter-data-in-password-fields/1166761#11667610Answer by Ben for Can HTMLUnit enter data in password fields?Ben2009-07-22T17:09:34Z2009-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#11042020Answer by Ben for setting up JBoss5 with MyEclipseBen2009-07-09T14:22:45Z2009-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#11041660Answer by Ben for Where to put a local xsd file in Jboss 4.05Ben2009-07-09T14:14:39Z2009-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-sasl0Java LDAP with SASL Ben2009-07-09T13:57:12Z2009-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-delete0Java Netscape LDAP Delete Ben2009-04-14T19:09:22Z2009-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#2025791Answer by Ben for What can I do to get better at estimating how long projects are going to take?Ben2008-10-14T20:03:01Z2008-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#1416764Answer by Ben for What constitutes effective Perl training for non-Perl developers?Ben2008-09-26T20:13:09Z2008-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#17658432Answer by Ben for What was your first programming language?Ben2008-10-06T23:10:20Z2008-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#1597421Answer by Ben for How can I parse the first, middle and last name from a full name field in SQL?Ben2008-10-01T21:04:30Z2008-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#1500665Answer by Ben for Python v. PerlBen2008-09-29T18:43:18Z2008-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#1499811Answer by Ben for The Future of Web Programming LanguagesBen2008-09-29T18:18:18Z2008-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#1499201Answer by Ben for preconditions and exceptionsBen2008-09-29T18:03:59Z2008-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#1418870Answer by Ben for Best place for log files in an in-house IT environmentBen2008-09-26T20:48:46Z2008-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#1417393Answer by Ben for How do you compare structs for equality in C?Ben2008-09-26T20:24:32Z2008-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#1415680Answer by Ben for Absolute Beginner's Guide to Bit Shifting?Ben2008-09-26T19:53:55Z2008-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#1414370Answer by Ben for Humor in codeBen2008-09-26T19:30:53Z2008-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#1504199Comment by Ben on JBoss Log File Maintenance/CleanupBen2009-10-01T16:42:35Z2009-10-01T16:42:35ZI 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#1440128Comment by Ben on Jboss Standard Out TimestampBen2009-09-17T17:51:51Z2009-09-17T17:51:51ZI 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#3663Comment by Ben on One piece of adviceBen2009-09-11T18:03:04Z2009-09-11T18:03:04ZI 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#1278550Comment by Ben on Java TelnetClient hangs at “press any key to continue”Ben2009-09-11T17:37:06Z2009-09-11T17:37:06ZI 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#1278916Comment by Ben on Java TelnetClient hangs at “press any key to continue”Ben2009-08-14T16:59:08Z2009-08-14T16:59:08ZI 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#1267213Comment by Ben on Best coding Style - Checking if a character is a valid characterBen2009-08-12T17:45:20Z2009-08-12T17:45:20ZI 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#1197582Comment by Ben on Looking for Java Telnet emulatorBen2009-07-31T15:24:42Z2009-07-31T15:24:42ZThanks 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#1195842Comment by Ben on Looking for Java Telnet emulatorBen2009-07-28T18:38:14Z2009-07-28T18:38:14ZThat 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 "ls" command and see the output?http://stackoverflow.com/questions/1195809/looking-for-java-telnet-emulator/1195834#1195834Comment by Ben on Looking for Java Telnet emulatorBen2009-07-28T18:36:16Z2009-07-28T18:36:16ZThat 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-errorComment by Ben on HtmlUnit property undefined script errorBen2009-07-23T18:33:47Z2009-07-23T18:33:47ZI 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#1171563Comment by Ben on HtmlUnit property undefined script errorBen2009-07-23T18:08:03Z2009-07-23T18:08:03ZI'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#749021Comment by Ben on Java Netscape LDAP Delete Ben2009-04-15T15:10:30Z2009-04-15T15:10:30ZI 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#278851Comment by Ben on wsdl2java Error: Emitter failure. Invalid endpoint address in portBen2008-11-10T19:40:35Z2008-11-10T19:40:35ZThanks for the help, that worked!
http://stackoverflow.com/questions/278432/wsdl2java-error-emitter-failure-invalid-endpoint-address-in-portComment by Ben on wsdl2java Error: Emitter failure. Invalid endpoint address in portBen2008-11-10T18:23:00Z2008-11-10T18:23:00ZDo you need more code than that?http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/103916#103916Comment by Ben on What was your first home computer?Ben2008-10-14T20:12:32Z2008-10-14T20:12:32ZThat's just too funny. got my upvote.