User Brabster - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T08:35:14Zhttp://stackoverflow.com/feeds/user/2362http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902270/strategy-to-filter-data-according-to-user-access-level/1902529#19025290Answer by Brabster for strategy to filter data according to user access levelBrabster2009-12-14T18:13:04Z2009-12-14T18:13:04Z<p>I see you've had no answers yet - I'm certainly not sure of what the right answer is for you, but here's my view for what it's worth.</p>
<p>I might have misunderstood, but if I was trying to enforce fine-grained access controls for roles/groups to resources, I would do it in the application rather than in the data storage solution.</p>
<p>I don't know if that's an option for you in this case, but if you do that security in the data layer, you might run into problems down the line with a lack of flexibility and perhaps even vendor lock-in if you end up using proprietary extensions.</p>
<p>Very interested in any supporting/conflicting perspectives here.</p>
http://stackoverflow.com/questions/1897524/understanding-join/1897543#18975434Answer by Brabster for Understanding join()Brabster2009-12-13T19:57:00Z2009-12-13T20:23:56Z<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Thread.html#join%28%29" rel="nofollow">join()</a> will make the currently executing thread to wait for the the thread it is called on to die.</p>
<p>So - If A is running, and you call B.join(), A will stop executing until B ends/dies.</p>
http://stackoverflow.com/questions/1891789/sql-select-first-10-rows-only/1891801#18918012Answer by Brabster for SQL - Select first 10 rows only?Brabster2009-12-12T00:55:32Z2009-12-12T00:55:32Z<p>DB2</p>
<p><code>... FETCH FIRST 10 ROWS ONLY</code></p>
http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fields0How bad are usernames and passwords stored in hidden form fields?Brabster2009-12-09T09:21:12Z2009-12-10T08:32:26Z
<p><strong>Suppose</strong> you've got a webapp that's passing usernames and passwords around in hidden form fields.</p>
<p>I know it's a very bad idea, but I'm interested in enumerating why... any thoughts?</p>
<p><strong>update</strong> - This is a hypothetical question.</p>
<p>I couldn't find a resource that just enumerated the reasons - I know of plenty of reasons why it's a bad idea, I'm looking to see if there are any other reasons I haven't thought of and create that resource I was looking for. Thanks!</p>
http://stackoverflow.com/questions/725952/how-to-use-saxparseexception-effectively-in-java5How to use SAXParseException effectively in JavaBrabster2009-04-07T14:12:54Z2009-12-09T04:38:22Z
<p>Hi,</p>
<p>I'm validating against XMLSchema in Java, and getting SAXParseExceptions thrown when I have non-valid content models.</p>
<p>I'm going to be using these exceptions to highlight where the validation has failed - but the SAXParseExceptions seem to be a little too low-level.</p>
<p>For example, for a failure on an enumeration, I get the validity error that the value provided doesn't match the content model in one exception, and the element it applies to in the next.</p>
<p>I'm thinking I need to have a utility that abstracts a little to merge related errors together and parse exception text into useable exception properties.</p>
<p>Is this a reasonable approach, or am I just missing something, or maybe a library or helper class?</p>
<p><hr /></p>
<p>Update @timgilbert, thanks for the response.</p>
<p>For example, a SAXParseException I found on t'internet</p>
<pre><code>cvc-pattern-valid: Value 'en' is not facet-valid
with respect to pattern '([a-zA-Z]{1,8})(-[a-zA-Z0-9]{1,8})*'
</code></pre>
<p>The key things for me are</p>
<ul>
<li>Element 'en' to which this exception applies. Why can I not call exception.getElement() or something, and why not an XPath to the element in question? More useful with an in-memory document than the line and column number!</li>
<li>It's a pattern validation failure. Why can I not get something like a enumeration of possible types of failure and a reference to the appropriate one?</li>
<li>The actual pattern that validation has failed against.</li>
<li>There'll be another exception thrown next to tell me the value of the 'en' element that caused the problem that I need to merge</li>
</ul>
<p>An example of what I'd like to be able to do is have people submit a document and have the document highlighted where validation fails with a user friendly message - the error message above kinda doesn't seem very friendly... having to parse by single quotes just feels like an accident waiting to happen :)</p>
<p>I think I'm maybe doing it wrong with the 'reference-to-element' thing, and perhaps I should have an identity transform of the document by default as part of the validation, and augment the transformation with validation-error attributes that I can pick out with CSS. That still won't help if I need to parse the messages to make them more friendly though...</p>
<p>Re: tight binding, javax.xml.validation.Validator.validate() throws org.xml.sax.SAXException anyway - not sure how I can get away from assuming the binding...</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1869860/how-to-ensure-ssl-only-access-without-authorising-in-java-webapp2How to ensure SSL-only access without authorising in Java webapp?Brabster2009-12-08T21:09:39Z2009-12-08T21:31:28Z
<p>Hey all,</p>
<p>I'm interested in ensuring that a couple of pages in a webapp are only accessible via https, but I don't want to authenticate the users.</p>
<p>Can I do this declaratively with security-constraints. or do I need to do something programmatically?</p>
<p>Any help appreciated, thanks folks</p>
<p>(Tomcat 5.5, servlet spec 2.3 - it's a legacy thing...)</p>
http://stackoverflow.com/questions/760110/can-i-get-the-absolute-path-to-the-current-script-in-korn-shell2Can I get the absolute path to the current script in Korn Shell?Brabster2009-04-17T11:51:07Z2009-12-07T11:22:03Z
<p>Is it possible to find out the full path to the script that is currently executing in Korn shell?</p>
<p>i.e. if my script is in /opt/scripts/myscript.ksh, can I programmatically inside that script discover '/opt/scripts/myscript.ksh'?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1078476/how-do-i-maintain-session-state-with-a-google-earth-client0How do I maintain session state with a Google Earth client?Brabster2009-07-03T09:06:41Z2009-12-06T04:51:24Z
<p>I'm playing with dynamic updates to Google Earth KML files.</p>
<p>The updates are of the form</p>
<pre><code><kml...>
<NetworkLinkControl>
<Update>
<targetHref="...">
<Change>
<Placemark targetId="...">
...stuff to update...
</Placemark>
</Change>
</Update>
</NetworkLinkControl>
</kml>
</code></pre>
<p>And it all works greatm from my Java Servlet - except that GE doesn't seem to support HTTP Sessions, and I need to provide only the updates that have occurred since the last request from a given client.</p>
<p>Am I doing something wrong? Does GE support sessions and I'm too stupid to work out how? If I need to provide client-specific updates without sessions, how can I do that? (I know I could use the source IP address as a coarse measure but that feels kinda nasty...)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1840211/setup-ssl-for-form-login-only-on-tomcat-webapp0Setup SSL for form login only on Tomcat webappBrabster2009-12-03T14:30:34Z2009-12-03T14:55:10Z
<p>Can I set Tomcat (or my webapp if it's done that way) to require SSL for confidentiality of the built-in Form-Based Login mechanism?</p>
<p>i.e. to protect the users credentials, and use standard http for any other transactions?</p>
http://stackoverflow.com/questions/1802758/how-do-i-get-the-current-time-in-a-different-timezone-in-java1How do I get the current time in a different TimeZone in Java?Brabster2009-11-26T10:05:34Z2009-11-26T10:12:47Z
<p>OK - I feel pretty dumb asking such a basic question, but hey.</p>
<p>I'm trying to get the current time in a different timezone in a Java webapp. I've tried the following obvious solution: in my servlet,</p>
<p><code>Calendar localCalendar = Calendar.getInstance(myBean.getTimeZone());</code></p>
<p>then I pass the calendar object through to a JSP as a request attribute 'localCalendar':</p>
<pre><code>It is now: [${requestScope.localCalendar.time}]
in TimeZone ${requestScope.localCalendar.timeZone.ID}
</code></pre>
<p>but my output seems to ignore the timezone set, i.e.</p>
<p><code>It is now: [Thu Nov 26 10:01:03 GMT 2009] in TimeZone Indian/Mahe</code></p>
<p>I'm guessing it's something to do with Locale settings, is there any way to just get the time formatted for my Locale, in another timezone?</p>
http://stackoverflow.com/questions/1784875/could-not-find-the-main-class/1785001#17850010Answer by Brabster for could not find the main classBrabster2009-11-23T18:18:39Z2009-11-23T18:24:06Z<p>Your question is tricky to understand, but I'm guessing that you haven't actually compiled your Java code, or your compiled code isn't on the classpath.</p>
<p>When I try and execute a non-existent class (this would work if there was a MyClass.class on the classpath with a main() method):</p>
<pre><code>paul@paul-laptop:~$ java MyClass
Exception in thread "main" java.lang.NoClassDefFoundError: MyClass
Caused by: java.lang.ClassNotFoundException: MyClass
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
Could not find the main class: MyClass. Program will exit.
</code></pre>
<p>Is that what you're seeing? If so:</p>
<ul>
<li>compile your class with javac if you haven't done so</li>
<li>check that your classpath includes the location of the class</li>
</ul>
<p>(You can specify the classpath explicitly when you execute the java program using -classpath, check the documentation for details.)</p>
http://stackoverflow.com/questions/1783364/how-to-grant-access-to-authenticated-users-in-tomcat-5-5-x0How to grant access to authenticated users in Tomcat 5.5.x?Brabster2009-11-23T14:15:44Z2009-11-23T16:48:49Z
<p>I'd like to be grant access to authenticated users in my web application without requiring them to be a member of a specific role.</p>
<p>My first guess was to specify <code><role-name>*</role_name></code> in my auth-constraint, however it seems that this just means grant access to any role defined in my web-app, not grant access to any authenticated user.</p>
<p>Is it possible to do this in Tomcat 5.5.x and if so how?</p>
http://stackoverflow.com/questions/473566/jstl-and-authenticated-web-services0JSTL and authenticated web servicesBrabster2009-01-23T16:34:22Z2009-11-16T08:19:27Z
<p>Can I access an authenticated web service using JSTL? (Form-based authentication)</p>
<p>If I can't do it using JSTL, is there any other way I do it from a JSP?</p>
<p><hr /></p>
<p>Maybe I need to give a little more information. I'm using the core library:</p>
<p><code><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %></code></p>
<p>and the import tag, as in:</p>
<p><code><c:import var="xml" url="http://my.service.com/api/xml"/></code></p>
<p>Where <code>http://my.service.com/api/xml</code> is a web service requiring form-based authentication - if I try to access it in a browser, I'm prompted for a username and password in a web form, not a popup window.</p>
<p><em>sorry, I'm no web services expert as you can tell - fingers crossed for an easy solution :)</em></p>
http://stackoverflow.com/questions/571476/easy-way-to-get-started-with-jsf3Easy way to get started with JSF?Brabster2009-02-20T22:24:27Z2009-11-03T21:05:37Z
<p>Does anyone know of a good way to get started with JSF for a servlets/JSP person?</p>
<p>I'm interested but not sure where to start!</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1443385/how-do-i-round-a-number-in-jstl0How do I round a number in JSTL?Brabster2009-09-18T09:12:46Z2009-11-03T16:53:21Z
<p>Hi,</p>
<p>I'm doing a division in a JSP and I'd like to round the result - how should I do this?</p>
<p>i.e. </p>
<pre><code><c:set
var="expiry"
value="${(expire.time - now.time) / (60 * 1000)}"/>
</code></pre>
<p>...how do I round the result?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1667154/css-z-index-overridden-by-element-order-on-page0CSS z-index overridden by element order on page?Brabster2009-11-03T12:51:30Z2009-11-03T13:00:01Z
<p>Hi everyone,</p>
<p>I've been battling with CSS z-index in IE7 foe a couple of hours now, maybe you can help!</p>
<p>I have a absolutely positioned div, appearing above its parent div, which is great. But - it appears under later divs that are siblings to its parent.</p>
<p>That seems like quite bizarre behavour, like the z-index only applies to the local scope of each div or something.</p>
<p>How can I set things up so that when I set an element to have a greater z-index than any other element on the page, it will appear on top regardless?</p>
<p>Here's my test page:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>test</title>
</head>
<body>
<div style="position: relative; z-index: 0">
div1
<div style="position: relative; z-index: 0">
div2
</div>
<div style="color: red; background-color: #ffffff; position: absolute; z-index: 2">
div3
</div>
</div>
<div style="position: relative; z-index: 0">
div1
<div style="position: relative; z-index: 0">
div2
</div>
<div style="color: red; background-color: #ffffff; position: absolute; z-index: 2">
div3
</div>
</div>
<div style="position: relative; z-index: 0">
div1
<div style="position: relative; z-index: 0">
div2
</div>
<div style="color: red; background-color: #ffffff; position: absolute; z-index: 2">
div3
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1626815/which-iso8601-date-time-incl-timezone-format-to-use-for-maximum-success-across-l0Which ISO8601 date/time incl. timezone format to use for maximum success across languages?Brabster2009-10-26T19:23:09Z2009-10-26T19:23:09Z
<p>The <a href="http://en.wikipedia.org/wiki/ISO%5F8601" rel="nofollow">ISO8601 format</a> for date/time representations supports many variations of format to express the same information.</p>
<p>I know that not all languages have libraries that support the range of the standard - for example, I've had problems parsing the different possible formats of the timezone using Java's SimpleDateFormat API.</p>
<p>Given the choice of format in an application, is there a preferred variation on the ISO8601 format which is more generally supported for parsing across languages?</p>
http://stackoverflow.com/questions/1605882/obtain-nameserver-information-for-dns-lookups-in-java2Obtain nameserver information for DNS lookups in JavaBrabster2009-10-22T08:54:05Z2009-10-22T09:19:18Z
<p>Hi everyone,</p>
<p>If I look up a IP address from a DNS name as follows:</p>
<pre><code>InetAddress inetAddress = InetAddress.getByName(name);
String address = inetAddress.getHostAddress();
</code></pre>
<p>Can I find out which nameserver gave me the information?</p>
http://stackoverflow.com/questions/1566626/javascript-disabled-components-not-disabled-after-back-button0Javascript-disabled components not disabled after back buttonBrabster2009-10-14T14:25:32Z2009-10-14T14:35:13Z
<p>Hi,</p>
<p>I'm disabling groups of radio buttons when a user clicks a checkbox, just using raw javascript and the disabled property.</p>
<p>My function is trivial:</p>
<pre><code>function toggleEnabled(elementId) {
e = document.getElementById(elementId)
e.disabled = !e.disabled;
}
</code></pre>
<p>and it is called with the onClick event like onClick="toggleEnabled('radio_div')"</p>
<p>It works great, but if the user clicks back, the browser seems to remember the state of the checkbox, but resets the state of the components in the div to whatever they originally were.</p>
<p>This is in IE7, and I do not want to use a JS library right now so please no suggestions to that effect.</p>
<p>Am I doing something wrong? Is there a solution to get the intended behaviour (remember the state of both the checkbox and the div on Back)?</p>
http://stackoverflow.com/questions/1550306/libraries-solutions-for-using-xsl-to-create-interactive-web-forms-from-xml0Libraries/Solutions for using XSL to create interactive web forms from XMLBrabster2009-10-11T09:55:08Z2009-10-11T10:35:02Z
<p>This seems like a pretty straightforward thing to do, but I can't find anything off the open-source shelf.</p>
<p>Is there a solution already out there that does the following:</p>
<ul>
<li>can be configured with an arbitrary XSL stylesheet</li>
<li>generates a web form based on an arbitrary XML document and the XSL</li>
<li>creates edit functionality in appropriate places in the rendered form</li>
<li>updates the local representation of the XML document</li>
<li>provides capabilities to view, save the new XML document</li>
</ul>
<p>Ideally, one that plugs into a Java web application. Even better if it can generate the XSL based on schema documents - but that might not be feasible, not really thought it through.</p>
<p>For context, I'm thinking things like pleasant-for-humans editing of Maven POMs, ANT build.xml, etc.</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1548713/how-can-i-learn-higher-level-programming-related-math-without-much-formal-trainin/1548780#15487801Answer by Brabster for How can I learn higher-level programming-related math without much formal training?Brabster2009-10-10T18:56:25Z2009-10-10T18:56:25Z<p>I'd agree with @John Kugelman, classes are the way to go to get it done properly but I'd add that if you don't want to take classes, the internet has many resources to help you, including recorded lectures which I find can be more approachable than books and papers.</p>
<p>I'd recommend checking out MIT Open Courseware. There's a <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-042JMathematics-for-Computer-ScienceFall2002/CourseHome/index.htm" rel="nofollow">Maths for Computer Science module</a> there, and I'm enjoying working through <a href="http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/VideoLectures/index.htm" rel="nofollow">Gilbert Strang's Linear Algebra course of video lectures</a>.</p>
<p>Youtube and videolectures.com are also good resources for video lectures.</p>
<p>Finally, there's a free Maths for CS book <a href="http://bookboon.com/uk/student/it/gentle-introduction-to-mathematics-for-computer" rel="nofollow">at bookboon</a>.</p>
http://stackoverflow.com/questions/368802/how-can-i-call-a-method-in-an-object-from-outside-the-jvm1How can I call a method in an object from outside the JVM?Brabster2008-12-15T15:57:10Z2009-10-08T22:55:52Z
<p>I have a really simple Java class that effectively decorates a Map with input validation, with the obvious void set() and String get() methods.</p>
<p>I'd like to be able to effectively call those methods and handle return values and exceptions from outside the JVM, but still on the same machine <strong>Update: the caller I have in mind is not another JVM; thanks @Dave Ray</strong></p>
<p>My implementation considerations are typical </p>
<ul>
<li>performance</li>
<li>ease of implementation and maintenance (simplicity?)</li>
<li>reliability</li>
<li>flexibility (i.e. can I call from a remote machine, etc.)</li>
</ul>
<p>Is there a 'right way?' If not, what are my options, and what are the pro/cons for each?</p>
<p>(Stuff people have actually done and can provide real-life feedback on would be great!)</p>
http://stackoverflow.com/questions/1515909/matlab-and-triangle/1515987#15159870Answer by Brabster for matlab and triangleBrabster2009-10-04T09:06:28Z2009-10-04T09:12:25Z<p><code>function [area]=triangle_area(P,method)</code></p>
<p>triangle_area as is documented requires two arguments, P and method.</p>
<p>Matlab says P is undefined, therefore you aren't giving it the arguments.</p>
<p>Here's a simple example: given this function</p>
<pre><code>function test( input_args )
%TEST Shows how input-args behaves for different user input
input_args
end
</code></pre>
<p>If I call it as:</p>
<pre><code>>> test
??? Input argument "input_args" is undefined.
Error in ==> test at 5
input_args
</code></pre>
<p>However, if I pass an argument:</p>
<pre><code>EDU>> test hello
input_args =
hello
</code></pre>
<p>If you're struggling with something as basic function signatures I think you might have misunderstood what the teacher was asking you to do.</p>
http://stackoverflow.com/questions/1510011/how-does-ajax-work/1510056#15100564Answer by Brabster for How does AJAX work?Brabster2009-10-02T14:57:07Z2009-10-02T14:57:07Z<p>AJAX typically involves sending HTTP requests from client to server and processing the server's response, without reloading the entire page. (Asynchronously).</p>
<p>Javascript generally does the submission and receives the data response from the server (traditionally XML, often other less vermbose formats like JSON)</p>
<p>The Javascript then may update the page DOM dynamically to update the user's view.</p>
<p>Thus 'Asychronous Javascript And XML'.</p>
<p>There are other options to update the user's view without reloading the page, things like Flash and Applets, but these don't sound like good solutions for your case. Sounds like Javascript is the way to go. There's loads of good library support around, like <a href="http://jquery.com/" rel="nofollow">jQuery</a> as is used on this site, so you don't need to actually write much Javascript yourself.</p>
http://stackoverflow.com/questions/1508366/xslt-converting-time-to-minutes/1508387#15083871Answer by Brabster for XSLT - Converting time to minutesBrabster2009-10-02T08:48:37Z2009-10-02T08:48:37Z<p>If you're using an XPath 2.0 supporting processor, there are built in functions you can use. <a href="http://www.w3schools.com/Xpath/xpath%5Ffunctions.asp" rel="nofollow">Here's a list</a>, scroll down to the date/time functions.</p>
<p>You probably want something like: minutes-from-time(time)</p>
<p>Watch out for namespace prefixes etc. A prefix isn't required for the functions if your processor dows support XPath 2.0</p>
http://stackoverflow.com/questions/1508315/xpath-retrieving-node-value/1508374#15083740Answer by Brabster for Xpath, retrieving node valueBrabster2009-10-02T08:45:03Z2009-10-02T08:45:03Z<p>You probably need to make sure the z namespace prefix is declared correctly - that's implementation dependent. <a href="http://www.ibm.com/developerworks/library/x-javaxpathapi.html" rel="nofollow">Here's how you do it in Java's XPath implementation</a>.</p>
<p>Then to select the value of the ows_ID attribute, you need to navigate to the element itself, then use @ows_ID to get the value.</p>
http://stackoverflow.com/questions/1506757/when-will-controls-with-name-and-value-not-be-submitted/1506787#15067870Answer by Brabster for When will controls with name and value not be submitted?Brabster2009-10-01T22:11:20Z2009-10-01T22:11:20Z<p>Your checkbox will need to be inside a form element to be submitted, for example</p>
<pre><code><form name="myform" action="/myFormProcessor.jsp" method="POST">
Check Me! <input name="checkbox" type="checkbox"/>
<input type="submit" value="submit"/>
</form>
</code></pre>
<p>Is that your problem?</p>
<p>In my experience, a checkbox result in a request parameter called the 'name' attribute, and with value 'on' if the box is checked.</p>
<p>The request parameter will not be present at all if the checkbox isn't checked.</p>
<p>Perhaps more complete HTML, the browser you are using etc, might help.</p>
http://stackoverflow.com/questions/1506323/how-to-distribute-java-desktop-application/1506394#15063942Answer by Brabster for how to distribute java desktop application ?Brabster2009-10-01T20:49:53Z2009-10-01T20:49:53Z<p>You can deliver Java desktop apps as <a href="http://java.sun.com/applets/" rel="nofollow">Applets</a> and (more recently) <a href="http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp" rel="nofollow">Java Web Start</a> apps. Using these technologies means that users don't need to manually handle files.</p>
<p>As for RDBMS, there is a pure Java RDBMS going by the names <a href="http://developers.sun.com/javadb/" rel="nofollow">JavaDB</a> and <a href="http://db.apache.org/derby/" rel="nofollow">Derby</a> which might meet your needs.</p>
<p>There are many ways to improve the execution time of a program, it depends on what you've coded and what it does, for a start. I think you'll need to ask a specific question on that to get a useful answer.</p>
http://stackoverflow.com/questions/679302/whats-wrong-with-my-python-soappy-webservice-call1What's wrong with my Python SOAPpy webservice call?Brabster2009-03-24T21:23:21Z2009-10-01T05:06:48Z
<p>I am playing around trying to call a simple SOAP webservice using the following code in the Python interpreter:</p>
<pre><code>from SOAPpy import WSDL
wsdl = "http://www.webservicex.net/whois.asmx?wsdl"
proxy = WSDL.Proxy(wsdl)
proxy.soapproxy.config.dumpSOAPOut=1
proxy.soapproxy.config.dumpSOAPIn=1
proxy.GetWhoIS(HostName="google.com")
</code></pre>
<p>(Yep, I'm new to Python, doing the diveintopython thing...)</p>
<p>The call to the GetWhoIS method fails - otherwise I wouldn't be asking here, I guess.
Here's my outgoing SOAP:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<GetWhoIS SOAP-ENC:root="1">
<HostName xsi:type="xsd:string">google.com</HostName>
</GetWhoIS>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</code></pre>
<p>And here's the incoming response.</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>
System.Web.Services.Protocols.SoapException:
Server was unable to process request. ---&gt;
System.ArgumentNullException: Value cannot be null.
at whois.whois.GetWhoIS(String HostName)
--- End of inner exception stack trace ---
</faultstring>
<detail />
</soap:Fault>
</soap:Body>
</soap:Envelope>
</code></pre>
<p>(manually formatted for easier reading)</p>
<p>Can anyone tell me what am I doing wrong? </p>
<p>Ideally both in terms of use of SOAPpy, and why the SOAP message is incorrect.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1495219/how-can-i-prevent-the-backspace-key-from-navigating-back/1495265#14952652Answer by Brabster for How can I prevent the backspace key from navigating back?Brabster2009-09-29T22:21:49Z2009-09-29T22:34:50Z<p>Not sure why no-one's just answered this - seems like a perfectly reasonable technical question to ask whether it's possible.</p>
<p>No, I don't think there's a cross-browser way to disable the backspace button. I know it's not enabled by default in FF these days though.</p>
http://stackoverflow.com/questions/1902270/strategy-to-filter-data-according-to-user-access-level/1902529#1902529Comment by Brabster on strategy to filter data according to user access levelBrabster2009-12-14T21:46:08Z2009-12-14T21:46:08ZWow - interesting constraints you got there! Good luck...!http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fields/1872739#1872739Comment by Brabster on How bad are usernames and passwords stored in hidden form fields?Brabster2009-12-09T11:23:22Z2009-12-09T11:23:22Z+1 for your golden rulehttp://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fields/1872610#1872610Comment by Brabster on How bad are usernames and passwords stored in hidden form fields?Brabster2009-12-09T09:40:10Z2009-12-09T09:40:10ZDon't fret mate, it's just a hypothetical question :)http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fieldsComment by Brabster on How bad are usernames and passwords stored in hidden form fields?Brabster2009-12-09T09:37:27Z2009-12-09T09:37:27Z@kigurai - I don't - it's a hypothetical question. @Si - again, hypothetical - what security measures on the transport layer would mitigate what risks?http://stackoverflow.com/questions/1840211/setup-ssl-for-form-login-only-on-tomcat-webapp/1840398#1840398Comment by Brabster on Setup SSL for form login only on Tomcat webappBrabster2009-12-03T17:02:48Z2009-12-03T17:02:48ZPerfect answer. Why didn't I think of that?!
Cheershttp://stackoverflow.com/questions/1802758/how-do-i-get-the-current-time-in-a-different-timezone-in-java/1802789#1802789Comment by Brabster on How do I get the current time in a different TimeZone in Java?Brabster2009-11-26T10:25:32Z2009-11-26T10:25:32ZPerfect - the JSTL formatting tags do include a formatDate which takes a timezone attribute. I just wasn't thinking of timezone as a formatting thing... but hey, it works. Thanks!http://stackoverflow.com/questions/1783364/how-to-grant-access-to-authenticated-users-in-tomcat-5-5-xComment by Brabster on How to grant access to authenticated users in Tomcat 5.5.x?Brabster2009-11-23T14:41:43Z2009-11-23T14:41:43ZI'd like to know whether I must do that, or whether I can express 'grant to all authenticated users' as a constraint...http://stackoverflow.com/questions/1494929/regex-line-by-line-how-to-match-triple-quotes-but-not-double-quotes/1494951#1494951Comment by Brabster on Regex line by line: How to match triple quotes but not double quotesBrabster2009-09-29T22:12:41Z2009-09-29T22:12:41Zbtw if you're using a language that can do lookahead, this should match 'at least one set of 3 d-quotes, not followed by a d-quote' ["]{3}(?=[^"])http://stackoverflow.com/questions/1494929/regex-line-by-line-how-to-match-triple-quotes-but-not-double-quotes/1494951#1494951Comment by Brabster on Regex line by line: How to match triple quotes but not double quotesBrabster2009-09-29T22:11:08Z2009-09-29T22:11:08ZI don't seem to be able to express this in regex-speak, but not sure why. It feels like I should be able to get a regex to match 'three d-quotes, next char not a d-quote (can do that bit) and NOT same pattern again'. Curious and will keep looking, but if you need this I'd say start looking at doing it algorithmically maybe match and remove the first batch of 3 d-quotes, then check for another three.http://stackoverflow.com/questions/1494929/regex-line-by-line-how-to-match-triple-quotes-but-not-double-quotes/1494951#1494951Comment by Brabster on Regex line by line: How to match triple quotes but not double quotesBrabster2009-09-29T21:16:07Z2009-09-29T21:16:07ZYep, thinking. This is closer... [^"][\"]{3}[^"] (not a d-quote, then 3 d-quotes, then a char that's not a d-quote)http://stackoverflow.com/questions/1494929/regex-line-by-line-how-to-match-triple-quotes-but-not-double-quotes/1494951#1494951Comment by Brabster on Regex line by line: How to match triple quotes but not double quotesBrabster2009-09-29T21:11:20Z2009-09-29T21:11:20Zah - ok - that's a little trickier... Should be possible though I think...http://stackoverflow.com/questions/1468667/is-there-a-way-to-identify-a-specific-firing-instance-of-a-crontrigger-ahead-of-t/1468747#1468747Comment by Brabster on Is there a way to identify a specific firing instance of a CronTrigger ahead of time?Brabster2009-09-24T07:37:50Z2009-09-24T07:37:50ZLooping over getFireTimeafter(Date) I can figure out that a CronTrigger will fire at a given point in time in the future, several 'firings' ahead. The question is whether there's any way to refer to that future firing right now, I guess. Still figuring the semantics out on this tbh, not sure the Quartz API supports what I'm trying to do.http://stackoverflow.com/questions/1468522/xslt-to-operate-on-element-value-before-displaying/1468542#1468542Comment by Brabster on xslt to operate on element value before displaying?Brabster2009-09-23T21:26:19Z2009-09-23T21:26:19Zdidn't know that @annakata. Think the info warrants an up-vote form me :)http://stackoverflow.com/questions/1468522/xslt-to-operate-on-element-value-before-displaying/1468542#1468542Comment by Brabster on xslt to operate on element value before displaying?Brabster2009-09-23T21:23:28Z2009-09-23T21:23:28ZYep, Pavel is of course correct. These functions are available in XPath 2.0, so I suspect not on the w3schools site. If you use an XPath 2.0-compliant processor you can use them as above. Otherwise, you'll need to build a function to do it yourself.http://stackoverflow.com/questions/1468522/xslt-to-operate-on-element-value-before-displaying/1468542#1468542Comment by Brabster on xslt to operate on element value before displaying?Brabster2009-09-23T21:20:06Z2009-09-23T21:20:06ZLet me just check that, this stylesheet works fine under Saxon-B 9.1.0.6