User mangst - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:30:46Z http://stackoverflow.com/feeds/user/13379 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1602156/calling-the-healthvault-getthings-method-in-java 0 Calling the HealthVault GetThings method in Java mangst 2009-10-21T16:56:35Z 2009-10-23T14:30:02Z <p>I'm trying to use the <a href="http://healthvaultjavalib.codeplex.com/" rel="nofollow">Java HealthVault API</a> to make a call to the GetThings method in "offline" mode (meaning, the user doesn't have to login) to retrieve all "File" type items. From what I understand, all you need to make an offline request is the Persion ID and Record ID of the user's account. However, even though I'm adding these to the request, the method call doesn't work. It returns the error code "67" in the response, which, according to a static variable in the API, stands for "invalid person or group ID".</p> <p>I've double checked the Person ID and Record IDs and they are indeed correct. Making the same request in "online" mode (i.e. when including a user-auth-token) works perfectly fine. My application is configured to allow offline access to all "File" item types, so it couldn't be an access issue.</p> <p>I've replaced the real Person ID and Record IDs with fake ones in the below code samples for security reasons:</p> <p>Here's my Java code:</p> <pre><code>StringBuilder requestXml = new StringBuilder(); requestXml.append("&lt;info&gt;&lt;group&gt;"); requestXml.append("&lt;filter&gt;&lt;type-id&gt;bd0403c5-4ae2-4b0e-a8db-1888678e4528&lt;/type-id&gt;&lt;/filter&gt;"); requestXml.append("&lt;format&gt;&lt;section&gt;core&lt;/section&gt;&lt;section&gt;otherdata&lt;/section&gt;&lt;xml/&gt;&lt;/format&gt;"); requestXml.append("&lt;/group&gt;&lt;/info&gt;"); Request request = new Request(); request.setMethodName("GetThings"); request.setOfflineUserId("e2f925e7-2748-4d88-bz48-32036dc10020"); request.setRecordId("73ab2792-5481-43eb-837c-67d1e3337300"); request.setInfo(requestXml.toString()); Connection connection = ConnectionFactory.getConnection(); HVAccessor accessor = new HVAccessor(); accessor.send(request, connection); </code></pre> <p>The XML request it generates:</p> <pre><code>&lt;wc-request:request xmlns:wc-request="urn:com.microsoft.wc.request"&gt; &lt;auth&gt; &lt;hmac-data algName="HMACSHA1"&gt;5WdiBnTvxsNbVHg134ggIETlJNE=&lt;/hmac-data&gt; &lt;/auth&gt; &lt;header&gt; &lt;method&gt;GetThings&lt;/method&gt; &lt;method-version&gt;1&lt;/method-version&gt; &lt;record-id&gt;73ab2792-5481-43eb-837c-67d1e3337300&lt;/record-id&gt; &lt;auth-session&gt; &lt;auth-token&gt;ASAAAJQ1R50J8HpMshAjeHkjh/habVgM17BjSBuA/GmbJPV9A9d63mramakSZxf+ZHZh+7xWllTWGhAijBvxhNxauzBLci1IWWh+JDbGQZabnWbG7YH28ZP+FQuRPNP4T8O1NTNCFNETao0ly+UuPjWEZWCV5cCPX7GjaEJ4BMAFv4vAOEwIOe63VWntfzH9r3Rz0VnHAhb400iqs1XxlJrRbgXdNRdg&lt;/auth-token&gt; &lt;offline-person-info&gt; &lt;offline-person-id&gt;e2f925e7-2748-4d88-bz48-32036dc10020&lt;/offline-person-id&gt; &lt;/offline-person-info&gt; &lt;/auth-session&gt; &lt;language&gt;en&lt;/language&gt; &lt;country&gt;US&lt;/country&gt; &lt;msg-time&gt;2009-10-21T12:37:51.706-04:00&lt;/msg-time&gt; &lt;msg-ttl&gt;180000&lt;/msg-ttl&gt; &lt;version&gt;0.0.0.1&lt;/version&gt; &lt;info-hash&gt; &lt;hash-data algName="SHA1"&gt;oAZVXLGAUMfuVPrqjqb98yCb4/c=&lt;/hash-data&gt; &lt;/info-hash&gt; &lt;/header&gt; &lt;info&gt; &lt;group&gt; &lt;filter&gt; &lt;type-id&gt;bd0403c5-4ae2-4b0e-a8db-1888678e4528&lt;/type-id&gt; &lt;/filter&gt; &lt;format&gt; &lt;section&gt;core&lt;/section&gt; &lt;section&gt;otherdata&lt;/section&gt; &lt;xml /&gt; &lt;/format&gt; &lt;/group&gt; &lt;/info&gt; &lt;/wc-request:request&gt; </code></pre> <p>The XML response I get back:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;response&gt; &lt;status&gt; &lt;code&gt;67&lt;/code&gt; &lt;error&gt; &lt;message&gt;Exception of type 'Microsoft.Health.Platform.WildcatStatusException' was thrown.&lt;/message&gt; &lt;/error&gt; &lt;/status&gt; &lt;/response&gt; </code></pre> <p>Thank you so much for your help. :)</p> http://stackoverflow.com/questions/1602156/calling-the-healthvault-getthings-method-in-java/1613856#1613856 0 Answer by mangst for Calling the HealthVault GetThings method in Java mangst 2009-10-23T14:30:02Z 2009-10-23T14:30:02Z <p>Turns out the problem was that my Person and Record IDs actually <em>were</em> incorrect. I was using the ones I got while connected to the <em>sample</em> application, as opposed to my <em>own</em> application. I didn't know they changed across applications. After making a call to GetPersonInfo from my own application, I was able to get the correct Person and Record IDs.</p> http://stackoverflow.com/questions/917127/can-healthvault-applications-be-be-written-as-thick-windows-forms-applications-or/1596262#1596262 1 Answer by mangst for Can HealthVault applications be be written as thick Windows forms applications or must they be written as web applications? mangst 2009-10-20T17:52:26Z 2009-10-20T17:52:26Z <p>There are two types of ways you can access HealthVault (the terms are kind of confusing).</p> <ol> <li><strong>Online</strong> - The most common is "online" mode, which requires that the user login with their LiveID/OpenID every time they want to use your application. This is what you'd use if you were writing a web application.</li> <li><a href="http://msdn.microsoft.com/en-us/healthvault/bb871490.aspx" rel="nofollow"><strong>Offline</strong></a> - The second way is "offline" mode, which is what you'll want to look into. This will let you access someone's HealthVault data without them having to login. However, it requires that the user login once so that she can approve your application and so that your application can get her Person ID (aka User ID) and Record ID, which you need to perform any offline action.</li> </ol> <p>Also note that HealthVault applications have different access rights for each mode. For example, an application may allow online access to weight, height, and allergy data, but may only allow offline access to allergy data.</p> <p>And note that the sample applications that come with the SDK do not support offline access, so if you want to play around with this mode, you'll have to <a href="http://msdn.microsoft.com/en-us/healthvault/bb898878.aspx" rel="nofollow">create your own application</a>.</p> http://stackoverflow.com/questions/84680/how-do-you-authenticate-against-an-active-directory-server-using-spring-security 4 How do you authenticate against an Active Directory server using Spring Security? mangst 2008-09-17T15:44:00Z 2009-10-14T08:03:01Z <p>I'm writing a Spring web application that requires users to login. My company has an Active Directory server that I'd like to make use of for this purpose. However, I'm having trouble using Spring Security to connect to the server.</p> <p>I'm using Spring 2.5.5 and Spring Security 2.0.3, along with Java 1.6.</p> <p>If I change the LDAP URL to the wrong IP address, it doesn't throw an exception or anything, so I'm wondering if it's even <em>trying</em> to connect to the server to begin with.</p> <p>Although the web application starts up just fine, any information I enter into the login page is rejected. I had previously used an InMemoryDaoImpl, which worked fine, so the rest of my application seems to be configured correctly.</p> <p>Here are my security-related beans:</p> <pre><code> &lt;beans:bean id="ldapAuthProvider" class="org.springframework.security.providers.ldap.LdapAuthenticationProvider"&gt; &lt;beans:constructor-arg&gt; &lt;beans:bean class="org.springframework.security.providers.ldap.authenticator.BindAuthenticator"&gt; &lt;beans:constructor-arg ref="initialDirContextFactory" /&gt; &lt;beans:property name="userDnPatterns"&gt; &lt;beans:list&gt; &lt;beans:value&gt;CN={0},OU=SBSUsers,OU=Users,OU=MyBusiness,DC=Acme,DC=com&lt;/beans:value&gt; &lt;/beans:list&gt; &lt;/beans:property&gt; &lt;/beans:bean&gt; &lt;/beans:constructor-arg&gt; &lt;/beans:bean&gt; &lt;beans:bean id="userDetailsService" class="org.springframework.security.userdetails.ldap.LdapUserDetailsManager"&gt; &lt;beans:constructor-arg ref="initialDirContextFactory" /&gt; &lt;/beans:bean&gt; &lt;beans:bean id="initialDirContextFactory" class="org.springframework.security.ldap.DefaultInitialDirContextFactory"&gt; &lt;beans:constructor-arg value="ldap://192.168.123.456:389/DC=Acme,DC=com" /&gt; &lt;/beans:bean&gt; </code></pre> http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error 2 Firefox "ssl_error_no_cypher_overlap" error mangst 2009-02-13T19:01:15Z 2009-09-01T13:26:24Z <p>My co-workers and I are having a problem using Firefox 3.0.6 to access a Java 1.6.0___11 web application we're developing. Everything works fine anywhere from 1-30 minutes into the session...but eventually, the connection fails and the following error appears:</p> <p><code>Secure Connection Failed</code> </p> <p><code>An error occurred during a connection to 10.x.x.x.</code></p> <p><code>Cannot communicate securely with peer: no common encryption algorithm(s).</code></p> <p><code>(Error code: ssl_error_no_cypher_overlap)</code></p> <p>IE works fine. Firefox throws the error in both Windows and Fedora, so the problem doesn't appear to be tied to an OS. The Java EE application runs on a Tomcat 6.0.16 server. All pages are encrypted using TLS 1.0 through an Apache 2.2.8 HTTP server with mod_nss.</p> <p>Our Apache server is configured to reject SSL 3.0 connections. One hypothesis we have is that Firefox might be trying to establish a SSL 3.0 connection...but why?</p> <p>Based some Googling, we tried the following things, but without success:</p> <ul> <li><p>using Firefox 2.x (some people reported instances where 2.x worked but 3.x didn't):</p></li> <li><p>enabling SSL2</p></li> <li><p>disabling SSL3</p></li> <li><p>disabling OCSP (Tool > Options > Advanced > Encryption > Validation)</p></li> <li><p>ensuring that the anti-virus/firewall of the client computer isn't blocking or scanning port 443 (https port)</p></li> </ul> <p>Any ideas?</p> http://stackoverflow.com/questions/1099859/how-to-split-a-path-platform-independent/1100261#1100261 0 Answer by mangst for How to split a path platform independent? mangst 2009-07-08T20:03:54Z 2009-07-08T20:03:54Z <p>What about </p> <pre><code>String[] subDirs = path.split(File.separator.replaceAll("\\", "\\\\")); </code></pre> http://stackoverflow.com/questions/1100120/question-about-java-constructor-call-syntax/1100239#1100239 -1 Answer by mangst for question about java constructor call syntax mangst 2009-07-08T20:00:29Z 2009-07-08T20:00:29Z <pre><code>MyTest tester = new MyTest() {{ setName("John Johnson"); }}; </code></pre> <p>is the same as</p> <pre><code>MyTest tester = new MyTest(); tester.setName("John Johnson"); </code></pre> http://stackoverflow.com/questions/831942/can-i-find-out-from-a-javascript-method-who-which-dom-element-called-me/831959#831959 0 Answer by mangst for Can I find out from a Javascript method, who\which DOM element called me? mangst 2009-05-06T21:52:02Z 2009-05-06T21:52:02Z <p>You could pass the value of the <code>href</code> attribute to the function when it is called:</p> <pre><code>&lt;a href="http://www.example.com" onclick="foo(this.href)"&gt;link&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/587360/php-warning-too-many-open-files-any-ideas/587487#587487 0 Answer by mangst for PHP Warning: Too many open files -- any ideas? mangst 2009-02-25T19:37:30Z 2009-02-25T19:57:28Z <p>I know you said <code>get_load()</code> uses <code>file_get_contents()</code>, but to make sure...does it properly close all the files it opens? Could you post the code from that function?</p> <p>Edit: Even though it's a built-in function, try using something other than <code>file_get_contents()</code> to read the file and see what happens.</p> http://stackoverflow.com/questions/543049/default-xml-namespace-jdom-and-xpath 4 Default XML namespace, JDOM, and XPath mangst 2009-02-12T20:17:41Z 2009-02-12T23:13:39Z <p>I want to use JDOM to read in an XML file, then use XPath to extract data from the JDOM Document. It creates the Document object fine, but when I use XPath to query the Document for a List of elements, I get nothing.</p> <p>My XML document has a default namespace defined in the root element. The funny thing is, when I remove the default namespace, it successfully runs the XPath query and returns the elements I want. What else must I do to get my XPath query to return results?</p> <p>XML:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;collection xmlns="http://www.foo.com"&gt; &lt;dvd id="A"&gt; &lt;title&gt;Lord of the Rings: The Fellowship of the Ring&lt;/title&gt; &lt;length&gt;178&lt;/length&gt; &lt;actor&gt;Ian Holm&lt;/actor&gt; &lt;actor&gt;Elijah Wood&lt;/actor&gt; &lt;actor&gt;Ian McKellen&lt;/actor&gt; &lt;/dvd&gt; &lt;dvd id="B"&gt; &lt;title&gt;The Matrix&lt;/title&gt; &lt;length&gt;136&lt;/length&gt; &lt;actor&gt;Keanu Reeves&lt;/actor&gt; &lt;actor&gt;Laurence Fishburne&lt;/actor&gt; &lt;/dvd&gt; &lt;/collection&gt; </code></pre> <p>Java:</p> <pre><code>public static void main(String args[]) throws Exception { SAXBuilder builder = new SAXBuilder(); Document d = builder.build("xpath.xml"); XPath xpath = XPath.newInstance("collection/dvd"); xpath.addNamespace(d.getRootElement().getNamespace()); System.out.println(xpath.selectNodes(d)); } </code></pre> http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513389#513389 0 Answer by mangst for Why would this web page cause IE6 to lock up? mangst 2009-02-04T21:16:09Z 2009-02-04T21:16:09Z <p>Do they have the latest version of IE6? Have they run Windows Update recently? Maybe there's some obscure bug that is fixed in a patch or service pack.</p> http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513287#513287 0 Answer by mangst for Why would this web page cause IE6 to lock up? mangst 2009-02-04T20:54:20Z 2009-02-04T20:54:20Z <p>Maybe it has something to do with Javascript code. IE6's engine is undoubtedly much less well designed than that of other browsers.</p> http://stackoverflow.com/questions/512798/how-to-convert-a-string-to-charsequence-in-java/512805#512805 0 Answer by mangst for How to convert a String to CharSequence in Java? mangst 2009-02-04T19:04:01Z 2009-02-04T19:04:01Z <p>The class <code>String</code> implements the interface <code>CharSequence</code>. So yes, you can pass <code>String</code>s to <code>StringBuilder</code>s.</p> http://stackoverflow.com/questions/512651/how-is-javas-notion-of-static-different-from-cs/512710#512710 0 Answer by mangst for How is Java's notion of static different from C#'s? mangst 2009-02-04T18:43:18Z 2009-02-04T18:43:18Z <p>I don't know why C# is complaining, but I can say that the code is thread-safe. If you were creating two or more instances of <code>Property</code> at the same time, each in their own threads, you wouldn't run into any problems.</p> http://stackoverflow.com/questions/508878/re-big-xml-file/509034#509034 0 Answer by mangst for RE: Big XML file mangst 2009-02-03T21:43:56Z 2009-02-03T21:43:56Z <p>I don't know the correct terminology for this, but how "deep" does your XML go? For example, the "author" tag in your example is 2 elements deep. If you have tags that are really really deep, maybe that's why you're having memory issues?</p> http://stackoverflow.com/questions/83444/starting-javascript-development-what-to-do/476710#476710 0 Answer by mangst for Starting javascript development - what to do? mangst 2009-01-24T21:47:10Z 2009-01-24T21:47:10Z <ul> <li><p>The W3Schools website is a good place to learn the basics. It also has a great reference section: <a href="http://www.w3schools.com/js/default.asp" rel="nofollow">http://www.w3schools.com/js/default.asp</a></p></li> <li><p>The Firefox plugin "Firebug" is great for debugging.</p></li> <li><p>No, you don't need a webserver to run Javascrpt.</p></li> </ul> http://stackoverflow.com/questions/454908/split-java-string-by-new-line/455750#455750 0 Answer by mangst for Split Java String by New Line mangst 2009-01-18T19:27:11Z 2009-01-18T19:27:11Z <p>Maybe this would work:</p> <p>Remove the double backslashes from the parameter of the split method:</p> <pre><code>split = docStr.split("\n"); </code></pre> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/455737#455737 1 Answer by mangst for What are the best programming articles? mangst 2009-01-18T19:18:18Z 2009-01-18T19:18:18Z <p>This blog post by a Google employee named Ben Sussman talks about how, due to the anonymous nature of the Internet, we programmers will accept nothing but perfection from ourselves and eachother. This is very different from other professions, where mistakes are expected to happen and people are expected to learn from them.</p> <p><a href="http://blog.red-bean.com/sussman/?p=96" rel="nofollow">http://blog.red-bean.com/sussman/?p=96</a></p> http://stackoverflow.com/questions/428594/what-are-some-good-java-web-development-tools-across-the-board/433656#433656 0 Answer by mangst for What are some good Java web development tools (across the board) mangst 2009-01-11T20:44:50Z 2009-01-11T20:44:50Z <p>FindBugs is a good utility for improving your Java code in general, whether you're doing web development or something else:</p> <p><a href="http://findbugs.sourceforge.net/" rel="nofollow">http://findbugs.sourceforge.net/</a></p> http://stackoverflow.com/questions/430479/how-do-i-use-an-equivalent-to-c-reference-parameters-in-java/433631#433631 0 Answer by mangst for How do I use an equivalent to C++ reference parameters in Java? mangst 2009-01-11T20:33:09Z 2009-01-11T20:33:09Z <p>Are the two integers related? Like a pair of x/y coordinates? If so, I would put the integers in a new class and pass that class into the method.</p> <pre><code>class A{ public void test(Coord c) { c.x++; c.y++; } private class Coord{ public int x, y; } } </code></pre> <p>If the two integers are not related, you might want to think about why you are passing them into the same method in the first place.</p> http://stackoverflow.com/questions/433591/why-do-c-and-java-bother-with-the-new-operator/433617#433617 11 Answer by mangst for Why do C# and Java bother with the "new" operator? mangst 2009-01-11T20:24:33Z 2009-01-11T20:24:33Z <pre><code>Class1 obj = Class1(); </code></pre> <p>In C# and Java, you need the "new" keyword because without it, it treats "Class1()" as a call to a method whose name is "Class1".</p> http://stackoverflow.com/questions/433293/how-to-save-and-load-a-text-mode-game/433587#433587 1 Answer by mangst for How to save and load a text mode game mangst 2009-01-11T20:16:02Z 2009-01-11T20:16:02Z <p>I didn't read the website you linked to, but you'll probably want to write code that reads/writes to a basic text file in order to load/save your game.</p> <p>First, figure out how to format your text file. For example, if I'm writing a pacman game that allows the player to save games, the text file might look something like this:</p> <pre><code>5 54700 3 </code></pre> <p>I would write my code to read the file one line at a time:</p> <p>Line 1: the level the player is on.</p> <p>Line 2: the number of points the player has.</p> <p>Line 3: the number of lives the player has.</p> <p>Do a Google search for C++ file input/output to figure out how to write the actual code.</p> http://stackoverflow.com/questions/433493/why-do-multiple-spaces-in-an-html-file-show-up-as-single-spaces-in-the-browser/433549#433549 1 Answer by mangst for Why do multiple spaces in an HTML file show up as single spaces in the browser? mangst 2009-01-11T20:01:44Z 2009-01-11T20:01:44Z <p>If browsers did not do this, it could be difficult to format your HTML code to make it easily readable. For example, you might want to format your code like this:</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;div&gt; I like to indent all content that is inside div tags. &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>If the browser does not ignore the eight or so spaces before the text inside the div tag, your webpage might not look the way you intended it to look.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/77875#77875 142 Answer by mangst for What non-programming books should programmers read? mangst 2008-09-16T22:19:15Z 2008-09-20T16:43:11Z <h2><a href="http://en.wikipedia.org/wiki/Zen_and_the_Art_of_Motorcycle_Maintenance" rel="nofollow"><strong>Zen and the Art of Motorcycle Maintenance</strong></a></h2> <p>by Robert M. Pirsig</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/8/85/Zen_motorcycle.jpg" alt="alt text" /></p> <p>This book is many things, but you could say it's sort of a philosophical take on what it means to "grok" something.</p> <p><hr /></p> <p>Commentry from <a href="http://stackoverflow.com/users/9119/garth-gilmour">Garth Gilmore</a>:</p> <p>I credit this book with teaching me more about software development than any programming book I ever read.</p> <p>The central thread in the book is how our romantic (artistic) and classical (technical/rational) perceptions of the world are both derived from how we perceive quality in the environment around us. This understanding is then applied to apparently mundane tasks like motorcycle maintenance.</p> <p>To give some examples of how this applies to coding:</p> <ul> <li>The section on how to approach the motorcycle with a 'quality mindset' that leads to progress is just as applicable to reaching 'the zone' in programming.</li> <li>The section on 'gumption traps' that prevent progress and lead to you damaging the machine is priceless. The solutions that are presented work just as well when trying to modify legacy code without introducing bugs.</li> <li>The section on how a purely classical description of an engine part is useless (because it lacks any place for the user to stand) should be read by anyone involved in requirements analysis.</li> </ul> <p>Long story short its a good read :-)</p> http://stackoverflow.com/questions/99912/vb-net-there-is-a-naming-violation-error-with-open-ldap-for-creating-user/104942#104942 1 Answer by mangst for VB.Net "There is a naming violation" Error with open ldap for creating user mangst 2008-09-19T19:47:32Z 2008-09-19T19:47:32Z <p>Maybe you need to include this?</p> <pre><code>SetADProperty(newUser, "objectClass", "top") </code></pre> <p>Also, check what the required fields for <code>organizationalPerson</code> and <code>person</code> are...you might be missing one.</p> http://stackoverflow.com/questions/104550/always-have-to-use-css-files/104595#104595 5 Answer by mangst for Always have to use .css files? mangst 2008-09-19T19:04:10Z 2008-09-19T19:04:10Z <p>You can include CSS inside an HTML page. It goes within the <code>&lt;style&gt;</code> tag, which goes within the <code>&lt;head&gt;</code> tag:</p> <pre><code>&lt;head&gt; &lt;style type="text/css"&gt; body{ background-color: blue; } &lt;/style&gt; &lt;/head&gt; </code></pre> <p>Note, however, that it is best practice to use .css files.</p> http://stackoverflow.com/questions/104484/how-do-you-test-software/104527#104527 -2 Answer by mangst for How do you test software? mangst 2008-09-19T18:55:48Z 2008-09-19T18:55:48Z <p>Very hard.</p> http://stackoverflow.com/questions/103848/what-is-your-favourite-area-of-the-java-api/103988#103988 5 Answer by mangst for What is Your Favourite Area of the Java API? mangst 2008-09-19T17:41:32Z 2008-09-19T17:41:32Z <p>My favorite part of the API is definitely <a href="http://java.sun.com/javase/6/docs/api/java/lang/package-frame.html" rel="nofollow">java.lang</a>. It has this class called <code>String</code>, which allows you to easily manipulate arrays of characters. Any programmer who is serious about writing good Java code should check it out.</p> http://stackoverflow.com/questions/98240/best-j2ee-server/102992#102992 0 Answer by mangst for Best J2EE server mangst 2008-09-19T15:37:30Z 2008-09-19T15:37:30Z <p>I use Apache Tomcat. It's easy to use and it's free. I've never had any problems with it.</p> <p><a href="http://tomcat.apache.org/" rel="nofollow">http://tomcat.apache.org/</a></p> http://stackoverflow.com/questions/96247/what-is-the-best-place-to-store-a-configuration-file-in-a-java-web-application-w/96568#96568 1 Answer by mangst for What is the best place to store a configuration file in a java web application (war) ? mangst 2008-09-18T20:29:48Z 2008-09-18T20:29:48Z <p>Putting it in <code>WEB-INF</code> will hide the XML file from users who try to access it directly through a URL, so yes, I'd say put it in <code>WEB-INF</code>.</p> http://stackoverflow.com/questions/1602156/calling-the-healthvault-getthings-method-in-java/1602379#1602379 Comment by mangst on Calling the HealthVault GetThings method in Java mangst 2009-10-21T18:17:34Z 2009-10-21T18:17:34Z Thanks for the suggestion. It sounds like it was a certificate issue with him. I tried re-creating my keystore (I'm using Java...he was probably using .NET), but that didn't help. I use the same keystore for &quot;online&quot; mode and have no problems. http://stackoverflow.com/questions/83040/connecting-to-oracle-using-php/739145#739145 Comment by mangst on Connecting to Oracle using PHP mangst 2009-09-21T13:40:18Z 2009-09-21T13:40:18Z Very cool manual. Thanks for that! http://stackoverflow.com/questions/83040/connecting-to-oracle-using-php/111457#111457 Comment by mangst on Connecting to Oracle using PHP mangst 2009-09-21T13:36:25Z 2009-09-21T13:36:25Z The second link appears not to be working. :) http://stackoverflow.com/questions/1001290/console-based-progress-in-java/1001340#1001340 Comment by mangst on Console based progress in Java mangst 2009-06-16T19:05:58Z 2009-06-16T19:05:58Z @laalto: Yup, tried it in a normal console window and it worked for me. http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error/547674#547674 Comment by mangst on Firefox "ssl_error_no_cypher_overlap" error mangst 2009-02-15T03:46:59Z 2009-02-15T03:46:59Z @Olaf: Yeah, if our router was broken, then I think IE would be getting the same error. http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error/547674#547674 Comment by mangst on Firefox "ssl_error_no_cypher_overlap" error mangst 2009-02-15T03:42:14Z 2009-02-15T03:42:14Z @erickson: By &quot;session&quot; I meant web application session (after entering login credentials at the login page). The error appears in Firefox, not on the server. Everything works perfectly fine in IE, so it appears to be Firefox-specific. http://stackoverflow.com/questions/543049/default-xml-namespace-jdom-and-xpath/543957#543957 Comment by mangst on Default XML namespace, JDOM, and XPath mangst 2009-02-13T19:24:59Z 2009-02-13T19:24:59Z Thanks for the suggestion. I thought about doing something like this, but like you sort of alluded to, removing the namespaces means that there's the chance that you'll run into name collisions, depending on what your XML data looks like. http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error/547275#547275 Comment by mangst on Firefox "ssl_error_no_cypher_overlap" error mangst 2009-02-13T19:24:00Z 2009-02-13T19:24:00Z Tried disabling SSL 3.0, didn't work. All my ssl2 settings in about:config are set to false. I tried setting these all to true as well, but that didn't help either. http://stackoverflow.com/questions/543049/default-xml-namespace-jdom-and-xpath/543120#543120 Comment by mangst on Default XML namespace, JDOM, and XPath mangst 2009-02-12T21:10:39Z 2009-02-12T21:10:39Z Did the trick, thanks! http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513389#513389 Comment by mangst on Why would this web page cause IE6 to lock up? mangst 2009-02-04T21:25:44Z 2009-02-04T21:25:44Z &quot;SP3&quot;s is in there...looks like they do. http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512574#512574 Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange. mangst 2009-02-04T18:53:54Z 2009-02-04T18:53:54Z No it shouldn't! :P The issue is that both lines are accessing the same array element, but in different ways. Line #1 uses an in-line string and the line #2 uses a variable containing a string. Both strings are equal, so both should be returning the same value. http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512574#512574 Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange. mangst 2009-02-04T18:31:10Z 2009-02-04T18:31:10Z Where he's setting it shouldn't matter. The first echo line returns &quot;1&quot;, so the second echo line should return &quot;1&quot; as well. http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512593#512593 Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange. mangst 2009-02-04T18:26:20Z 2009-02-04T18:26:20Z No, this wouldn't work. By using $_SESSION['page_loaded']['tmp'], you would be accessing a completely different array element. http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512564#512564 Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange. mangst 2009-02-04T18:15:26Z 2009-02-04T18:15:26Z Don't think the type of quotes used would make a difference in this case. http://stackoverflow.com/questions/508878/re-big-xml-file/508954#508954 Comment by mangst on RE: Big XML file mangst 2009-02-03T21:42:44Z 2009-02-03T21:42:44Z But would that cause a memory error? I'm not an XML expert either, but I would think that bad entities like &#233; would cause SAXExceptions as opposed to memory exceptions.