User mafro - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T05:04:32Zhttp://stackoverflow.com/feeds/user/1562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1685563/apache-webserver-jboss-ajp-connectivity-with-https/1686110#16861100Answer by mafro for Apache Webserver & JBoss AJP connectivity with httpsmafro2009-11-06T08:05:31Z2009-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#14048691Answer by mafro for How do I get more debug messages from Hibernate?mafro2009-09-10T12:00:55Z2009-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/<config>/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><category name="org.hibernate">
<priority value="DEBUG"/>
</category>
</code></pre>
http://stackoverflow.com/questions/1404214/how-to-change-url-for-web-app/1404691#14046911Answer by mafro for How to change URL for web app?mafro2009-09-10T11:17:11Z2009-09-10T11:17:11Z<p>Have you tried to configure the context-root?</p>
<p>WEB-INF/jboss-web.xml:</p>
<pre><code><jboss-web>
<context-root>/support/myWebApp</context-root>
</jboss-web>
</code></pre>
http://stackoverflow.com/questions/1305980/weblogic-or-jboss/1315231#13152311Answer by mafro for Weblogic or JBoss?mafro2009-08-22T05:42:40Z2009-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#12646870Answer by mafro for how to set custom http headermafro2009-08-12T07:20:50Z2009-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-sites1Tool for downloading eclipse plugins from update sitesmafro2009-08-10T21:19:09Z2009-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#12624902Answer by mafro for How to execute an URL using Android?mafro2009-08-11T19:45:36Z2009-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-selected0Howto make javax.faces.model.SelectItem selectedmafro2009-03-06T15:23:32Z2009-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<SelectItem> getPlayerList(String teamName) {
List<SelectItem> list = new ArrayList<SelectItem>();
TeamPage team = (TeamPage) pm.findByName(teamName);
List<PlayerPage> 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-experiences12db4o experiences?mafro2008-08-21T21:12:01Z2009-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#3261400Answer by mafro for JAXB: How to ignore namespace during unmarshalling XML document?mafro2008-11-28T16:14:06Z2008-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-serverComment by mafro on Error for Oracle Driver for DB server 10g and Jboss 4.2.3 application servermafro2009-08-12T07:10:19Z2009-08-12T07:10:19ZIt'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#1258965Comment by mafro on Tool for downloading eclipse plugins from update sitesmafro2009-08-11T10:52:43Z2009-08-11T10:52:43ZI 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#1258965Comment by mafro on Tool for downloading eclipse plugins from update sitesmafro2009-08-11T08:19:58Z2009-08-11T08:19:58ZExactly the tool I was looking for - thanks!http://stackoverflow.com/questions/1257271/tool-for-downloading-eclipse-plugins-from-update-sitesComment by mafro on Tool for downloading eclipse plugins from update sitesmafro2009-08-11T07:54:10Z2009-08-11T07:54:10ZMessed up the tags, sorry for that.http://stackoverflow.com/questions/619215/howto-make-javax-faces-model-selectitem-selected/619313#619313Comment by mafro on Howto make javax.faces.model.SelectItem selectedmafro2009-03-06T19:10:02Z2009-03-06T19:10:02Zthanks for the quick response/answer!