User paul - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:19:08Zhttp://stackoverflow.com/feeds/user/11249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/158070/jquery-how-to-position-one-element-relative-to-another7jQuery: How to position one element relative to another?paul2008-10-01T15:01:01Z2009-12-15T15:41:11Z
<p>I have a hidden DIV which contains a toolbar-like menu.</p>
<p>I have a number of DIVs which are enabled to show the menu DIV when the mouse hovers over them.</p>
<p>Is there a built-in function which will move the menu DIV to the top right of the active (mouse hover) DIV? I'm looking for something like <code>$(menu).position("topright", targetEl);</code></p>
http://stackoverflow.com/questions/1859849/sharepoint-intranet-portal/1860195#18601951Answer by paul for Sharepoint intranet portalpaul2009-12-07T14:08:07Z2009-12-07T14:08:07Z<p>Regarding 7 - Programming web parts:
Have a look at <a href="http://www.codeplex.com/smartpart" rel="nofollow">SmartPart</a> on CodePlex. This is a fairly easy way to create simple web parts especially if you have some ASP experience.</p>
http://stackoverflow.com/questions/1802051/https-hostname-wrong-should-be-sub-domain-com-what-causes-this0HTTPS hostname wrong: should be <sub.domain.com>. What causes this?paul2009-11-26T07:22:20Z2009-11-26T07:38:52Z
<p>I am getting this 'HTTPS hostname wrong:' error when trying to connect to a server using https. My url looks something like this</p>
<pre><code>https://sub.domain.com/tamnode/webapps/app/servlet.
</code></pre>
<p>I connect using the following code</p>
<pre><code> // Create a URLConnection object for a URL
URL url = new URL(requestedURL);
HttpURLConnection.setFollowRedirects(false);
// connect
connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("User-Agent", USER_AGENT); //$NON-NLS-1$
OutputStreamWriter wr = new OutputStreamWriter(connection
.getOutputStream());
</code></pre>
<p>but then get an error </p>
<pre><code>IOException: HTTPS hostname wrong: should be <sub.domain.com>.
at sun.net.www.protocol.https.HttpsClient.checkURLSpoofing
....
</code></pre>
<p>This is code which has worked in the past but no longer. There have been some changes to the system architecture but I need to get more data before approaching those responsible.</p>
<p>What can cause this error? Can I turn off the URLSpoofing check?</p>
http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting0XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T07:30:39Z2009-11-24T08:20:10Z
<p>I am transforming xml to html using xslt in .Net 1.1. One part contains a javascript section where 2 vars are ANDed (&&). The transform throws an unknown entity error. What can I do? I have tried 'CDATA' and 'disable-output-escaping' but without success. If I write && then the output is also '&&'. </p>
<p>Here is my code. (trimmed for clarity)</p>
<pre><code><?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" standalone="yes" indent="yes" cdata-section-elements="script style"/>
<xsl:template match="/menus">
<html>
<xsl:text disable-output-escaping="yes">
<head>
<title>Portal</title>
<script type="text/javascript">
//
// Show hide language block
//
function lang(s) {
var elD = document.getElementById('german');
var elE = document.getElementById('english');
if(elD && elE) { /// <<---- error occurs here
elD.style.display = s == 'german' ? 'block': 'none';
elE.style.display = s == 'german' ? 'none': 'block';
}
}
</script>
</head>
</xsl:text>
<body>
<h2>Das Portal ist vorübergehend unerreichbar / The Portal is temporarily unavailable</h2>
<div><a href="#" onclick="lang('german')">deutsch</a> | <a href="#" onclick="lang('english')">English</a>
</div>
<div id="german">
<xsl:apply-templates select="//menu[@lang='de']"/>
</div>
<div id="english">
<xsl:apply-templates select="//menu[@lang='en']"/>
</div>
</body>
</html>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/1624540/how-to-set-root-node-name-when-xmlserializing-an-array1How to set root node name when XmlSerializing an array?paul2009-10-26T12:32:20Z2009-11-23T07:12:27Z
<p>I have an array of objects which I want to serialize as XML. These objects are annotated to set XML node names but I was wondering how to set the name of the XML root node.</p>
<p>The code looks like this:</p>
<pre><code>// create list of items
List<ListItem> list = new List<ListItem>();
list.Add(new ListItem("A1", new Location(1, 2)));
list.Add(new ListItem("A2", new Location(2, 3)));
list.Add(new ListItem("A3", new Location(3, 4)));
list.Add(new ListItem("A4<&xyz>", new Location()));
// serialise
XmlSerializer ser = new XmlSerializer(typeof(ListItem[]));
FileStream os = new FileStream(@"d:\temp\seri.xml", FileMode.Create);
ser.Serialize(os, list.ToArray());
os.Close();
</code></pre>
<p>The output looks like this:</p>
<pre><code><?xml version="1.0"?>
<ArrayOfPlace xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Place>
<Placename>A1</Placename>
<Location>
<Lat>1</Lat>
<Long>2</Long>
</Location>
</Place>
<Place>
...
</code></pre>
<p><strong>ListItem</strong> has been renamed to <strong>Place</strong> using an <em>XmlElement</em> annotation, but how can I set the name of the root node to rename the <strong>'ArrayOfPlace'</strong> node?</p>
http://stackoverflow.com/questions/1721154/wpf-is-it-possible-to-create-a-number-of-listview-view-templates-and-dynamically0WPF: Is it possible to create a number of ListView.View templates and dynamically select one at run-time?paul2009-11-12T09:56:16Z2009-11-12T15:54:34Z
<p>I want to have ListView control which can be filled with one of a number of different object types (not mixed, always just one type). I would like to adjust the columns dynamically to correspond to the object type currently in the list.</p>
<p>I know I could do this programmatically (<a href="http://stackoverflow.com/questions/868204/adding-columns-programatically-to-listview-in-wpf">http://stackoverflow.com/questions/868204/adding-columns-programatically-to-listview-in-wpf</a>) but I was wondering if I could define the different column descriptions (GridViews) in XAML as resources and then select the one I need at run-time when the object type changes?</p>
<p><strong>Clarification</strong>
I am using a <em>ListView</em> control which displays details in columns. The columns are defined like this:</p>
<pre><code><ListView x:Name="TheList">
<ListView.View>
<GridView>
<GridViewColumn Header="Columns" Width="80"/>
<GridViewColumn Header="Added" Width="80"/>
<GridViewColumn Header="Automatically" Width="100"/>
</GridView>
</ListView.View>
</ListView>
</code></pre>
<p>My question is: can I define a number of ListView.View sections and switch between them depending of the object type in the list? The list will only contain one type of object at one time. I just need to display a different set of attributes.</p>
<p>The replies I have received so far seem to assume that I have a simple list which contains a mixture of objects. That is not the case. What I am looking for is something like this:</p>
<pre><code>Name Address Town
-----------------------------------------
Liz Buck House London
Angie Block House Berlin
</code></pre>
<p>and then to switch to something completely different</p>
<pre><code>Town Population
------------------------------
London 123456
Swansea 65432
</code></pre>
<p>Perhaps I'm making this too complicated....</p>
http://stackoverflow.com/questions/368006/c-can-i-add-values-to-a-listbox-with-a-backgroundwork-thread/368024#368024-2Answer by paul for C# Can I add values to a listbox with a backgroundwork thread?paul2008-12-15T10:59:41Z2009-11-12T10:48:30Z<p>See <a href="http://stackoverflow.com/questions/244591/why-am-i-getting-this-errorcross-thread-operation-not-valid-control-lbfolders-a">Why am I getting this error:”Cross-thread operation not valid: Control lbFolders accessed from a thread other than the thread it was created on.”?</a> for more info.</p>
http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient4How to 'smooth' data and calculate line gradient?paul2008-10-15T09:45:32Z2009-11-07T03:02:18Z
<p>I'm reading data from a device which measures distance. My sample rate is high so that I can measure large changes in distance (i.e. velocity) but this means that, when the velocity is low, the device delivers a number of measurements which are identical (due to the granularity of the device). This results in a 'stepped' curve.</p>
<p>What I need to do is to smooth the curve in order to calculate the velocity. Following that I then need to calculate the acceleration.</p>
<p>How to best go about this?</p>
<p>(Sample rate up to 1000Hz, calculation rate of 10Hz would be ok. Using C# in VS2005)</p>
http://stackoverflow.com/questions/1686174/when-should-one-use-interfaces/1686191#16861910Answer by paul for When should one use interfaces?paul2009-11-06T08:27:40Z2009-11-06T08:27:40Z<p>One reason to use interfaces is when a class will implement a number of interfaces. An abstract class cannot do that.</p>
<p>One example is a class which handles mouse movement and key presses will implement both the (ficticious) IMouseMove and IKeyPress interfaces.</p>
http://stackoverflow.com/questions/881774/is-it-possible-to-start-a-client-side-app-from-silverlight3Is it possible to start a client-side app from Silverlight?paul2009-05-19T09:23:30Z2009-11-03T07:18:10Z
<p>I have a simple company portal which allows users to start their apps from the browser. The URLs in the hypelinks are passed (using Javascript) to a signed applet to actually start the client-side apps. All clients are XP or Vista and all run IE6 or IE7.</p>
<p>I have recently been looking at Silverlight and am wondering if I could do something similar. Ideally, I'd like to do everything from Silverlight and get rid of the applet.</p>
<p>Is it possible to call client-side apps from Silverlight? Can I sign a Silverlight app to give it extra rights?</p>
http://stackoverflow.com/questions/623472/question-how-to-integrate-sql-server-express-with-vs-c-express0Question How to integrate SQL Server Express with VS C# Expresspaul2009-03-08T12:07:33Z2009-10-28T08:57:11Z
<p>I have just installed VS C# Express 2008 which includes SQL Server Express 2008. It all went ok and I can see VS C# and SQL Server in the list of installed products.</p>
<p>When I start VS C# it looks fine but in the DB Explorer / Data Conection context menu the option 'Create new SQL Server Database' is disabled.</p>
<p>I have uninstalled all VS products and reinstalled but the problem remains. Do I need to do anything else? </p>
<p>Can anyone help?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1624540/how-to-set-root-node-name-when-xmlserializing-an-array/1624576#16245760Answer by paul for How to set root node name when XmlSerializing an array?paul2009-10-26T12:40:47Z2009-10-26T12:40:47Z<p>Just found a solution myself as well.</p>
<p>It is possible to set the name of the root node when instantiating XmlSerializer. See below.</p>
<pre><code>XmlSerializer ser = new XmlSerializer(typeof(ListItem[]), new XmlRootAttribute("AllPlaces"));
</code></pre>
http://stackoverflow.com/questions/1553404/can-i-set-a-metadata-attribute-in-an-ascx-file0Can I set a metadata attribute in an ASCX file?paul2009-10-12T08:40:36Z2009-10-12T08:40:36Z
<p>I want to set a metadata attribute (parsechildren=false) in a custom control which I am writing. </p>
<p>I do not want to create a partial class in a code behind file.</p>
<p>How do I set metadata in the ascx file?</p>
http://stackoverflow.com/questions/1536188/sharepoint-how-to-add-audience-filter-to-custom-control0Sharepoint: How to add audience filter to custom control?paul2009-10-08T07:36:05Z2009-10-08T08:16:06Z
<p>In MOSS 2007 I want to add a custom control to the global link section of a master page and have it only visible to a particular audience.</p>
<p>The audience are the members of an active directory group who have logged in via SSL and need to be given a link which will log them out.</p>
<p>How can I filter a custom control so that only these users will see it? Is there an API or something like <code>Sharepoint:SPSecurityTrimmedControl</code> which might help?</p>
http://stackoverflow.com/questions/1530605/how-can-ie-lose-ability-to-execute-java-applets0How can IE lose ability to execute Java applets?paul2009-10-07T09:53:35Z2009-10-07T11:43:55Z
<p>I have an applet which is used on our company intranet. From time to time there are users who are suddenly no longer able to use the applet and they get an error message.</p>
<p>I notice that the browser (IE6) no longer displays the Tools->Open Java Console menu. Java 1.5 is still installed and I can open the Java settings dialog from the Control Panel. It just looks like the browser has lost the connection to Java. Reinstalling Java fixes the problem.</p>
<p>Most, if not all users, who have had this problem also use IBMs Host On Demand applet which (apparently) has to use Java 1.3. I suspect that the problem originates here but cannot explain it. </p>
<p>Has anyone else experienced something similar? Ideas?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/479254/eclipse-rcp-problem-creating-product-which-needs-2-different-versions-of-a-plugi1Eclipse RCP: Problem creating product which needs 2 different versions of a plugin paul2009-01-26T09:41:13Z2009-10-02T00:46:36Z
<p>For reasons of compatibility with an external product, I need to build a RCP application which must include 2 versions of a plugin. The plugin is org.apache.lucene which is currently 1.9.1 in eclipse 3.4. I need version 1.4.103 in order to be compatible with the other application. I should say that my RCP app was originally developed using eclipse 3.2 and after upgrading to 3.4 this problem arose. </p>
<p>During development and test my app worked ok. I had to add the 1.4.103 plugin by hand in the Run configuration but otherwise it ran ok. </p>
<p>Now I am at the Build Product stage and cannot find a way to add the 2 versions of the Lucene plugin in the Configuration tab of the Product wizard. At runtime an error indicates that the 1.4.103 version of Lucene is missing. </p>
http://stackoverflow.com/questions/1491515/can-i-use-a-vm-for-moss-sharepoint-2007-production-environment1Can I use a VM for MOSS (SharePoint) 2007 production environment?paul2009-09-29T09:33:48Z2009-09-30T06:50:52Z
<p>I am currently working on a fairly simple company intranet based on MOSS 2007 with around 1400 users, a few blogs and wikis, minimal file sharing and no My Sites (at the moment).</p>
<p>We are considering deploying to a VM for the production environment but I have not been able to find much information on doing this. We mostly use VMWare, though I guess it would be possible to use the MS Virtual PC if necessary. If I remember correctly, only Virtual PC is officially supported, right?</p>
<ul>
<li>What experience have you had of such a deployment? </li>
<li>Any problems using VMWare?</li>
<li>How should the server be dimensioned?</li>
</ul>
<p>Thanks</p>
<p>Paul</p>
http://stackoverflow.com/questions/1491515/can-i-use-a-vm-for-moss-sharepoint-2007-production-environment/1496471#14964711Answer by paul for Can I use a VM for MOSS (SharePoint) 2007 production environment?paul2009-09-30T06:50:52Z2009-09-30T06:50:52Z<p>I posted a similar question on MSDN and got a number of useful answers:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/c441c557-b604-44bf-9335-fa17fcca2c9d" rel="nofollow">MSDN Post</a></p>
http://stackoverflow.com/questions/805702/what-personal-data-should-never-be-published-on-the-web2What personal data should never be published on the web?paul2009-04-30T07:03:36Z2009-09-23T10:06:50Z
<p>I have been ask to create a kind of family web site where a relative can publish essays and photos of various family members (mostly ancestors).</p>
<p>Confronted with a mass of personal information such as birthdate, place of birth, date of marriage etc etc, it got me wondering just how much of this should be made readily available on the web. I will be putting password protection on the site so it won't be completely open to <em>everyone</em>.</p>
<p>What are your thoughts on this? </p>
<ul>
<li>Is is enough to hide personal details for living persons and display everything for the dead?</li>
<li>How do you manage to tame the geek in you which wants to do everything technically possible and instead do what is 'proper'?</li>
<li>Is there a checklist for this kind of problem?</li>
</ul>
http://stackoverflow.com/questions/226272/applet-java-lang-nullpointerexception-null-pdata-when-browser-closed2Applet - 'java.lang.NullPointerException: null pData' when browser closedpaul2008-10-22T15:23:19Z2009-09-22T13:01:26Z
<p>I have one user who gets an error message when he closes his browser. This only happens when he has visited a page which contains my applet. It seems to have been registered as a bug at Sun but that was many years ago. He is using Java 1.6 and IE7.</p>
<p>Has anyone seen this before and know a solution or work-around?</p>
<pre><code>java.lang.NullPointerException: null pData
at sun.awt.windows.WComponentPeer.hide(Native Method)
at java.awt.Component.removeNotify(Unknown Source)
at java.awt.Container.removeNotify(Unknown Source)
at java.awt.Container.removeNotify(Unknown Source)
at java.awt.Container.removeAll(Unknown Source)
at sun.plugin.viewer.frame.IExplorerEmbeddedFrame.windowClosed(Unknown Source)
at java.awt.Window.processWindowEvent(Unknown Source)
at java.awt.Window.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
</code></pre>
<p><strong>UPDATE</strong> The user removed Google Desktop and the problem has not occured since. So there you go... Thanks everyone!</p>
http://stackoverflow.com/questions/1425423/web-2-0-advantages/1425451#14254511Answer by paul for Web 2.0 Advantages?paul2009-09-15T06:24:26Z2009-09-15T08:13:57Z<p>The statement is not completely true. Of course, some kind of formatting information is transferred. The point is that it is not continually transferred.</p>
<p>Typically, the whole page is downloaded (HTML + data) to start with and from that point on only data is transferred. For example, a country is selected from one pulldown and this triggers a lookup of main cities for that country. Only the city names will be transferred and not the whole page. The city names may then be inserted into a second pulldown list using javascript .</p>
http://stackoverflow.com/questions/1425800/how-to-differentiate-the-key-event-between-keyboard-and-bar-code-gun/1425832#14258320Answer by paul for How to differentiate the key event between keyboard and bar code gun.paul2009-09-15T08:12:11Z2009-09-15T08:12:11Z<p>I would guess that you cannot differentiate simply between a real keypress and a keypress event generated by a barcode gun. The barcode gun I have is an old one which hangs between the keyboard and the pc. The pc is not aware that the barcode gun is even there.</p>
<p>The only suggestion I would have is that you could analyse the input stream and look for barcode-typical strings. Probably not so easy. </p>
http://stackoverflow.com/questions/1399180/how-to-get-current-language-or-variation-in-sharepoint-moss-20071How to get current language or variation in Sharepoint (MOSS) 2007?paul2009-09-09T11:40:46Z2009-09-09T12:11:52Z
<p>I would like to be able to query the current <em>variation</em> from within a web part or a control template so as to determine which language to use. If there is no variation then I will pick up the language from the request.</p>
<p>Is this possible?</p>
<p>Thanks</p>
<p>Paul</p>
http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database3How to design many-to-many relationships in an object database?paul2009-07-01T13:36:02Z2009-09-02T19:40:17Z
<p>I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.</p>
<p>Consider the following objects: Book, Category.</p>
<p>A Book can be in 0-n categories and a Category can be applied to 0-m Books.</p>
<p>My first thought is to have a joining object such as BookCatecory but after a bit of Googling I see that this is not appropriate for 'Real OO'.</p>
<p>So another approach (recommended by many) is to have a list in both objects: Book.categories and Category.books. One side handles the relationship: Book.addCategory adds Category to Book.categories and Book to Category.books. How to handle commits and rollbacks when 2 objects are been altered within one method call?</p>
<p>What are your thoughts? The second approach has obvious advantages but, for me at least, the first 'feels' right (better normed). </p>
http://stackoverflow.com/questions/1356197/can-anyone-recommend-lively-sharepoint-groups-or-forums0Can anyone recommend lively SharePoint groups or forums?paul2009-08-31T07:13:20Z2009-09-01T02:32:54Z
<p>I need to get up to speed with MOSS 2007. The initial requirements are quite limited but I want to make sure that the basic structure does not make future expansion difficult. I am fairly new to MOSS 2007 but have some experience with SPS 2003. </p>
<p>Can anyone recommend lively SharePoint groups or forums where I can get answers to my questions within a reasonable time? (I'm not expecting StackOverflow response times!)</p>
<p>Here are some of my current questions:</p>
<ul>
<li>What URL structure to use for a multi-lingual intranet portal? /en/Home, /de/Home or Home-en, Home-de? </li>
<li>Does MOSS offer any other alternatives for choosing URL based on browser language?</li>
<li>I want to use Active Directory to map users to MOSS groups. Is it possible to grant access to a site to users with AD-GroupA <strong>AND</strong> AD-GroupB?</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/1345753/what-are-the-uses-of-getter-setters-in-java/1345974#13459740Answer by paul for What are the uses of getter/setters in Java?paul2009-08-28T09:34:16Z2009-08-28T09:34:16Z<p>Having a setter allows you </p>
<ul>
<li>perform validation</li>
<li>to fire a property changed event if the new value is different from the previous value</li>
</ul>
<p>In the case in question there is no need for getter and setter if the value is simply read or written.</p>
http://stackoverflow.com/questions/1339787/java-lang-securityexception-class-xyzs-signer-information-does-not-match-sign0java.lang.SecurityException: class "XYZ"'s signer information does not match signer information of other classes in the same packagepaul2009-08-27T08:56:44Z2009-08-27T09:23:55Z
<p>I have an applet which runs in a browser and is called from Javascript. There are 2 classes: <em>PortalLauncher</em> and <em>ParamSplitter</em> and these are in the default package. Javascript calls a method in <em>PortalLauncher</em> which in turn calls a function in <em>ParamSplitter</em>. The applet is in a signed jar.</p>
<p>This works most of the time. However, a few users have problems from time to time. At some time in the day (i.e. not on first access) the following exception is thrown:</p>
<pre><code>java.lang.SecurityException: class "ParamSplitter"'s signer information does not
match signer information of other classes in the same package
at java.lang.ClassLoader.checkCerts(Unknown Source)
at java.lang.ClassLoader.preDefineClass(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$000(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at PortalLauncher.openFile(PortalLauncher.java:313)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sun.plugin.javascript.JSInvoke.invoke(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
at sun.plugin.com.MethodDispatcher.invoke(Unknown Source)
at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
java.lang.Exception: java.lang.SecurityException: class "ParamSplitter"'s signer
information does not match signer information of other classes in the same package
at sun.plugin.com.DispatchImpl.invokeImpl(Unknown Source)
at sun.plugin.com.DispatchImpl$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.plugin.com.DispatchImpl.invoke(Unknown Source)
</code></pre>
<p>Can anyone throw any light on what this exception means and what might be causing it? There are about 800 users who have this applet but only a handfull are affected and even those have the problem only occaisionally.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114530#11453093Answer by paul for What are Code Smells? What is the best way to correct them?paul2008-09-22T12:25:38Z2009-08-27T08:09:13Z<p><strong>Getting and re-getting the same property.</strong></p>
<p>e.g.</p>
<pre><code>if(getValue() != null && getValue().length() > 0
&& !getValue().startWith("Hugo") ...)
</code></pre>
<p>Who knows what is going on inside getValue()? Could be something costly.</p>
<p>I would prefer:</p>
<pre><code>String value = getValue();
if(value != null && value.length() > 0
&& !value.startsWith("Hugo") ...)
</code></pre>
<p><strong>Edit</strong></p>
<p>I would agree with those commentators who say leave it up to the JIT to optimise the call. This will work in most cases. However, this became a bit of a problem for me in a framework where some getters did not simply pick up a property but in fact performed a hash table lookup or even disk or network action (can't remember which now). I guess the JIT can't do much there.</p>
<p>My point is that you don't always know what the getter does. Perhaps a naming convention such as getX for properties and fetchX for other actions might help. I just think getting/fetching a value once and then working with a copy of the value avoids the problem (unless you really know what is going on in the getter, of course)</p>
http://stackoverflow.com/questions/186264/is-it-time-to-start-using-html520Is it time to start using HTML5?paul2008-10-09T07:31:27Z2009-08-12T21:14:36Z
<p>Is it time to start using HTML5? Someone has to start sometime but is now the time?</p>
<p>Is it possible to to use the new HTML5 tags and code in such a way as to degrade gracefully?</p>
http://stackoverflow.com/questions/317602/what-is-the-best-format-to-use-when-creating-a-mail-list-for-use-in-a-word-20070What is the best format to use when creating a mail list for use in a Word 2007?paul2008-11-25T14:53:04Z2009-08-07T13:07:49Z
<p>I'm writing a web app (Java) which allows users to select contacts. The contacts details can be downloaded (currently in CSV format) and used to perform a mail merge in Word 2007.</p>
<p>I would like to use a format which is a bit more 'robust' than CSV. Those of you in non-English areas will know the comma/semicolon problems!</p>
<p>Which format would you use?</p>
http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788562#1788562Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T09:27:21Z2009-11-24T09:27:21Z@AnthonyWJones yes. Still same error. I'll make a simplified example and try it again. Perhaps something else is triggering the problem.http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788562#1788562Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T08:26:33Z2009-11-24T08:26:33Ztried that too. The transformer still throws an errorhttp://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788530#1788530Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T08:25:39Z2009-11-24T08:25:39Z'odd one out' or 'feature' or 'bug'?http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788530#1788530Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?paul2009-11-24T07:59:30Z2009-11-24T07:59:30Zdid that. Just got carried straight through to the output so JS threw an error instead. I'm currently using the pragmatic approach -- if(elD) if(elE) { .... :-)http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556815#1556815Comment by paul on Most horrifying line of code you have ever seen?paul2009-10-15T07:46:16Z2009-10-15T07:46:16Zwas there also
int fiftyTwo = fiftyOne +1;
or
fiftyOne++;
http://stackoverflow.com/questions/1530605/how-can-ie-lose-ability-to-execute-java-applets/1530628#1530628Comment by paul on How can IE lose ability to execute Java applets?paul2009-10-07T10:04:14Z2009-10-07T10:04:14ZI didn't notice how it was set. But I'm assuming the user hasn't changed the setting. Something must be causing the plugin to become disabled.http://stackoverflow.com/questions/1491515/can-i-use-a-vm-for-moss-sharepoint-2007-production-environmentComment by paul on Can I use a VM for MOSS (SharePoint) 2007 production environment?paul2009-09-30T06:45:13Z2009-09-30T06:45:13Z@Alex: I would have thought so too, but there seems to be very little sharepoint discussion there so I posted where the masses are...http://stackoverflow.com/questions/1425423/web-2-0-advantages/1425709#1425709Comment by paul on Web 2.0 Advantages?paul2009-09-15T08:17:18Z2009-09-15T08:17:18ZI agree. Web 2.0 is a pretty meaningless term. I don't like using it. For my manager it means blog and wikis! For me it means an more interactive user experience...http://stackoverflow.com/questions/1425423/web-2-0-advantages/1425451#1425451Comment by paul on Web 2.0 Advantages?paul2009-09-15T06:44:18Z2009-09-15T06:44:18Z** To the person who voted this reply down:
Why? Please add a comment. If I have said something which is false then correct me - don't just vote it down silently!! Doesn't help anyone.http://stackoverflow.com/questions/1425423/web-2-0-advantages/1425451#1425451Comment by paul on Web 2.0 Advantages?paul2009-09-15T06:37:36Z2009-09-15T06:37:36Z@Kevin - Yes, until a large change is needed (e.g. a new task) then a page (including HTML) will be loaded. Sometimes the data transferred is formatted HTML - not pure data - but then only for a small section of the page. It just depends... :-)http://stackoverflow.com/questions/1399180/how-to-get-current-language-or-variation-in-sharepoint-moss-2007/1399316#1399316Comment by paul on How to get current language or variation in Sharepoint (MOSS) 2007?paul2009-09-09T12:32:06Z2009-09-09T12:32:06ZThanks! I'll try it out asap...http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/804982#804982Comment by paul on What are your biggest complaints about Sharepoint?paul2009-09-07T12:38:46Z2009-09-07T12:38:46Zthis has done me a world of good to read. I thought I was losing it big time. Perhaps I don't need to change career after all...http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/256890#256890Comment by paul on What are your biggest complaints about Sharepoint?paul2009-09-07T12:35:24Z2009-09-07T12:35:24Z@greg - what are the license constraints on that scenario? One license per developer?http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database/1369699#1369699Comment by paul on How to design many-to-many relationships in an object database?paul2009-09-03T06:37:24Z2009-09-03T06:37:24Z+1 thanks for the reply and the hibernate tipshttp://stackoverflow.com/questions/1356197/can-anyone-recommend-lively-sharepoint-groups-or-forums/1357526#1357526Comment by paul on Can anyone recommend lively SharePoint groups or forums?paul2009-09-01T06:43:43Z2009-09-01T06:43:43ZI don't have a Microsoft background being more of a Java person. As there seem to be quite a few Sharepoint answers around here I thought I would see where those people go to get help...