User Matej - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:37:24Zhttp://stackoverflow.com/feeds/user/11457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/961816/proper-way-of-writing-a-hql-in-query/961865#9618655Answer by Matej for Proper way of writing a HQL in ( ... ) queryMatej2009-06-07T13:13:02Z2009-08-13T22:14:32Z<p>I am unsure how to do this with positional parameter, but if you can use named parameters instead of positional, then named parameter can be placed inside brackets and <a href="https://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/Query.html#setParameterList%28java.lang.String,%20java.util.Collection%29" rel="nofollow">setParameterList</a> method from <a href="https://www.hibernate.org/hib%5Fdocs/v3/api/org/hibernate/Query.html" rel="nofollow">Query</a> interface can be used to bind the list of values to this parameter. </p>
<pre><code>...
Query query = session.createQuery("FROM Cat c WHERE c.id IN (:ids)");
query.setParameterList("ids", listOfIds);
...
</code></pre>
http://stackoverflow.com/questions/961480/expressions-in-hibernate-criteria/961896#9618960Answer by Matej for Expressions in hibernate criteriaMatej2009-06-07T13:36:08Z2009-06-07T13:36:08Z<p>It is (probably) not possible to do it with Criteria. But <a href="http://docs.jboss.org/hibernate/stable/core/reference/en/html/queryhql.html" rel="nofollow">HQL</a> can be helpful for this. </p>
<pre><code>SELECT ent.quantity*ent.price from EntityName as ent WHERE ent.id = ?
</code></pre>
http://stackoverflow.com/questions/946594/c-web-service-via-ssl-vs-firewall/958441#9584410Answer by Matej for C# Web Service via SSL vs FirewallMatej2009-06-05T22:29:57Z2009-06-05T22:29:57Z<p>It smells like browser is trying to connect to a <a href="http://en.wikipedia.org/wiki/Certificate%5Frevocation%5Flist" rel="nofollow">CRL</a> server. Try to reverse-resolve the IP addresses to a domain name and you should get some clue. </p>
http://stackoverflow.com/questions/956323/capturing-large-amounts-of-output-from-apache-commons-exec/958398#9583981Answer by Matej for Capturing large amounts of output from Apache Commons-ExecMatej2009-06-05T22:11:09Z2009-06-05T22:11:09Z<p>The problem is in the run method of YUV4MPEGPipeParser class. There are two successive loops. The second loop terminates immediately if there are no data currently available on the stream (e.g. all input so far was processed by parser, and ffmpeg or stream pump were not fast enough to serve some new data for it -> available() == 0 -> loop is terminated -> pump thread finishes).</p>
<p>Just get rid of these two loops and sleep and just perform a simple blocking read() instead of checking if any data are available for processing. There is also probably no need for wait()/notify() or even sleep() because the parser code is started on a separate thread.</p>
<p>You can rewrite the code of run() method like this:</p>
<pre><code>public class YUV4MPEGPipeParser extends Thread {
...
// optimal size of buffer for reading from pipe stream :-)
private static final int BUFSIZE = PipedInputStream.PIPE_SIZE;
public void run() {
try {
byte buffer[] = new byte[BUFSIZE];
int len = 0;
while ((len = is.read(buffer, 0, BUFSIZE) != -1) {
// we have valid data available
// in first 'len' bytes of 'buffer' array.
// do stuff.... like write out YUV frames
}
} catch ...
}
}
</code></pre>
http://stackoverflow.com/questions/955042/how-can-i-open-kdb-file-with-ssl-certificate-for-mq/955380#9553801Answer by Matej for How can i open kdb file with ssl certificate for MQ?Matej2009-06-05T11:18:55Z2009-06-05T11:38:38Z<p>You can use <em>IBM Key Management</em> tool (aka Ikeyman) for this purpose. Yous should get it with MQ installation. Just review <a href="http://publib.boulder.ibm.com/infocenter/wmqv7/v7r0/index.jsp?topic=/com.ibm.mq.csqzas.doc/sy11550%5F.htm" rel="nofollow">Working with WebSphere MQ TLS and SSL support</a> Section of Websphere MQ documentation. </p>
http://stackoverflow.com/questions/951215/why-some-times-java-does-not-request-for-new-versions-of-jar-files/951844#9518442Answer by Matej for Why some times Java does not request for new versions of jar files?Matej2009-06-04T17:02:54Z2009-06-05T08:38:44Z<p>This can be problematic to resolve but there is an easy workaround for this. Instead of relying on correct cache-update, just make sure that JAR file names include version / build number of the application. JAR files for new version of applet will then effectively live on other URL (you also have to change the bootstrap web-page). </p>
http://stackoverflow.com/questions/951693/what-is-the-servlet-equivalent-of-server-mappath/951753#9517530Answer by Matej for what is the servlet equivalent of Server.MapPath?Matej2009-06-04T16:47:54Z2009-06-04T16:47:54Z<p>You can use method <a href="http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletContext.html#getResourcePaths%28java.lang.String%29" rel="nofollow">getResourcePaths(String path)</a> from ServletContext class for this purpose. It will return Set with directory-style listing of resources for specified (web-application mapped) path. </p>
<p>If you want to read content of file specified by mapped path, you can use method <a href="http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletContext.html#getResourceAsStream%28java.lang.String%29" rel="nofollow">getResourceAsStream()</a> from ServletContext returning InputStream for specified resource.</p>
http://stackoverflow.com/questions/934133/how-i-can-disable-the-second-level-cache-of-some-certain-entities-in-hibernate-wi/934372#9343725Answer by Matej for How I can disable the second-level cache of some certain entities in Hibernate without changing annotationsMatej2009-06-01T11:07:37Z2009-06-01T11:07:37Z<p>You can configure the implementation provider of second level cache to short TTL times and/or to store 0 entries of particular entity type. </p>
<p>E.g. if you are using the Ehcache, you can configure it in ehcache.xml:</p>
<pre><code><cache
name="com.problematic.cache.EntityName"
maxElementsInMemory="0" <<== this should effectively disable caching for EntityName
overflowToDisk="false" <<== Do not overflow any entries to disk
/>
</code></pre>
<p>See <a href="http://ehcache.sourceforge.net/documentation/hibernate.html" rel="nofollow">Hibernate Caching</a> in Ehcache documentation. </p>
http://stackoverflow.com/questions/906402/importing-an-existing-x509-certificate-and-private-key-in-java-keystore-to-use-in/907515#9075152Answer by Matej for importing an existing x509 certificate and private key in Java keystore to use in ActiveMQ ssl contextMatej2009-05-25T17:42:02Z2009-05-25T17:42:02Z<p>Believe or not, keytool does not provide such basic functionality like importing private key to keystore. You can try this <a href="http://cunning.sharp.fm/2008/06/importing%5Fprivate%5Fkeys%5Finto%5Fa.html" rel="nofollow">workaround</a> with merging PKSC12 file with private key to a keystore. </p>
<p>Or just use more user-friendly <a href="http://www.alphaworks.ibm.com/tech/keyman" rel="nofollow">KeyMan</a> from IBM for keystore handling instead of keytool.exe. </p>
http://stackoverflow.com/questions/902140/how-to-improve-the-quality-of-enterprise-applications/902219#9022190Answer by Matej for How to improve the quality of enterprise applications?Matej2009-05-23T19:04:13Z2009-05-23T19:04:13Z<p>Believe me or not I know exactly how you feel. :-) There is probably just one (politically correct) advice: <a href="http://www.google.com/search?hl=sk&q=eat%2Byour%2Bdog%2Bfood&lr=&aq=f&oq=" rel="nofollow">Eat your dog food</a>. </p>
http://stackoverflow.com/questions/902152/how-to-keep-a-process-running-on-a-remote-windows-server/902209#9022091Answer by Matej for How to keep a process running on a remote windows serverMatej2009-05-23T18:57:32Z2009-05-23T18:57:32Z<p>You can create Windows Service (server programming on Windows) or use scheduler to periodically execute a task. </p>
<p>Depending on the requirements for the high availability, program can be installed on a fail-over cluster where there will be other server (passive node) started and quietly waiting as a hot-backup if the first (active node) dies. This is wide topic. Start with <a href="http://en.wikipedia.org/wiki/High%5Favailability" rel="nofollow">High availablity</a> on Wikipedia. </p>
http://stackoverflow.com/questions/902062/what-are-some-of-the-more-obscure-parts-of-c/902169#9021690Answer by Matej for What are some of the more obscure parts of C++?Matej2009-05-23T18:42:50Z2009-05-23T18:42:50Z<p>If you want to learn something obscure about C++, try templates in depth and read <a href="http://erdani.org/" rel="nofollow">Modern C++ Design</a> by <a href="http://erdani.org/" rel="nofollow">Andrei Alexandrescu</a>. This book is classics about template metaprogramming. </p>
http://stackoverflow.com/questions/890254/sort-arraylist/890285#8902850Answer by Matej for Sort ArrayListMatej2009-05-20T21:13:43Z2009-05-20T21:13:43Z<p>Because strings are sorted in a alphabetic ordering and the underscore character is after characters for numbers. You have to provide a comparator implementing "Natural Order" to achieve desired result. </p>
http://stackoverflow.com/questions/885005/how-do-i-authenticate-a-user-with-the-smart-card-is-required-for-interactive-log/886490#8864901Answer by Matej for How do I authenticate a user with the "Smart card is required for interactive logon" set?Matej2009-05-20T06:53:12Z2009-05-20T19:06:54Z<p>HTTPS and SSL mutual authentication should be used for this, because client already has at least corporate CA-signed certificate on its smart card stored. </p>
<p>When mutual SSL authentication is used instead just server authentication, the client certificate is also verified by server, not only the server's certificate by client (which is more common set-up for e.g. HTTPS enabled e-commerce sites). And you still get encrypted connection as a bonus.</p>
<p>See e.g. <a href="http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html" rel="nofollow">Tomcat 6.0 SSL Configuration HOW-TO</a>. The key point is to have the CA certificate in the trust-store and clientAuth attribute set to true. </p>
<p>The login auth-method should be also specified to CLIENT-CERT in web.xml of the respective web-application:</p>
<pre><code>...
<login-config>
<auth-method>CLIENT-CERT</auth-method>
<realm-name>Foo * Bar * Realm</realm-name>
</login-config>
...
</code></pre>
<p>SubjectDN attribute from the client certificate is used to identify the user. LDAP (or ActiveDirectory) can be still used for authorization - e.g. by checking if user belongs to a group.</p>
<p>It can be difficult to set it all on the first time. To get familiar with all the concepts I recommend following approach:</p>
<ul>
<li>Use BASIC auth-method with user-names and passwords stored in a file</li>
<li>Use simple role-based authorization</li>
<li>Enable CLIENT-CERT auth-method + simple role-based authorization</li>
<li>Incorporate LDAP for checking roles</li>
</ul>
http://stackoverflow.com/questions/886572/regex-match-any-number-from-1-365/886596#8865963Answer by Matej for Regex. Match any number from 1 - 365Matej2009-05-20T07:25:37Z2009-05-20T07:25:37Z<p>Mind the gap, ehm leap year. :-)</p>
http://stackoverflow.com/questions/883644/educational-ide-to-start-programming-in-c/883718#8837189Answer by Matej for Educational IDE to start programming in C++?Matej2009-05-19T16:14:56Z2009-05-19T16:14:56Z<p>It depends on which world are you coming from to learn C++. </p>
<ul>
<li>Do you have previous Java experience? - Use Eclipse CDT. </li>
<li>Have used .NET previously? - Go with Visual Studio C++ Express Edition (and then throw it away if you really need multiplatform <em>IDE</em>, not just code). </li>
<li>Are you an Unix guy? Use just a syntax-highlighting editor + Makefile. When you want to learn basics of the C++, the project should not be complicated and it is well invested time to learn how the C++ compiler is called with preprocessor options, etc. </li>
</ul>
http://stackoverflow.com/questions/881909/structured-combined-logging-with-log4j/881972#8819720Answer by Matej for structured/combined logging with Log4JMatej2009-05-19T10:29:46Z2009-05-19T10:35:22Z<p>We needed to solve something similar in the past. We have created an enveloped message object holding also metadata about message (e.g. user transaction id) and a custom appender class. In this appender class we are using instanceof statement to get the metadata from the envelope instead just simply calling toString (which should return a nice log for general appenders). </p>
<p>Or you can consider using SLF4J and it's standard capability to pass <a href="http://www.slf4j.org/apidocs/org/slf4j/Marker.html" rel="nofollow">Marker</a> objects with log messages. E.g. see Javadoc for their <a href="http://www.slf4j.org/apidocs/org/slf4j/Logger.html#debug%28org.slf4j.Marker,%20java.lang.String%29" rel="nofollow">debug(Marker marker, String msg)</a> method overload.</p>
http://stackoverflow.com/questions/855290/tcp-socket-timeout-configuration/856954#8569540Answer by Matej for TCP socket timeout configurationMatej2009-05-13T09:23:19Z2009-05-13T09:40:13Z<p>You can introduce your own SocketImplFactory (See static method <a href="http://java.sun.com/javase/6/docs/api/java/net/Socket.html#setSocketImplFactory%28java.net.SocketImplFactory%29" rel="nofollow">setSocketImpl()</a> of java.net.Socket class). Then you can create SocketImpl objects with your own value of SO_TIMEOUT parameter. </p>
http://stackoverflow.com/questions/92475/elapsed-time-without-considering-weekends-and-bank-holidays-in-java/92626#926260Answer by Matej for Elapsed time without considering weekends and bank holidays in JavaMatej2008-09-18T13:41:54Z2008-09-18T17:24:31Z<p>As I have mentioned <a href="http://stackoverflow.com/questions/80541/given-two-dates-what-is-the-best-way-of-finding-the-number-of-weekdays-in-php#80627">there</a>, probably the best and easiest approach is to create a table containing information about each day (work day count from beginning / bank holiday, etc; one row per day = 365 rows per year) and then just use count function / with proper selection. </p>
http://stackoverflow.com/questions/87030/where-to-find-java-6-jsse-jce-source-code/87165#871650Answer by Matej for Where to find Java 6 JSSE/JCE Source Code?Matej2008-09-17T20:17:26Z2008-09-17T20:17:26Z<p>Put <a href="http://www.kpdus.com/jad.html" rel="nofollow">Jad</a> on your system path. Install <a href="http://jadclipse.sourceforge.net/" rel="nofollow">JadClipse</a> plugin for Eclipse. Use the force, read the decompiled source. :-)</p>
http://stackoverflow.com/questions/80691/orthogonal-variables-code-duplication-problem/80750#807505Answer by Matej for Orthogonal variables code duplication problemMatej2008-09-17T07:18:39Z2008-09-17T07:18:39Z<p>Why you just do not extract the body of the for cycle into a separate function? Then you can do the funny stuff in the extracted function. </p>
<pre><code>void DrawScaleX(HDC dc, int step, int x0, int x1, int y0, int y1)
{
for(int x = x0; x < x1; x += step)
{
DrawScale(dc, x, y0, x, y1);
}
}
void DrawScaleY(HDC dc, int step, int x0, int x1, int y0, int y1)
{
for(int y = y0; y < y1; y += step)
{
DrawScale(dc, x0, y, x1, y);
}
}
private void DrawScale(HDC dc, int x0, int y0, int x1, int y1)
{
//Add funny stuff here
MoveToEx(dc, x0, y0, NULL);
LineTo(dc, x1, y1);
//Add funny stuff here
}
</code></pre>
http://stackoverflow.com/questions/80541/given-two-dates-what-is-the-best-way-of-finding-the-number-of-weekdays-in-php/80627#806271Answer by Matej for Given two dates what is the best way of finding the number of weekdays in PHP?Matej2008-09-17T06:52:59Z2008-09-17T06:52:59Z<p>If you are creating an invoicing system, you have to think about the bank holidays, Easter, etc. It is not simple to compute it. </p>
<p>The best solution I have ever seen is to pregenerate a table with days and its type to SQL database (row per day = 365 rows per year) and then perform simple count query with proper selection (WHERE clause). </p>
<p>You can find this solution fully described in <em>Joe Celko's Thinking in Sets: Auxiliary, Temporal, and Virtual Tables in SQL</em></p>
http://stackoverflow.com/questions/73168/saving-html-tables-to-a-database/73213#732131Answer by Matej for Saving HTML tables to a DatabaseMatej2008-09-16T14:54:04Z2008-09-16T14:54:04Z<p>There is a nice book about this topic: <a href="http://oreilly.com/catalog/9780596005771/" rel="nofollow">Spidering Hacks by Kevin Hemenway and Tara Calishain</a>. </p>
http://stackoverflow.com/questions/72899/in-python-how-do-i-sort-a-list-of-dictionaries-by-values-of-the-dictionary/72950#729502Answer by Matej for In Python how do I sort a list of dictionaries by values of the dictionary?Matej2008-09-16T14:31:52Z2008-09-16T14:31:52Z<p>You have to implement your own comparison function that will compare the dictionaries by values of name keys. See <a href="http://wiki.python.org/moin/HowTo/Sorting" rel="nofollow">Sorting Mini-HOW TO from PythonInfo Wiki</a></p>
http://stackoverflow.com/questions/72852/how-to-do-relative-imports-in-python/72904#729043Answer by Matej for How to do relative imports in Python?Matej2008-09-16T14:27:57Z2008-09-16T14:27:57Z<p>Why you even need this? Why you just do not import it as</p>
<pre><code>from app.sub2 import mod2
</code></pre>
http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72751#727510Answer by Matej for Embed data in a C++ programMatej2008-09-16T14:15:31Z2008-09-16T14:15:31Z<p>I have seen this to be done by converting the resource file to a C source file with only one char array defined containing the content of resource file in a hexadecimal format (to avoid problems with malicious characters). This automatically generated source file is then simply compiled and linked to the project. </p>
<p>It should be pretty easy to implement the convertor to dump C file for each resource file also as to write some facade functions for accessing the resources.</p>
http://stackoverflow.com/questions/72125/how-do-you-pass-an-authenticaticated-session-between-app-domains/72278#722780Answer by Matej for How do you pass an authenticaticated session between app domainsMatej2008-09-16T13:39:14Z2008-09-16T13:39:14Z<p>The resolution depends on the type of application and environment in which it is running. E.g. on intranet with NT Domain you can use NTLM to pass windows credentials directly to servers in intranet perimeter without any need to duplicate sessions.</p>
<p>The approach how to do this is generally named <em>single sign-on</em> (see <a href="http://en.wikipedia.org/wiki/Single_sign-on" rel="nofollow">Wikipedia</a>). </p>
http://stackoverflow.com/questions/70756/what-is-the-difference-between-precedence-associativity-and-order/70881#708814Answer by Matej for What is the difference between precedence, associativity, and order?Matej2008-09-16T10:01:02Z2008-09-16T10:01:02Z<p><em>Precedence</em> rules specify priority of operators (which operators will be evaluated first, e.g. multiplication has higher precedence than addition, PEMDAS). </p>
<p>The <em>associativity</em> rules tell how the operators of same precedence are grouped. Arithmetic operators are left-associative, but the assignment is right associative (e.g. a = b = c will be evaluated as b = c, a = b). </p>
<p>The <em>order</em> is a result of applying the <em>precedence</em> and <em>associativity</em> rules and tells how the expression will be evaluated - which operators will be evaluated firs, which later, which at the end. The actual order can be changed by using <em>braces</em> (braces are also operator with the highest precedence). </p>
<p>The <em>precedence</em> and <em>associativity</em> of operators in a programming language can be found in its language manual or specification. </p>
http://stackoverflow.com/questions/934133/how-i-can-disable-the-second-level-cache-of-some-certain-entities-in-hibernate-wi/934372#934372Comment by Matej on How I can disable the second-level cache of some certain entities in Hibernate without changing annotationsMatej2009-06-02T08:27:51Z2009-06-02T08:27:51ZHibernate identifies cache for object by its entity name. By default class name is used as entity name, but it can be changed in Hibernate mapping files (or annotations). If you haven't changed the entity name in Hibernate mapping, you should simply use the fully qualified class name. Otherwise use the (symbolic) entity name explicitly specified in Hibernate mapping.http://stackoverflow.com/questions/886543/sqlconnection-is-remote-or-local-connectionComment by Matej on SqlConnection - is remote or local connection?Matej2009-05-20T07:16:48Z2009-05-20T07:16:48ZWhy do you want to do this?http://stackoverflow.com/questions/878200/java-curve-fitting-library/878268#878268Comment by Matej on Java curve fitting libraryMatej2009-05-19T07:25:12Z2009-05-19T07:25:12ZNo, he does not want to do this. He needs to compute control points of the curve using spline interpolation or some heuristics method. http://stackoverflow.com/questions/855290/tcp-socket-timeout-configuration/856954#856954Comment by Matej on TCP socket timeout configurationMatej2009-05-14T07:23:33Z2009-05-14T07:23:33ZAh, yes. You are right. Well, I am wondering if something similar is not possible also with native windows libraries. http://stackoverflow.com/questions/74290/whats-the-best-way-to-clean-a-monitor-for-cheap/74312#74312Comment by Matej on What's the best way to clean a monitor (for cheap) ?Matej2008-09-16T16:38:22Z2008-09-16T16:38:22ZDo not use paper towels! They are made from recycled paper and can be sharp enough to scratch the LCD.