User mangst - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:30:46Zhttp://stackoverflow.com/feeds/user/13379http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1602156/calling-the-healthvault-getthings-method-in-java0Calling the HealthVault GetThings method in Javamangst2009-10-21T16:56:35Z2009-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("<info><group>");
requestXml.append("<filter><type-id>bd0403c5-4ae2-4b0e-a8db-1888678e4528</type-id></filter>");
requestXml.append("<format><section>core</section><section>otherdata</section><xml/></format>");
requestXml.append("</group></info>");
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><wc-request:request xmlns:wc-request="urn:com.microsoft.wc.request">
<auth>
<hmac-data algName="HMACSHA1">5WdiBnTvxsNbVHg134ggIETlJNE=</hmac-data>
</auth>
<header>
<method>GetThings</method>
<method-version>1</method-version>
<record-id>73ab2792-5481-43eb-837c-67d1e3337300</record-id>
<auth-session>
<auth-token>ASAAAJQ1R50J8HpMshAjeHkjh/habVgM17BjSBuA/GmbJPV9A9d63mramakSZxf+ZHZh+7xWllTWGhAijBvxhNxauzBLci1IWWh+JDbGQZabnWbG7YH28ZP+FQuRPNP4T8O1NTNCFNETao0ly+UuPjWEZWCV5cCPX7GjaEJ4BMAFv4vAOEwIOe63VWntfzH9r3Rz0VnHAhb400iqs1XxlJrRbgXdNRdg</auth-token>
<offline-person-info>
<offline-person-id>e2f925e7-2748-4d88-bz48-32036dc10020</offline-person-id>
</offline-person-info>
</auth-session>
<language>en</language>
<country>US</country>
<msg-time>2009-10-21T12:37:51.706-04:00</msg-time>
<msg-ttl>180000</msg-ttl>
<version>0.0.0.1</version>
<info-hash>
<hash-data algName="SHA1">oAZVXLGAUMfuVPrqjqb98yCb4/c=</hash-data>
</info-hash>
</header>
<info>
<group>
<filter>
<type-id>bd0403c5-4ae2-4b0e-a8db-1888678e4528</type-id>
</filter>
<format>
<section>core</section>
<section>otherdata</section>
<xml />
</format>
</group>
</info>
</wc-request:request>
</code></pre>
<p>The XML response I get back:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<response>
<status>
<code>67</code>
<error>
<message>Exception of type
'Microsoft.Health.Platform.WildcatStatusException' was thrown.</message>
</error>
</status>
</response>
</code></pre>
<p>Thank you so much for your help. :)</p>
http://stackoverflow.com/questions/1602156/calling-the-healthvault-getthings-method-in-java/1613856#16138560Answer by mangst for Calling the HealthVault GetThings method in Javamangst2009-10-23T14:30:02Z2009-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#15962621Answer by mangst for Can HealthVault applications be be written as thick Windows forms applications or must they be written as web applications?mangst2009-10-20T17:52:26Z2009-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-security4How do you authenticate against an Active Directory server using Spring Security?mangst2008-09-17T15:44:00Z2009-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> <beans:bean id="ldapAuthProvider" class="org.springframework.security.providers.ldap.LdapAuthenticationProvider">
<beans:constructor-arg>
<beans:bean class="org.springframework.security.providers.ldap.authenticator.BindAuthenticator">
<beans:constructor-arg ref="initialDirContextFactory" />
<beans:property name="userDnPatterns">
<beans:list>
<beans:value>CN={0},OU=SBSUsers,OU=Users,OU=MyBusiness,DC=Acme,DC=com</beans:value>
</beans:list>
</beans:property>
</beans:bean>
</beans:constructor-arg>
</beans:bean>
<beans:bean id="userDetailsService" class="org.springframework.security.userdetails.ldap.LdapUserDetailsManager">
<beans:constructor-arg ref="initialDirContextFactory" />
</beans:bean>
<beans:bean id="initialDirContextFactory" class="org.springframework.security.ldap.DefaultInitialDirContextFactory">
<beans:constructor-arg value="ldap://192.168.123.456:389/DC=Acme,DC=com" />
</beans:bean>
</code></pre>
http://stackoverflow.com/questions/547219/firefox-sslerrornocypheroverlap-error2Firefox "ssl_error_no_cypher_overlap" errormangst2009-02-13T19:01:15Z2009-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#11002610Answer by mangst for How to split a path platform independent?mangst2009-07-08T20:03:54Z2009-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-1Answer by mangst for question about java constructor call syntaxmangst2009-07-08T20:00:29Z2009-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#8319590Answer by mangst for Can I find out from a Javascript method, who\which DOM element called me?mangst2009-05-06T21:52:02Z2009-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><a href="http://www.example.com" onclick="foo(this.href)">link</a>
</code></pre>
http://stackoverflow.com/questions/587360/php-warning-too-many-open-files-any-ideas/587487#5874870Answer by mangst for PHP Warning: Too many open files -- any ideas?mangst2009-02-25T19:37:30Z2009-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-xpath4Default XML namespace, JDOM, and XPathmangst2009-02-12T20:17:41Z2009-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><?xml version="1.0" encoding="UTF-8"?>
<collection xmlns="http://www.foo.com">
<dvd id="A">
<title>Lord of the Rings: The Fellowship of the Ring</title>
<length>178</length>
<actor>Ian Holm</actor>
<actor>Elijah Wood</actor>
<actor>Ian McKellen</actor>
</dvd>
<dvd id="B">
<title>The Matrix</title>
<length>136</length>
<actor>Keanu Reeves</actor>
<actor>Laurence Fishburne</actor>
</dvd>
</collection>
</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#5133890Answer by mangst for Why would this web page cause IE6 to lock up?mangst2009-02-04T21:16:09Z2009-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#5132870Answer by mangst for Why would this web page cause IE6 to lock up?mangst2009-02-04T20:54:20Z2009-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#5128050Answer by mangst for How to convert a String to CharSequence in Java?mangst2009-02-04T19:04:01Z2009-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#5127100Answer by mangst for How is Java's notion of static different from C#'s?mangst2009-02-04T18:43:18Z2009-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#5090340Answer by mangst for RE: Big XML filemangst2009-02-03T21:43:56Z2009-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#4767100Answer by mangst for Starting javascript development - what to do?mangst2009-01-24T21:47:10Z2009-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#4557500Answer by mangst for Split Java String by New Linemangst2009-01-18T19:27:11Z2009-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#4557371Answer by mangst for What are the best programming articles?mangst2009-01-18T19:18:18Z2009-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#4336560Answer by mangst for What are some good Java web development tools (across the board)mangst2009-01-11T20:44:50Z2009-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#4336310Answer by mangst for How do I use an equivalent to C++ reference parameters in Java?mangst2009-01-11T20:33:09Z2009-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#43361711Answer by mangst for Why do C# and Java bother with the "new" operator?mangst2009-01-11T20:24:33Z2009-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#4335871Answer by mangst for How to save and load a text mode gamemangst2009-01-11T20:16:02Z2009-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#4335491Answer by mangst for Why do multiple spaces in an HTML file show up as single spaces in the browser?mangst2009-01-11T20:01:44Z2009-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><html>
<body>
<div>
I like to indent all content that is inside div tags.
</div>
</body>
</html>
</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#77875142Answer by mangst for What non-programming books should programmers read?mangst2008-09-16T22:19:15Z2008-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#1049421Answer by mangst for VB.Net "There is a naming violation" Error with open ldap for creating usermangst2008-09-19T19:47:32Z2008-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#1045955Answer by mangst for Always have to use .css files?mangst2008-09-19T19:04:10Z2008-09-19T19:04:10Z<p>You can include CSS inside an HTML page. It goes within the <code><style></code> tag, which goes within the <code><head></code> tag:</p>
<pre><code><head>
<style type="text/css">
body{ background-color: blue; }
</style>
</head>
</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-2Answer by mangst for How do you test software?mangst2008-09-19T18:55:48Z2008-09-19T18:55:48Z<p>Very hard.</p>
http://stackoverflow.com/questions/103848/what-is-your-favourite-area-of-the-java-api/103988#1039885Answer by mangst for What is Your Favourite Area of the Java API?mangst2008-09-19T17:41:32Z2008-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#1029920Answer by mangst for Best J2EE servermangst2008-09-19T15:37:30Z2008-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#965681Answer by mangst for What is the best place to store a configuration file in a java web application (war) ?mangst2008-09-18T20:29:48Z2008-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#1602379Comment by mangst on Calling the HealthVault GetThings method in Javamangst2009-10-21T18:17:34Z2009-10-21T18:17:34ZThanks 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 "online" mode and have no problems.http://stackoverflow.com/questions/83040/connecting-to-oracle-using-php/739145#739145Comment by mangst on Connecting to Oracle using PHPmangst2009-09-21T13:40:18Z2009-09-21T13:40:18ZVery cool manual. Thanks for that!http://stackoverflow.com/questions/83040/connecting-to-oracle-using-php/111457#111457Comment by mangst on Connecting to Oracle using PHPmangst2009-09-21T13:36:25Z2009-09-21T13:36:25ZThe second link appears not to be working. :)http://stackoverflow.com/questions/1001290/console-based-progress-in-java/1001340#1001340Comment by mangst on Console based progress in Javamangst2009-06-16T19:05:58Z2009-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#547674Comment by mangst on Firefox "ssl_error_no_cypher_overlap" errormangst2009-02-15T03:46:59Z2009-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#547674Comment by mangst on Firefox "ssl_error_no_cypher_overlap" errormangst2009-02-15T03:42:14Z2009-02-15T03:42:14Z@erickson: By "session" 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#543957Comment by mangst on Default XML namespace, JDOM, and XPathmangst2009-02-13T19:24:59Z2009-02-13T19:24:59ZThanks 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#547275Comment by mangst on Firefox "ssl_error_no_cypher_overlap" errormangst2009-02-13T19:24:00Z2009-02-13T19:24:00ZTried 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#543120Comment by mangst on Default XML namespace, JDOM, and XPathmangst2009-02-12T21:10:39Z2009-02-12T21:10:39ZDid the trick, thanks!http://stackoverflow.com/questions/513227/why-would-this-web-page-cause-ie6-to-lock-up/513389#513389Comment by mangst on Why would this web page cause IE6 to lock up?mangst2009-02-04T21:25:44Z2009-02-04T21:25:44Z"SP3"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#512574Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange.mangst2009-02-04T18:53:54Z2009-02-04T18:53:54ZNo 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#512574Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange.mangst2009-02-04T18:31:10Z2009-02-04T18:31:10ZWhere he's setting it shouldn't matter. The first echo line returns "1", so the second echo line should return "1" as well.http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512593#512593Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange.mangst2009-02-04T18:26:20Z2009-02-04T18:26:20ZNo, 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#512564Comment by mangst on PHP Session variable is set, but PHP doesn't see it. Very strange.mangst2009-02-04T18:15:26Z2009-02-04T18:15:26ZDon't think the type of quotes used would make a difference in this case.http://stackoverflow.com/questions/508878/re-big-xml-file/508954#508954Comment by mangst on RE: Big XML filemangst2009-02-03T21:42:44Z2009-02-03T21:42:44ZBut would that cause a memory error? I'm not an XML expert either, but I would think that bad entities like é would cause SAXExceptions as opposed to memory exceptions.