User paul - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:19:08Z http://stackoverflow.com/feeds/user/11249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/158070/jquery-how-to-position-one-element-relative-to-another 7 jQuery: How to position one element relative to another? paul 2008-10-01T15:01:01Z 2009-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#1860195 1 Answer by paul for Sharepoint intranet portal paul 2009-12-07T14:08:07Z 2009-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-this 0 HTTPS hostname wrong: should be <sub.domain.com>. What causes this? paul 2009-11-26T07:22:20Z 2009-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 &lt;sub.domain.com&gt;. 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-getting 0 XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors? paul 2009-11-24T07:30:39Z 2009-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 (&amp;&amp;). 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 &amp;&amp; then the output is also '&amp;&amp;'. </p> <p>Here is my code. (trimmed for clarity)</p> <pre><code>&lt;?xml version="1.0" ?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="html" standalone="yes" indent="yes" cdata-section-elements="script style"/&gt; &lt;xsl:template match="/menus"&gt; &lt;html&gt; &lt;xsl:text disable-output-escaping="yes"&gt; &lt;head&gt; &lt;title&gt;Portal&lt;/title&gt; &lt;script type="text/javascript"&gt; // // Show hide language block // function lang(s) { var elD = document.getElementById('german'); var elE = document.getElementById('english'); if(elD &amp;&amp; elE) { /// &lt;&lt;---- error occurs here elD.style.display = s == 'german' ? 'block': 'none'; elE.style.display = s == 'german' ? 'none': 'block'; } } &lt;/script&gt; &lt;/head&gt; &lt;/xsl:text&gt; &lt;body&gt; &lt;h2&gt;Das Portal ist vorübergehend unerreichbar / The Portal is temporarily unavailable&lt;/h2&gt; &lt;div&gt;&lt;a href="#" onclick="lang('german')"&gt;deutsch&lt;/a&gt; | &lt;a href="#" onclick="lang('english')"&gt;English&lt;/a&gt; &lt;/div&gt; &lt;div id="german"&gt; &lt;xsl:apply-templates select="//menu[@lang='de']"/&gt; &lt;/div&gt; &lt;div id="english"&gt; &lt;xsl:apply-templates select="//menu[@lang='en']"/&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/1624540/how-to-set-root-node-name-when-xmlserializing-an-array 1 How to set root node name when XmlSerializing an array? paul 2009-10-26T12:32:20Z 2009-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&lt;ListItem&gt; list = new List&lt;ListItem&gt;(); 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&lt;&amp;xyz&gt;", 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>&lt;?xml version="1.0"?&gt; &lt;ArrayOfPlace xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;Place&gt; &lt;Placename&gt;A1&lt;/Placename&gt; &lt;Location&gt; &lt;Lat&gt;1&lt;/Lat&gt; &lt;Long&gt;2&lt;/Long&gt; &lt;/Location&gt; &lt;/Place&gt; &lt;Place&gt; ... </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-dynamically 0 WPF: Is it possible to create a number of ListView.View templates and dynamically select one at run-time? paul 2009-11-12T09:56:16Z 2009-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>&lt;ListView x:Name="TheList"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn Header="Columns" Width="80"/&gt; &lt;GridViewColumn Header="Added" Width="80"/&gt; &lt;GridViewColumn Header="Automatically" Width="100"/&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListView&gt; </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 -2 Answer by paul for C# Can I add values to a listbox with a backgroundwork thread? paul 2008-12-15T10:59:41Z 2009-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-gradient 4 How to 'smooth' data and calculate line gradient? paul 2008-10-15T09:45:32Z 2009-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#1686191 0 Answer by paul for When should one use interfaces? paul 2009-11-06T08:27:40Z 2009-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-silverlight 3 Is it possible to start a client-side app from Silverlight? paul 2009-05-19T09:23:30Z 2009-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-express 0 Question How to integrate SQL Server Express with VS C# Express paul 2009-03-08T12:07:33Z 2009-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#1624576 0 Answer by paul for How to set root node name when XmlSerializing an array? paul 2009-10-26T12:40:47Z 2009-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-file 0 Can I set a metadata attribute in an ASCX file? paul 2009-10-12T08:40:36Z 2009-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-control 0 Sharepoint: How to add audience filter to custom control? paul 2009-10-08T07:36:05Z 2009-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-applets 0 How can IE lose ability to execute Java applets? paul 2009-10-07T09:53:35Z 2009-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-plugi 1 Eclipse RCP: Problem creating product which needs 2 different versions of a plugin paul 2009-01-26T09:41:13Z 2009-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-environment 1 Can I use a VM for MOSS (SharePoint) 2007 production environment? paul 2009-09-29T09:33:48Z 2009-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#1496471 1 Answer by paul for Can I use a VM for MOSS (SharePoint) 2007 production environment? paul 2009-09-30T06:50:52Z 2009-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-web 2 What personal data should never be published on the web? paul 2009-04-30T07:03:36Z 2009-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-closed 2 Applet - 'java.lang.NullPointerException: null pData' when browser closed paul 2008-10-22T15:23:19Z 2009-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#1425451 1 Answer by paul for Web 2.0 Advantages? paul 2009-09-15T06:24:26Z 2009-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#1425832 0 Answer by paul for How to differentiate the key event between keyboard and bar code gun. paul 2009-09-15T08:12:11Z 2009-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-2007 1 How to get current language or variation in Sharepoint (MOSS) 2007? paul 2009-09-09T11:40:46Z 2009-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-database 3 How to design many-to-many relationships in an object database? paul 2009-07-01T13:36:02Z 2009-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-forums 0 Can anyone recommend lively SharePoint groups or forums? paul 2009-08-31T07:13:20Z 2009-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#1345974 0 Answer by paul for What are the uses of getter/setters in Java? paul 2009-08-28T09:34:16Z 2009-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-sign 0 java.lang.SecurityException: class "XYZ"'s signer information does not match signer information of other classes in the same package paul 2009-08-27T08:56:44Z 2009-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#114530 93 Answer by paul for What are Code Smells? What is the best way to correct them? paul 2008-09-22T12:25:38Z 2009-08-27T08:09:13Z <p><strong>Getting and re-getting the same property.</strong></p> <p>e.g.</p> <pre><code>if(getValue() != null &amp;&amp; getValue().length() &gt; 0 &amp;&amp; !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 &amp;&amp; value.length() &gt; 0 &amp;&amp; !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-html5 20 Is it time to start using HTML5? paul 2008-10-09T07:31:27Z 2009-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-2007 0 What is the best format to use when creating a mail list for use in a Word 2007? paul 2008-11-25T14:53:04Z 2009-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#1788562 Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors? paul 2009-11-24T09:27:21Z 2009-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#1788562 Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors? paul 2009-11-24T08:26:33Z 2009-11-24T08:26:33Z tried that too. The transformer still throws an error http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788530#1788530 Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors? paul 2009-11-24T08:25:39Z 2009-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#1788530 Comment by paul on XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors? paul 2009-11-24T07:59:30Z 2009-11-24T07:59:30Z did 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#1556815 Comment by paul on Most horrifying line of code you have ever seen? paul 2009-10-15T07:46:16Z 2009-10-15T07:46:16Z was there also int fiftyTwo = fiftyOne +1; or fiftyOne++; http://stackoverflow.com/questions/1530605/how-can-ie-lose-ability-to-execute-java-applets/1530628#1530628 Comment by paul on How can IE lose ability to execute Java applets? paul 2009-10-07T10:04:14Z 2009-10-07T10:04:14Z I 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-environment Comment by paul on Can I use a VM for MOSS (SharePoint) 2007 production environment? paul 2009-09-30T06:45:13Z 2009-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#1425709 Comment by paul on Web 2.0 Advantages? paul 2009-09-15T08:17:18Z 2009-09-15T08:17:18Z I 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#1425451 Comment by paul on Web 2.0 Advantages? paul 2009-09-15T06:44:18Z 2009-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#1425451 Comment by paul on Web 2.0 Advantages? paul 2009-09-15T06:37:36Z 2009-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#1399316 Comment by paul on How to get current language or variation in Sharepoint (MOSS) 2007? paul 2009-09-09T12:32:06Z 2009-09-09T12:32:06Z Thanks! I'll try it out asap... http://stackoverflow.com/questions/256407/what-are-your-biggest-complaints-about-sharepoint/804982#804982 Comment by paul on What are your biggest complaints about Sharepoint? paul 2009-09-07T12:38:46Z 2009-09-07T12:38:46Z this 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#256890 Comment by paul on What are your biggest complaints about Sharepoint? paul 2009-09-07T12:35:24Z 2009-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#1369699 Comment by paul on How to design many-to-many relationships in an object database? paul 2009-09-03T06:37:24Z 2009-09-03T06:37:24Z +1 thanks for the reply and the hibernate tips http://stackoverflow.com/questions/1356197/can-anyone-recommend-lively-sharepoint-groups-or-forums/1357526#1357526 Comment by paul on Can anyone recommend lively SharePoint groups or forums? paul 2009-09-01T06:43:43Z 2009-09-01T06:43:43Z I 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...