User mafro - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:04:32Z http://stackoverflow.com/feeds/user/1562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1685563/apache-webserver-jboss-ajp-connectivity-with-https/1686110#1686110 0 Answer by mafro for Apache Webserver & JBoss AJP connectivity with https mafro 2009-11-06T08:05:31Z 2009-11-06T08:05:31Z <p>SSL on apache is usally enabled using a separate virtual host (vhost). Have you enabled and configurered <code>mod_jk</code> (<code>mod_proxy_ajp/mod_cluster</code>) for that vhost?</p> http://stackoverflow.com/questions/1380898/how-do-i-get-more-debug-messages-from-hibernate/1404869#1404869 1 Answer by mafro for How do I get more debug messages from Hibernate? mafro 2009-09-10T12:00:55Z 2009-09-10T12:00:55Z <p>Also make shure you're using the correct log4j-configuration. </p> <p>When running in jboss (you are doing that, right?), you configure log4j-logging in <code>$JBOSS_HOME/server/&lt;config&gt;/conf/jboss-log4j.xml</code>.</p> <p>There are two default appenders; <code>FILE</code> writes to <code>log/server.log</code> and <code>CONSOLE</code> to <code>stdout</code> (sometimes redirected <code>log/console.log</code>). Adjust threshold on the appender to <code>DEBUG</code> in the file or by setting the systemproperty <code>jboss.server.log.threshold</code> (depends on which version of jboss you are using).</p> <p>You'll also need to adjust the logging priority of hibernate by adding a category:</p> <pre><code>&lt;category name="org.hibernate"&gt; &lt;priority value="DEBUG"/&gt; &lt;/category&gt; </code></pre> http://stackoverflow.com/questions/1404214/how-to-change-url-for-web-app/1404691#1404691 1 Answer by mafro for How to change URL for web app? mafro 2009-09-10T11:17:11Z 2009-09-10T11:17:11Z <p>Have you tried to configure the context-root?</p> <p>WEB-INF/jboss-web.xml:</p> <pre><code>&lt;jboss-web&gt; &lt;context-root&gt;/support/myWebApp&lt;/context-root&gt; &lt;/jboss-web&gt; </code></pre> http://stackoverflow.com/questions/1305980/weblogic-or-jboss/1315231#1315231 1 Answer by mafro for Weblogic or JBoss? mafro 2009-08-22T05:42:40Z 2009-08-22T11:28:21Z <p>Personally I would choose JBoss (community version) over Weblogic (Server) because it's free (you know, like in freedom). But that isn't answering the question, so...</p> <p>I can see two main reasons for choosing Weblogic:</p> <ol> <li>Weblogic is a well integrated product with a single configuration mechanism/file (easier* to configure and maintain).</li> <li>Integration with Tuxedo. </li> </ol> <p>*) The term easier is subjective. Most things are easy when you know how to do them.</p> http://stackoverflow.com/questions/1237270/how-to-set-custom-http-header/1264687#1264687 0 Answer by mafro for how to set custom http header mafro 2009-08-12T07:20:50Z 2009-08-12T07:20:50Z <p>Use <a href="http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpServletResponse.html#addHeader%28java.lang.String,%20java.lang.String%29" rel="nofollow"><code>javax.servlet.http.HttpServletResponse.addHeader(String, String)</code></a> to add headers to a response.</p> <p>You can access the HttpServletResponse in a <a href="http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpServlet.html" rel="nofollow"><code>Servlet</code></a>, JSP or a (Servlet) <a href="http://java.sun.com/javaee/5/docs/api/javax/servlet/Filter.html" rel="nofollow"><code>Filter</code></a>.</p> http://stackoverflow.com/questions/1257271/tool-for-downloading-eclipse-plugins-from-update-sites 1 Tool for downloading eclipse plugins from update sites mafro 2009-08-10T21:19:09Z 2009-08-12T07:12:47Z <p>I need to install an eclipse plugin to a machine not connected to the Internet and I cannot find a dist to use for a local install.</p> <p>Is there a tool for downloading a plugin from an update site and create a local installation archive (or a local update site)? Rumors says you can do this with eclipse, but I cant find any info on how to do it.</p> http://stackoverflow.com/questions/1262028/how-to-execute-an-url-using-android/1262490#1262490 2 Answer by mafro for How to execute an URL using Android? mafro 2009-08-11T19:45:36Z 2009-08-11T19:45:36Z <p>Android contains the <a href="http://hc.apache.org/" rel="nofollow">Apache Http Components</a> in package <code>org.apache.http</code>. There you will find everything you need to call an URL with parameters.</p> <p>And here you'll find the client tutorial: <a href="http://hc.apache.org/httpcomponents-client/tutorial/html/" rel="nofollow">http://hc.apache.org/httpcomponents-client/tutorial/html/</a></p> <p>You need to do something like this:</p> <ol> <li>Create an HttpClient (<code>HttpClient client = new DefaultHttpClient();</code>)</li> <li>Create a GET-method to URL (<code>HttpGet req = new HttpGet("url-without-params");</code>)</li> <li>Add parameters to method (<code>req.setParams(params);</code>)</li> <li>Execute method using client (<code>HttpResponse res = client.executeMethod(req);</code>)</li> <li>Check response (<code>res.getStatusLine().getStatusCode();</code>)</li> </ol> <p>Good luck!</p> http://stackoverflow.com/questions/619215/howto-make-javax-faces-model-selectitem-selected 0 Howto make javax.faces.model.SelectItem selected mafro 2009-03-06T15:23:32Z 2009-03-06T15:49:10Z <p>I'm creating a List of <code>javax.faces.model.SelectItem</code> (in a bean) for use with a <code>h:selectManyCheckbox</code> but I cannot figure out how to make a <code>SelectItem</code> selected.</p> <p>Does anyone know how to do this? Must be possible, right?...</p> <pre><code> public List&lt;SelectItem&gt; getPlayerList(String teamName) { List&lt;SelectItem&gt; list = new ArrayList&lt;SelectItem&gt;(); TeamPage team = (TeamPage) pm.findByName(teamName); List&lt;PlayerPage&gt; players = pm.findAllPlayerPages(); for (PlayerPage player : players) { boolean isMember = false; if (team.getPlayerPages().contains(player)) { isMember = true; } SelectItem item; if (isMember) { // TODO: Make SelectItem selected??? item = null; } else { item = new SelectItem(player.getId(), createListItemLabel(player), "", false, false); } list.add(item); } return list; } </code></pre> http://stackoverflow.com/questions/21207/db4o-experiences 12 db4o experiences? mafro 2008-08-21T21:12:01Z 2009-02-09T15:42:28Z <p>I'm currently trying out db4o (the java version) and I pretty much like what I see. But I cannot help wondering how it does perform in a real live (web-)environment. Does anyone have any experiences (good or bad) to share about running db4o? </p> http://stackoverflow.com/questions/277502/jaxb-how-to-ignore-namespace-during-unmarshalling-xml-document/326140#326140 0 Answer by mafro for JAXB: How to ignore namespace during unmarshalling XML document? mafro 2008-11-28T16:14:06Z 2008-11-28T16:14:06Z <p>Another way to add a default namespace to an XML Document before feeding it to JAXB is to use <a href="http://jdom.org" rel="nofollow">JDom</a>:</p> <ol> <li>Parse XML to a Document</li> <li>Iterate through and set namespace on all Elements</li> <li>Unmarshall using a JDOMSource</li> </ol> <p>Like this:</p> <pre><code>public class XMLObjectFactory { private static Namespace DEFAULT_NS = Namespace.getNamespace("http://tempuri.org/"); public static Object createObject(InputStream in) { try { SAXBuilder sb = new SAXBuilder(false); Document doc = sb.build(in); setNamespace(doc.getRootElement(), DEFAULT_NS, true); Source src = new JDOMSource(doc); JAXBContext context = JAXBContext.newInstance("org.tempuri"); Unmarshaller unmarshaller = context.createUnmarshaller(); JAXBElement root = unmarshaller.unmarshal(src); return root.getValue(); } catch (Exception e) { throw new RuntimeException("Failed to create Object", e); } } private static void setNamespace(Element elem, Namespace ns, boolean recurse) { elem.setNamespace(ns); if (recurse) { for (Object o : elem.getChildren()) { setNamespace((Element) o, ns, recurse); } } } </code></pre> http://stackoverflow.com/questions/1254072/error-for-oracle-driver-for-db-server-10g-and-jboss-4-2-3-application-server Comment by mafro on Error for Oracle Driver for DB server 10g and Jboss 4.2.3 application server mafro 2009-08-12T07:10:19Z 2009-08-12T07:10:19Z It's impossible to help out if you don't supply more info. Like errormessages, stacktraces, logfileentries and maybe even config files (oracle-ds.xml). http://stackoverflow.com/questions/1257271/tool-for-downloading-eclipse-plugins-from-update-sites/1258965#1258965 Comment by mafro on Tool for downloading eclipse plugins from update sites mafro 2009-08-11T10:52:43Z 2009-08-11T10:52:43Z I used the mirror artifact command and used the downloaded files locally and it worked like a charm. Have not trided the ant task (yet). Thanks Peter for your help. http://stackoverflow.com/questions/1257271/tool-for-downloading-eclipse-plugins-from-update-sites/1258965#1258965 Comment by mafro on Tool for downloading eclipse plugins from update sites mafro 2009-08-11T08:19:58Z 2009-08-11T08:19:58Z Exactly the tool I was looking for - thanks! http://stackoverflow.com/questions/1257271/tool-for-downloading-eclipse-plugins-from-update-sites Comment by mafro on Tool for downloading eclipse plugins from update sites mafro 2009-08-11T07:54:10Z 2009-08-11T07:54:10Z Messed up the tags, sorry for that. http://stackoverflow.com/questions/619215/howto-make-javax-faces-model-selectitem-selected/619313#619313 Comment by mafro on Howto make javax.faces.model.SelectItem selected mafro 2009-03-06T19:10:02Z 2009-03-06T19:10:02Z thanks for the quick response/answer!