User mjustin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T14:26:52Zhttp://stackoverflow.com/feeds/user/80901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1802070#18020702Answer by mjustin for Should I start my new shareware project in C# or Delphi?mjustin2009-11-26T07:26:32Z2009-11-28T08:03:30Z<p>In Delphi, you can use pointers (and sometimes they are necessary, for API calls for example) - so you are closer to C than with C#. There is a reason why Java and C# do not have pointers: security.</p>
<blockquote>
<p>"Most studies agree that pointers are
one of the primary features that
enable programmers to inject bugs into
their code."</p>
</blockquote>
<p><a href="http://java.sun.com/docs/white/langenv/Simple.doc2.html" rel="nofollow">http://java.sun.com/docs/white/langenv/Simple.doc2.html</a></p>
<blockquote>
<p>In the C# programming language,
pointers are supported only under
certain conditions: any block of code
including pointers must be marked with
the unsafe keyword.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Pointer%5F%28computing%29#C.23" rel="nofollow">http://en.wikipedia.org/wiki/Pointer_%28computing%29#C.23</a></p>
<blockquote>
<p>"Pointers are like jumps, leading
wildly from one part of the data
structure to another. Their
introduction into high-level languages
has been a step backwards from which
we may never recover."</p>
</blockquote>
<p>— <a href="http://dictionary.reference.com/browse/pointer" rel="nofollow">C.A.R.Hoare "Hints on Programming Language Design", 1973, Prentice-Hall collection of essays and papers by Tony Hoare</a></p>
http://stackoverflow.com/questions/1805633/delphi-threaded-list-of-thread-jobs-queueing/1810469#18104690Answer by mjustin for Delphi: Threaded list of thread jobs - queueingmjustin2009-11-27T20:07:15Z2009-11-27T20:07:15Z<p>Generics Collections TQueue could be used as the container for the individual job objects.</p>
<p>A worker thread then would pick up ('extract') the first job and execute it, and then continue until the queue is empty - then it would have to pause until another job has been added to the queue and continue.</p>
<p>You would need to implement thread-safe access to the queue for adding new jobs.</p>
http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc0How can I access Blackfish for Windows over JDBC?mjustin2009-11-26T15:26:40Z2009-11-26T19:19:39Z
<p>For Blackfish for Windows which is included in Delphi 2009 I would like to write a Java client and use a JDBC connection. If I understand correctly, this is supported: <a href="http://edn.embarcadero.com/de/article/36851" rel="nofollow">http://edn.embarcadero.com/de/article/36851</a></p>
<p>Where can I find the JDBC driver for Blackfish?</p>
http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#18041392Answer by mjustin for How to get the current logged on user, including domain in Delphi 2009?mjustin2009-11-26T14:53:53Z2009-11-26T17:45:41Z<p>In your other question you wrote that you configured ASP.NET to use Windows authentication with impersonation:</p>
<pre><code> <system.web>
...
<authentication mode="Windows"/>
<identity impersonate="true"/>
...
</system.web>
</code></pre>
<p>Does the ASP.NET application show the correct credentials (user and domain)?</p>
<p>Are you invoking the Delphi function using the correct Identity context, like</p>
<pre><code>WindowsIdentity winId = (WindowsIdentity)HttpContext.Current.User.Identity;
try
{
ctx = winId.Impersonate();
// call Delphi function, passing the identity context
}
catch
{
}
finally
{
if (ctx != null)
ctx.Undo();
}
</code></pre>
<p>Update:</p>
<p>If the COM abject is called from the code behind for a web form page, you can try to set ASPCOMPAT property of the web form page to true.</p>
<p>See: </p>
<ul>
<li><a href="http://www.ureader.com/msg/110628.aspx" rel="nofollow">http://www.ureader.com/msg/110628.aspx</a></li>
<li><a href="http://dotnetdebug.net/2006/06/13/aspnet-web-application-and-sta-com-objects-security-issues/" rel="nofollow">http://dotnetdebug.net/2006/06/13/aspnet-web-application-and-sta-com-objects-security-issues/</a></li>
</ul>
<blockquote>
<p>The "identity" tag makes sure that the
thread executing the request (the MTA
thread) will impersonate its security
context to the user specified in the
tag but our STA COM object
eventually was created on the default
STA thread which was not impersonate,
causing it to get the security context
of the process (which was IUSR_XXX –
the least powerful user of all).</p>
</blockquote>
http://stackoverflow.com/questions/1802819/how-can-i-add-a-new-application-new-file-wizard-to-the-delphi-ide-new-dia0How can I add a new application / new file wizard to the Delphi IDE "New ..." dialog?mjustin2009-11-26T10:18:26Z2009-11-26T13:53:13Z
<p>Are there examples and resources (source code and documentation) available which show how a 'New xyz Application' or 'New xyz Document' wizard can be created with Delphi which then will appear in the new project / new file dialog of the Delphi IDE?</p>
<p>What I want to do: for some of my libraries I would like to add a new project type and a new file type to the IDE dialogs, which will guide the developer through a wizard and then create some customized auto-generated source code.</p>
<p>So far I found this short overview:</p>
<p><a href="http://delphi.about.com/od/objectpascalide/a/wizardsexperts.htm" rel="nofollow">Experts and Wizards in Delphi</a></p>
<p>And this article
<a href="http://edn.embarcadero.com/article/28050" rel="nofollow">OTA: Visual design of Wizards</a> </p>
<p>Note that this question is not about wizard or GUI creation in general but on how the Delphi IDE can be extended to include my own new project / file type dialogs. The new project and file types should appear <strong>in the new file or new project type dialog</strong> in the matching category (or even a new one).</p>
http://stackoverflow.com/questions/1800485/atch-the-start-applications/1803456#18034561Answer by mjustin for Сatch the start applications mjustin2009-11-26T12:40:30Z2009-11-26T13:16:18Z<p>Windows Management Instrumentation offers event subscription. The nice thing with WMI is that it works remote too, using DCOM and SOAP.</p>
<p><a href="http://en.wikipedia.org/wiki/Windows%5FManagement%5FInstrumentation#Features" rel="nofollow">WMI offers the capability to notify a subscriber for any event it is interested in.</a></p>
<blockquote>
<p>WMI uses the WMI Query Language (WQL)
to submit WQL event queries and
defines the type of events to be
returned. The eventing mechanism, with
all related callbacks, is part of the
WMI COM/DCOM and automation
interfaces.</p>
</blockquote>
<p>A free WMI client implementation for Delphi is avalable online (not sure if it supports event callbacks): </p>
<p><a href="http://www.magsys.co.uk/delphi/magwmi.asp" rel="nofollow">Magenta Systems WMI and SMART Component</a></p>
http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2ee3Where can I find good unit testing resources for EJB and J2EE?mjustin2009-11-14T09:32:43Z2009-11-24T01:40:21Z
<p>Which <strong>online resources</strong>, <strong>tutorials</strong> or <strong>books</strong> can you recommended to get started with unit testing J2EE / EJB3 applications?</p>
<p>So far I have found <a href="http://ejb3unit.sourceforge.net/" rel="nofollow">ejb3unit</a>, <a href="http://jakarta.apache.org/cactus/" rel="nofollow">Jakarta Cactus</a> and the <a href="http://cargo.codehaus.org/Maven2+plugin" rel="nofollow">Maven Cargo plugin</a>. It would be helpful if there are complete working examples, ready to run.</p>
<p>Target containers are the open source products <a href="https://glassfish.dev.java.net/" rel="nofollow">GlassFish</a>, <a href="http://www.jboss.org/jbossas/" rel="nofollow">JBoss</a> and <a href="http://openejb.apache.org/" rel="nofollow">Apache OpenEJB</a>.</p>
http://stackoverflow.com/questions/812599/is-there-a-dependency-injection-framework-for-delphi-or-free-pascal4Is there a Dependency Injection Framework for Delphi or Free Pascal?mjustin2009-05-01T18:29:28Z2009-11-23T21:35:08Z
<p>For some of my Delphi / Free Pascal projects I consider using Dependency Injection.
Are there already implementations available (or in development) which provide some basic DI (IoC) functionality?</p>
<p>Edit: I am not looking for a .NET based solution for Delphi.Net or Prism - in this case, the question would have been: which one should I pick :)</p>
http://stackoverflow.com/questions/1779348/remote-servlet-comms/1779507#17795070Answer by mjustin for Remote Servlet Commsmjustin2009-11-22T18:24:26Z2009-11-22T18:24:26Z<p>It looks like this isAvailable() method in Servlet B accesses some kind of "global" data which is stored in the Servlet. Could you extract this object to a separate Singleton which then is available for both Servlets?</p>
http://stackoverflow.com/questions/1274615/how-do-i-see-what-queries-are-running-on-an-interbase-database/1776754#17767540Answer by mjustin for How do I see what queries are running on an interbase databasemjustin2009-11-21T20:55:14Z2009-11-21T20:55:14Z<p><a href="http://www.ibexpert.com/" rel="nofollow">IBExpert</a> includes a <a href="http://www.ibexpert.info/ibe/index.php?n=Doc.SQLProxy" rel="nofollow">Interbase Proxy Service</a> which can be used to log all SQL statements: instead of connecting with the Interbase server, all client applications use the proxy address. This will make the Proxy a bottleneck but it has the advantage that every statement will be captured and logged.</p>
http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2ee/1774754#17747540Answer by mjustin for Where can I find good unit testing resources for EJB and J2EE?mjustin2009-11-21T06:47:28Z2009-11-21T06:47:28Z<p><a href="http://labs.jboss.com/jsfunit/" rel="nofollow">JSFUnit</a> is "a test framework for JSF applications. It is designed to allow complete integration testing and unit testing of JSF applications using a simplified API. JSFUnit tests run inside the container, which provides the developer full access to managed beans, the FacesContext, EL Expressions, and the internal JSF component tree. At the same time, you also have access to parsed HTML output of each client request."</p>
http://stackoverflow.com/questions/1624779/how-can-i-add-a-interbase-jdbc-connection-pool-in-glassfish-v30How can I add a InterBase JDBC connection pool in GlassFish V3?mjustin2009-10-26T13:26:55Z2009-11-20T21:16:26Z
<p>Using: InterBase 2007, latest interclient.jar (8.1.8), GlassFish v3 b68.</p>
<p>I try to configure the connection pool in the web admin console page "Edit Connection Pool" with these settings:</p>
<ul>
<li>Resource Type: javax.sql.DataSource</li>
<li>Datasource Classname: interbase.interclient.DataSource</li>
</ul>
<p>A 'ping' in the same screen returns this error message: </p>
<blockquote>
<p>java.lang.NullPointerException: "null"
interbase.interclient.Connection.(Unknown
Source)
interbase.interclient.DataSource.getConnection(Unknown
Source)
interbase.interclient.DataSource.getConnection(Unknown
Source)
com.sun.gjc.spi.DSManagedConnectionFactory.createManagedConnection(DSManagedConnectionFactory.java:102)
com.sun.enterprise.connectors.service.ConnectorConnectionPoolAdminServiceImpl.getManagedConnection(ConnectorConnectionPoolAdminServiceImpl.java:517)
com.sun.enterprise.connec...</p>
</blockquote>
<p>The interclient.jar 8.1.8 (Interbase 2007) is in the domain lib directory.</p>
http://stackoverflow.com/questions/1736102/how-can-i-set-the-default-file-format-in-the-delphi-ide-to-utf82How can I set the default file format in the Delphi IDE to UTF8?mjustin2009-11-15T00:21:56Z2009-11-18T21:56:58Z
<p>Delphi 2009 sets the default file format for new source code files to ANSI, this makes the source code platform-dependent.</p>
<p>Even for a new XSD file created in the IDE, which by default starts with this line</p>
<pre><code><?xml version="1.0" encoding="UTF-8" ?>
</code></pre>
<p>Delphi sets the file format to ANSI (this looks like a bug, for new XML and XSLT documents UTF8 is selected by default).</p>
<p>Is there a hidden option to set the default file format for source code files?</p>
http://stackoverflow.com/questions/1749258/lightweight-java-database-with-maven-plugin-for-starting-stopping2Lightweight Java database with Maven plugin for starting/stopping?mjustin2009-11-17T14:26:55Z2009-11-17T15:28:52Z
<p>For unit tests, demonstrations and Hibernate tasks I would like to use a small and simple Java database like Derby / Java DB or HSQLDB, which can be called from within Maven.</p>
<p>So far I have not found a Maven plugin which can download and launch Java DB (which is my favorite at the moment) or something similar.</p>
http://stackoverflow.com/questions/1734465/is-there-a-delphi-ide-plugin-for-xml-file-editing-validation-formatting1Is there a Delphi IDE plugin for XML file editing, validation, formatting?mjustin2009-11-14T15:01:22Z2009-11-15T22:17:42Z
<p>Are there (free or commercial) IDE editor plugins for Delphi which </p>
<ul>
<li>show valid XML tags and parameters automatically while editing (like CodeInsight for HTML does it already) or suggest the correct closing tags, matching the current open tag?</li>
<li>validate a XML file in the IDE editor against its XSD, or to check its well-formedness?</li>
<li>format a XML file which is open in the IDE editor (this would be useful for configuration files and scripts)?</li>
</ul>
<p>These editing capabilities could also be useful for XHTML web page documents in IntraWeb / WebSnap applications, WSDL (Web Service description) and XSD (XML Schema) files, making web application and web service development easier.</p>
http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2ee/1737732#17377322Answer by mjustin for Where can I find good unit testing resources for EJB and J2EE?mjustin2009-11-15T14:56:24Z2009-11-15T14:56:24Z<p>The next version NetBeans 6.8 includes a nice new feature: it <a href="http://www.adam-bien.com/roller/abien/entry/two%5Famazing%5Fnetbeans%5F6%5F8beta" rel="nofollow">generates Unit-Tests for EJB 3.1 with Embeddable Container code</a>.</p>
<pre><code>@Test
public void testHello() throws Exception {
System.out.println("hello");
HelloService instance = (HelloService)javax.ejb.embeddable.EJBContainer.createEJBContainer().getContext().lookup("java:global/classes/HelloService");
String expResult = "";
String result = instance.hello();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
</code></pre>
http://stackoverflow.com/questions/1707740/where-can-i-find-a-complete-maven-cargo-plugin-example-for-ejb-tests1Where can I find a complete Maven Cargo plugin example for EJB tests?mjustin2009-11-10T12:52:39Z2009-11-14T22:18:56Z
<p>For tests of some small JBoss enterprise apps I would like to use JUnit, and the <a href="http://cargo.codehaus.org/Maven2+plugin" rel="nofollow">Maven Cargo plugin</a>. (I know that there is also JSFUnit but first I would like to take a closer look at Cargo.)</p>
<p>Is there a simple example available online which I could use as a reference for running a JUnit test which invokes a EJB operation using JBoss (4.2 or 5.1) using the Maven Cargo plugin? I have found some good introductions to the configuration, but I get error messages in the EJB lookup so it would be helpful to see how it should be used.</p>
<p>Here is the test code using InitialContext:</p>
<pre><code>public void testEcho() {
assertEquals("Echo Echo", lookupEchoBeanRemote().Echo("Echo"));
}
private EchoBeanRemote lookupEchoBeanRemote() {
try {
Context c = new InitialContext();
return (EchoBeanRemote) c.lookup("EchoBean/remote");
} catch (NamingException ne) {
Logger.getLogger(getClass().getName()).log(Level.SEVERE, "exception caught", ne);
throw new RuntimeException(ne);
}
}
</code></pre>
<p>Which gives this error:</p>
<pre><code>testEcho(de.betabeans.Echo2Test) Time elapsed: 0.885 sec <<< ERROR!
java.lang.reflect.UndeclaredThrowableException
at $Proxy3.Echo(Unknown Source)
at de.betabeans.Echo2Test.testEcho(Echo2Test.java:17)
Caused by: java.security.PrivilegedActionException: java.lang.reflect.InvocationTargetException
at java.security.AccessController.doPrivileged(Native Method)
at org.jboss.ejb3.security.client.SecurityActions.createSecurityContext(SecurityActions.java:657)
at org.jboss.ejb3.security.client.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:59)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
at org.jboss.ejb3.remoting.IsLocalInterceptor.invoke(IsLocalInterceptor.java:74)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
at org.jboss.aspects.remoting.PojiProxy.invoke(PojiProxy.java:62)
at $Proxy4.invoke(Unknown Source)
at org.jboss.ejb3.proxy.impl.handler.session.SessionProxyInvocationHandlerBase.invoke(SessionProxyInvocationHandlerBase.java:207)
at org.jboss.ejb3.proxy.impl.handler.session.SessionProxyInvocationHandlerBase.invoke(SessionProxyInvocationHandlerBase.java:164)
... 28 more
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at org.jboss.security.SecurityContextFactory.createSecurityContext(SecurityContextFactory.java:117)
at org.jboss.security.SecurityContextFactory.createSecurityContext(SecurityContextFactory.java:76)
at org.jboss.ejb3.security.client.SecurityActions$1.run(SecurityActions.java:662)
... 38 more
Caused by: java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/security/jacc/PolicyContextException
at java.lang.ClassLoader.defineClass1(Native Method)
</code></pre>
<p>If I use the EJB annotation </p>
<pre><code>@EJB(beanInterface=EchoBeanRemote.class,mappedName="EchoBean/remote")
private EchoBeanRemote newSessionBean;
public Echo3Test(String testName) {
super(testName);
}
public void testEcho() {
assertEquals("Echo Echo", newSessionBean.Echo("Echo"));
}
</code></pre>
<p>The test result is </p>
<pre><code>testEcho(de.betabeans.Echo3Test) Time elapsed: 0.001 sec <<< ERROR!
java.lang.NullPointerException
at de.betabeans.Echo3Test.testEcho(Echo3Test.java:20)
</code></pre>
<p>jndi.properties is located in the EJB jar root folder and contains these lines:</p>
<pre><code>java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=jnp://localhost:1099
### The TimedSocketFactory connection timeout in milliseconds (0 == blocking)
jnp.timeout=0
### The TimedSocketFactory read timeout in milliseconds (0 == blocking)
jnp.sotimeout=0
</code></pre>
<p>The bean source code is</p>
<pre><code>package de.betabeans;
import javax.ejb.Remote;
@Remote
public interface EchoBeanRemote {
String Echo(final String in);
}
package de.betabeans;
import javax.ejb.Stateless;
@Stateless
public class EchoBean implements EchoBeanRemote {
public String Echo(final String in) {
return in + " " + in;
}
}
</code></pre>
<p>I have also tested a web application which can call the EJB without problems - in both ways, with InitialContext or an annotation. A warning which I received in the deployment of the web application was</p>
<p>WARN [MappedReferenceMetaDataResolverDeployer] Unresolved references exist in JBossWebMetaData:[#web-app:AnnotatedEJBReferenceMetaData{name=de.betabeans.Echo3Servlet/echoBean,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=EchoBean/remote,resolved-jndi-name=null,beanInterface=interface de.betabeans.EchoBeanRemote}, #web-app:AnnotatedEJBReferenceMetaData{name=NewServlet/newSessionBean,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=NewSessionBean/remote,resolved-jndi-name=null,beanInterface=interface de.betabeans.NewSessionBeanRemote}]
12:26:11,770 INFO</p>
<p>All tests performed with JBoss 5.1.0.GA on two different build systems.</p>
<p>I have uploaded the complete Maven project now to <a href="http://www.mikejustin.com/download/JBossSimpleEJBApp-ejb-test.zip" rel="nofollow">http://www.mikejustin.com/download/JBossSimpleEJBApp-ejb-test.zip</a></p>
http://stackoverflow.com/questions/1186348/maven-ear-module-and-ejb-dependencies-tests/1733787#17337871Answer by mjustin for Maven EAR module and EJB dependencies testsmjustin2009-11-14T09:22:55Z2009-11-14T09:22:55Z<p>For JBoss you could try the <a href="http://cargo.codehaus.org/" rel="nofollow">Maven Cargo plugin</a>. I am currently testing it with JBoss 5.1 and still working on it:</p>
<p><a href="http://stackoverflow.com/questions/1707740/where-can-i-find-a-complete-maven-cargo-plugin-example-for-ejb-tests">http://stackoverflow.com/questions/1707740/where-can-i-find-a-complete-maven-cargo-plugin-example-for-ejb-tests</a></p>
http://stackoverflow.com/questions/1721508/how-to-get-performance-data-from-a-remote-computer-using-delphi/1721939#17219392Answer by mjustin for How to get performance data from a remote computer using Delphimjustin2009-11-12T12:44:01Z2009-11-12T12:44:01Z<p>If <a href="http://en.wikipedia.org/wiki/Windows%5FManagement%5FInstrumentation" rel="nofollow">WMI (Windows Management Instrumentation)</a> is enabled, you could use the free <a href="http://www.magsys.co.uk/delphi/magwmi.asp" rel="nofollow">WMI component collection</a> which is available for Delphi:</p>
<blockquote>
<p>MagWMI which allows access and update
of windows system information using
Windows Management Instrumentation.
MagWMI provides general view access to
any WMI information using SQL like
commands, and also a number of
dedicated function relating to TCP/IP
configuration, such as setting the
adaptor IP addresses, and the computer
name and domain/workgroup.</p>
</blockquote>
http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c/1707691#17076912Answer by mjustin for How should I call this native dll function from C#?mjustin2009-11-10T12:43:26Z2009-11-10T12:43:26Z<p>For memory leak detection you can use the open source <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM4 memory manager for Delphi</a>. </p>
<blockquote>
<p>"FastMM is a lightning fast
replacement memory manager for
Embarcadero Delphi Win32 applications
that scales well in multi-threaded
applications, is not prone to memory
fragmentation, and supports shared
memory without the use of external
.DLL files."</p>
</blockquote>
<p>It is great for speed, leak checking and memory sharing between dll's.</p>
<p>Also very useful is the <a href="http://jedqc.blogspot.com/2007/07/new-fastmm4-options-interface.html" rel="nofollow">FastMM4 Options Interface</a> which helps to configure FastMM4.</p>
http://stackoverflow.com/questions/1696077/how-to-debug-a-dll-called-from-java-in-delphi2How to debug a DLL called from Java in Delphi?mjustin2009-11-08T11:20:55Z2009-11-08T16:25:47Z
<p>With Delphi I wrote a DLL which can be called from Java via <a href="https://jna.dev.java.net/" rel="nofollow">JNA (Java Native Access)</a>. Methods in this DLL are just simple operations, but for future use and more complex invocations I would like to know how I can use the Delphi debugger, if the DLL is called from Java directly (or from the Java IDE).</p>
http://stackoverflow.com/questions/1676576/how-to-pass-and-return-objects-to-and-from-a-dll/1696991#16969910Answer by mjustin for How to pass and return objects to and from a DLL?mjustin2009-11-08T16:08:09Z2009-11-08T16:08:09Z<p>A platform- and language independent way could be to exchange serialized objects.</p>
<p>It has a performance impact, but it has advantages too: the DLL works without modifications with other languages and platforms like .Net or Java (via <a href="https://jna.dev.java.net/" rel="nofollow">JNA Java Native Access)</a>. It does not depend on any special features of the operating system so it can as well be used on Linux or MacOS if you compile the library with <a href="http://www.freepascal.org/" rel="nofollow">Free Pascal</a>.</p>
<p>For the serialization, you could use JSON or XML. There are open source libraries for Delphi, for example <a href="http://www.progdigy.com/?page%5Fid=6" rel="nofollow">SuperObject</a> and <a href="http://www.omnixml.com/" rel="nofollow">OmniXML</a>. </p>
http://stackoverflow.com/questions/1696077/how-to-debug-a-dll-called-from-java-in-delphi/1696273#16962730Answer by mjustin for How to debug a DLL called from Java in Delphi?mjustin2009-11-08T12:37:09Z2009-11-08T12:37:09Z<p>It works if I define the host application (Java) and set the correct arguments:</p>
<ul>
<li>Host Application: C:\Programme\Java\jdk1.6.0_14\jre\bin\java.exe</li>
<li>Parameter: -cp "/path/to/test.jar" junit.textui.TestRunner AppTest</li>
</ul>
<p>The JUnit rext TestRunner command line arguments are explained here:
<a href="http://junit.sourceforge.net/junit3.8.1/javadoc/junit/textui/TestRunner.html" rel="nofollow">http://junit.sourceforge.net/junit3.8.1/javadoc/junit/textui/TestRunner.html</a></p>
http://stackoverflow.com/questions/1695201/what-is-the-best-practice-for-building-a-multilingual-application-using-delphi-2/1695970#16959707Answer by mjustin for What Is The Best Practice For Building A Multilingual Application Using Delphi 2010?mjustin2009-11-08T10:28:35Z2009-11-08T10:41:32Z<p><a href="http://dybdahl.dk/dxgettext/" rel="nofollow">GNU Gettext for Delphi and C++ Builder</a> is a open source translation toolkit for Delphi, C++ Builder, Kylix, FreePascal and Lazarus. It can be used for commercial, closed sourced, proprietary applications at no cost. No DLLs required and no DLLs involved. You can even embed the translations in the .exe file, so that your entire application deployment only consists of a single .exe file. Handles translation of numbered items (like '0 files', '1 file', '2 files' etc.) to languages with different ways of doing plural easily. And many features more.</p>
http://stackoverflow.com/questions/674916/tools-which-can-parse-delphi-xmldoc-format-and-build-online-help1Tools which can parse Delphi XMLDoc format and build online helpmjustin2009-03-23T19:35:44Z2009-11-07T05:53:12Z
<p>The XMLDoc tool for API documentation is explained here:</p>
<p><a href="http://edn.embarcadero.com/article/32770" rel="nofollow">http://edn.embarcadero.com/article/32770</a></p>
<p>Are there any free or commercial tools which can be used to create documentation based on Delphi's XML doc format?</p>
<p>Is there a newer version of the 'getting started' documentation? This page refers to Delphi 2005 and third party tools, some of them seem to have moved.</p>
<p>The XMLDoc for Delphi 2005 required</p>
<ul>
<li>Python (tested with Python 2.3)</li>
<li>Instant Saxon (tested with Instant Saxon 6.5.3)</li>
<li>The Java SDK (tested with J2SE v 1.4.2_05 SDK)</li>
<li>and also the Visual Studio Help Integration Kit </li>
</ul>
http://stackoverflow.com/questions/1690401/need-suggestions-on-getting-started-with-junit/1691193#16911930Answer by mjustin for need suggestions on getting started with Junitmjustin2009-11-06T23:20:02Z2009-11-06T23:20:02Z<p>Another useful introduction in writing and maintaining large unit test suites might be this book (which is partially available online):</p>
<p><a href="http://xunitpatterns.com/" rel="nofollow"><strong>XUnit Test Patterns</strong>, Refactoring Test Code by Gerard Meszaros</a></p>
<p>The book is organized in 3 major parts. Part I consists of a series of introductory narratives that describe some aspect of test automation using xUnit. Part II describes a number of "test smells" that are symptoms of problems with how we are automating our tests. Part III contains descriptions of the patterns.</p>
http://stackoverflow.com/questions/1660961/how-can-i-listen-to-windows-events-from-a-java-app/1662015#16620151Answer by mjustin for How can I listen to Windows events from a Java app?mjustin2009-11-02T15:38:31Z2009-11-02T15:38:31Z<p>Technolgies which might be useful:</p>
<ul>
<li><p><a href="https://jna.dev.java.net/" rel="nofollow">Java Native Access (JNA)</a> provides Java programs easy access to native shared libraries (DLLs on Windows) without writing anything but Java code—no JNI or native code is required.</p></li>
<li><p>Message oriented Middleware which includes C/C++ drivers, for example <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a>, <a href="https://mq.dev.java.net/" rel="nofollow">OpenMQ</a> or <a href="http://www.xmlblaster.org/" rel="nofollow">xmlBlaster</a></p></li>
</ul>
http://stackoverflow.com/questions/1572002/how-to-get-notification-about-ejb-deployment-to-set-up-a-timer/1638874#16388741Answer by mjustin for How to get notification about EJB deployment (to set up a timer)?mjustin2009-10-28T17:41:11Z2009-10-29T09:01:22Z<p>EJB 3.1 introduces the <a href="http://www.devx.com/Java/Article/42351/1954" rel="nofollow">Singleton bean</a>. It will be created at deplyoment of the EJB.</p>
<pre><code>@Singleton
@Startup
public class TimerSessionBean {
@Resource
TimerService timerService;
@PostConstruct
public void startTimer() {
Logger.getLogger(getClass().getName()).log(Level.INFO,
timerService.getTimers().size() + " timers running");
Logger.getLogger(getClass().getName()).log(Level.INFO, "create a timer");
timerService.createTimer(10000, 10000, "a timer");
}
@Timeout
void doSomething(Timer timer) {
System.out.println("something");
}
}
</code></pre>
<p>Another new feature in EJB 3.1 which can be used to run a task periodically is the <a href="http://www.theserverside.com/tt/articles/article.tss?l=NewFeaturesEJB31" rel="nofollow">Schedule annotation</a>.</p>
http://stackoverflow.com/questions/1625519/how-to-add-a-web-service-to-a-delphi-2006-app/1627528#16275281Answer by mjustin for How to add a Web Service to a Delphi 2006 app?mjustin2009-10-26T21:48:54Z2009-10-26T21:48:54Z<p>With the current release 10.5.7 of Indy (Tiburon branch) I sucessfully used this article to write a simple stand alone SOAP Server with Delphi 2009:</p>
<p><a href="http://www.digicoast.com/delphi%5Fsoap%5Fstandalone.html" rel="nofollow">http://www.digicoast.com/delphi%5Fsoap%5Fstandalone.html</a></p>
<p>It should work fine with Delphi 2006 too (I am using the Indy 10 Tiburon branch even in Delphi 6).</p>
<p>The SOAP service can be consumed with Java (JAX-RPC) web clients, but I have not tested all possible datatypes.</p>
http://stackoverflow.com/questions/1542432/what-is-the-purpose-of-the-netbeans-6-server-resources-folder0What is the purpose of the NetBeans 6 'Server Resources' Folder?mjustin2009-10-09T07:54:02Z2009-10-21T15:16:44Z
<p>In a new JBoss Web Application or EJB project in NetBeans, the 'Server Resources' folder contains two files:</p>
<ul>
<li>jboss-ds.xml</li>
<li>jboss4-netbeans-destinations-service.xml</li>
</ul>
<p>However these files are not included in the generated application JAR file.
What is the purpose of these files?</p>
<p>jboss-ds.xml looks like this:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<datasources/>
</code></pre>
http://stackoverflow.com/questions/445366/blackfish-sql-management-tools/446016#446016Comment by mjustin on Blackfish SQL management toolsmjustin2009-11-29T17:38:57Z2009-11-29T17:38:57ZIt is still inoperational ... any news?http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc/1804637#1804637Comment by mjustin on How can I access Blackfish for Windows over JDBC?mjustin2009-11-29T17:35:28Z2009-11-29T17:35:28ZChecked that they are not in Pro and will check Enterprise tomorrow.http://stackoverflow.com/questions/624246/what-is-the-best-way-to-display-a-pdf-file-in-delphi-2009/1679481#1679481Comment by mjustin on What is the best way to display a PDF file in Delphi 2009mjustin2009-11-27T17:51:01Z2009-11-27T17:51:01ZYou should post this as a new question, see <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a>http://stackoverflow.com/questions/1624779/how-can-i-add-a-interbase-jdbc-connection-pool-in-glassfish-v3/1773287#1773287Comment by mjustin on How can I add a InterBase JDBC connection pool in GlassFish V3?mjustin2009-11-26T18:10:05Z2009-11-26T18:10:05ZThe same URL works fine in a simple JDBC test. I will accept you answer so that the points will not be lost ;)http://stackoverflow.com/questions/236656/any-active-bold-for-delphi-users/236746#236746Comment by mjustin on Any active Bold for Delphi users ?mjustin2009-11-26T17:48:18Z2009-11-26T17:48:18ZMaybe for Delphi 2010?http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139Comment by mjustin on How to get the current logged on user, including domain in Delphi 2009?mjustin2009-11-26T17:42:22Z2009-11-26T17:42:22ZIf the COM abject is called from the code behind for a web form page, you can try to set ASPCOMPAT property of the web form page to true. See new links in my answer.http://stackoverflow.com/questions/1804308/how-can-i-access-blackfish-for-windows-over-jdbc/1804637#1804637Comment by mjustin on How can I access Blackfish for Windows over JDBC?mjustin2009-11-26T17:02:58Z2009-11-26T17:02:58ZThes files are not included in Delphi 2009. Blackfish however is installed and running as a service. Is there a way to download these files?http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009/1804139#1804139Comment by mjustin on How to get the current logged on user, including domain in Delphi 2009?mjustin2009-11-26T16:58:35Z2009-11-26T16:58:35ZHow do you call the Delphi application from ASP.NET? Can you show some code?http://stackoverflow.com/questions/1803658/multiple-database-access-with-delphiComment by mjustin on Multiple Database Access with Delphimjustin2009-11-26T15:29:08Z2009-11-26T15:29:08ZDelphi MMVI = Delphi 2006?http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-netComment by mjustin on Windows Authentication in a COM object called from ASP.NETmjustin2009-11-26T15:04:15Z2009-11-26T15:04:15ZSo the web server can use the COM object access the SQL server using impersonation, but the same COM object does not see credentials? Check out for a similar problem (double-hop) and 'delegation': <a href="http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net/191167#191167" rel="nofollow" title="windows authentication problems using asp net">stackoverflow.com/questions/190961/…</a>http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1802070#1802070Comment by mjustin on Should I start my new shareware project in C# or Delphi?mjustin2009-11-26T10:21:29Z2009-11-26T10:21:29ZYou can not do pointer arithmetic with an object reference. A NullPointerException will not cause code to leave the virtual machine memory - it will be handled in the sandbox.http://stackoverflow.com/questions/1792541/convert-this-php-digital-signing-to-delphiComment by mjustin on Convert this php digital signing to Delphimjustin2009-11-24T21:32:16Z2009-11-24T21:32:16Zhow do the result strings look like? Maybe they are simple byte sequences which are not base64 encoded? Is their length correct? http://stackoverflow.com/questions/1789606/my-gethttp-works-with-http-but-https-returns-invalid-data/1792570#1792570Comment by mjustin on my GetHttp works with HTTP but HTTPS returns invalid datamjustin2009-11-24T21:30:20Z2009-11-24T21:30:20ZIIRC it has the advantage that no special SSL libraries are needed because it uses the built-in SSL libraries of the operating system.http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2eeComment by mjustin on Where can I find good unit testing resources for EJB and J2EE?mjustin2009-11-23T18:48:42Z2009-11-23T18:48:42ZYes! Both!! The more the merrier ... :) http://stackoverflow.com/questions/1779348/remote-servlet-comms/1779507#1779507Comment by mjustin on Remote Servlet Commsmjustin2009-11-22T18:50:43Z2009-11-22T18:50:43ZWhy does isAvailable() have to be implemented in the Servlet class then? I would moved it into a common "service layer" package.