User Simon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:01:15Z http://stackoverflow.com/feeds/user/24039 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947515/load-a-web-page-in-flex-component/1947556#1947556 0 Answer by Simon for Load a Web Page in Flex component Simon 2009-12-22T16:39:40Z 2009-12-22T16:39:40Z <p>There is some good stuff <a href="http://blogs.adobe.com/aharui/2008/01/html%5Fand%5Fflex%5F1.html" rel="nofollow">in here</a> about mixing Flex and HTML. In fact it is a great Flex blog altogether.</p> http://stackoverflow.com/questions/1947290/excel-formula-auto-sum-for-the-same-types/1947391#1947391 1 Answer by Simon for Excel formula - auto sum for the same types Simon 2009-12-22T16:14:57Z 2009-12-22T16:14:57Z <p>I think <a href="http://www.techonthenet.com/excel/formulas/sumif.php" rel="nofollow">sumif</a> is what you are looking for</p> http://stackoverflow.com/questions/1944995/any-code-tips-for-speeding-up-random-reads-from-a-java-filechannel 2 Any code tips for speeding up random reads from a Java FileChannel? Simon 2009-12-22T08:42:39Z 2009-12-22T16:00:02Z <p>I have a large (3Gb) binary file of doubles which I access (more or less) randomly during an iterative algorithm I have written for clustering data. Each iteration does about half a million reads from the file and about 100k writes of new values.</p> <p>I create the FileChannel like this...</p> <pre><code>f = new File(_filename); _ioFile = new RandomAccessFile(f, "rw"); _ioFile.setLength(_extent * BLOCK_SIZE); _ioChannel = _ioFile.getChannel(); </code></pre> <p>I then use a private ByteBuffer the size of a double to read from it </p> <pre><code>private ByteBuffer _double_bb = ByteBuffer.allocate(8); </code></pre> <p>and my reading code looks like this</p> <pre><code>public double GetValue(long lRow, long lCol) { long idx = TriangularMatrix.CalcIndex(lRow, lCol); long position = idx * BLOCK_SIZE; double d = 0; try { _double_bb.position(0); _ioChannel.read(_double_bb, position); d = _double_bb.getDouble(0); } ...snip... return d; } </code></pre> <p>and I write to it like this...</p> <pre><code>public void SetValue(long lRow, long lCol, double d) { long idx = TriangularMatrix.CalcIndex(lRow, lCol); long offset = idx * BLOCK_SIZE; try { _double_bb.putDouble(0, d); _double_bb.position(0); _ioChannel.write(_double_bb, offset); } ...snip... } </code></pre> <p>The time taken for an iteration of my code increases roughly linearly with the number of reads. I have added a number of optimisations to the surrounding code to minimise the number of reads, but I am at the core set that I feel are necessary without fundamentally altering how the algorithm works, which I want to avoid at the moment.</p> <p>So my question is whether there is anything in the read/write code or JVM configuration I can do to speed up the reads? I realise I can change hardware, but before I do that I want to make sure that I have squeezed every last drop of software juice out of the problem.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex 8 What is a good solution for calculating an average where the sum of all values exceeds a double's limits? Simon 2009-12-18T20:18:48Z 2009-12-22T07:57:49Z <p>I have a requirement to calculate the average of a very large set of doubles (10^9 values). The sum of the values exceeds the upper bound of a double, so does anyone know any neat little tricks for calculating an average that doesn't require also calculating the sum?</p> <p>I am using Java 1.5. </p> http://stackoverflow.com/questions/1940456/getting-started-with-a-new-code-in-an-unfamiliar-language/1940561#1940561 1 Answer by Simon for Getting started with a new code in an unfamiliar language Simon 2009-12-21T14:57:13Z 2009-12-21T14:57:13Z <p>The debugger is your friend - if you have one for Fortran.</p> <p>Before you go too much further I would familiarise yourself with the basic syntax of the language plus any foibles like assumptions about variable types from their names and positions of declarations etc. If you don't get that stuff then you are likely to get very lost even with a helpful debugger.</p> <p>Remember as well that structure is sometimes language dependent. The code you are looking at may be badly structured for the languages you are used to but may be very well structured for Fortran, which has its own set of peculiarities. I think I am just saying have an open mind to start with otherwise you'll be carrying around the unnecessary predisposition that the code you are looking at is bad. It may be, but it may just be something you are not used to.</p> <p>Best of luck. I rather liked Fortran when I programmed in it for a living about 200 years ago, and it is still the language of choice for some applications because of computation speeds on some platforms. Still quite a lot of it in academia.</p> http://stackoverflow.com/questions/1940281/cant-run-my-programme-from-command-line/1940303#1940303 1 Answer by Simon for Cant run my programme from command line Simon 2009-12-21T14:07:44Z 2009-12-21T14:07:44Z <p>args[0] will not contain anything unless you put it on the command line and you'll get an index out of bounds error. Your command should look like this...</p> <pre><code>java -jar myjar.jar c:\myfile.csv </code></pre> <p>args[0] will then contain c:\myfile.csv and you don't need to worry about its location.</p> http://stackoverflow.com/questions/1939921/filter-columns-in-flex-datagrid-using-checkbox/1940052#1940052 0 Answer by Simon for Filter columns in flex datagrid using CheckBox Simon 2009-12-21T13:15:38Z 2009-12-21T13:15:38Z <p>You can manipulate the columns attached to the data grid using the <code>.columns</code> property. Bear in mind that this method is a getter and returns you a copy of the list of columns on the datagrid, so if you manipulate its contents you have to apply those changes back to the data grid using the equivalent setter, e.g.</p> <pre><code>&lt;mx:DataGrid id="dg" /&gt; </code></pre> <p>in ActionScript code</p> <pre><code>var columns:Array = dg.column; columns.push(new DataGridColumn("hello")); dg.columns = columns; </code></pre> <p>In your case you could hold your master list of columns in a separate array and push them onto the data grid as the user checks and un-checks them from the list in your comboBox.</p> <p>Alternatively you can iterate through the column list looking for the ones which are checked in your comboBox and set their <code>.visible</code> property accordingly.</p> <p>HTH</p> http://stackoverflow.com/questions/1939919/rename-worksheet-event-in-excel/1939967#1939967 0 Answer by Simon for Rename Worksheet Event in Excel Simon 2009-12-21T12:58:00Z 2009-12-21T12:58:00Z <p>I'm eagerly awaiting an answer to this because I haven't figured it out after much searching. There is no rename event on a worksheet that I have found, so you are forced to have an alternative approach. </p> <p>The best one I have seen (which is <em>awful</em>) is to prohibit rename on the sheets by making them read-only or invisible, and then provide your own toolbar or button that does the rename. Very ugly and users hate it.</p> <p>I have also seen applications that disable the rename menu item in the office toolbar, but that doesn't prevent double-clicking the tab and renaming there. Also very ugly and users hate it.</p> <p>Good luck, I hope someone comes up with a better answer.</p> http://stackoverflow.com/questions/1938713/flex-titlewindow-addchild-removes-original-object/1938807#1938807 0 Answer by Simon for Flex TitleWindow.addChild removes original object Simon 2009-12-21T08:08:34Z 2009-12-21T08:08:34Z <p>I haven't managed to find documentation to support it, but I believe that a Flash UI component can only have a single parent. When you call addChild() I suspect that the parentage of the control changes and it disappears from the other window. Since the parentage has changed it will get garbage collected when the new TitleWindow disappears.</p> <p>What I think I would do in your position would be to abstract the chart out to its own control so you don't have to duplicate code, use the same control in your regular window and your popup, and pass the data to it after the createPopUp call.</p> http://stackoverflow.com/questions/1927123/why-do-i-get-not-enough-storage-is-available-to-process-this-command-using-java 1 Why do I get "Not enough storage is available to process this command" using Java MappedByteBuffers? Simon 2009-12-18T09:03:25Z 2009-12-18T10:54:16Z <p>I have a very large array of doubles that I am using a disk-based file and a paging List of MappedByteBuffers to handle, see <a href="http://stackoverflow.com/questions/1918356/how-should-i-deal-with-a-very-large-array-in-java/">this question</a> for more background. I am running on Windows XP using Java 1.5.</p> <p>Here is the key part of my code that does the allocation of the buffers against the file...</p> <pre><code>try { // create a random access file and size it so it can hold all our data = the extent x the size of a double f = new File(_base_filename); _filename = f.getAbsolutePath(); _ioFile = new RandomAccessFile(f, "rw"); _ioFile.setLength(_extent * BLOCK_SIZE); _ioChannel = _ioFile.getChannel(); // make enough MappedByteBuffers to handle the whole lot _pagesize = bytes_extent; long pages = 1; long diff = 0; while (_pagesize &gt; MAX_PAGE_SIZE) { _pagesize /= PAGE_DIVISION; pages *= PAGE_DIVISION; // make sure we are at double boundaries. We cannot have a double spanning pages diff = _pagesize % BLOCK_SIZE; if (diff != 0) _pagesize -= diff; } // what is the difference between the total bytes associated with all the pages and the // total overall bytes? There is a good chance we'll have a few left over because of the // rounding down that happens when the page size is halved diff = bytes_extent - (_pagesize * pages); if (diff &gt; 0) { // check whether adding on the remainder to the last page will tip it over the max size // if not then we just need to allocate the remainder to the final page if (_pagesize + diff &gt; MAX_PAGE_SIZE) { // need one more page pages++; } } // make the byte buffers and put them on the list int size = (int) _pagesize ; // safe cast because of the loop which drops maxsize below Integer.MAX_INT int offset = 0; for (int page = 0; page &lt; pages; page++) { offset = (int) (page * _pagesize ); // the last page should be just big enough to accommodate any left over odd bytes if ((bytes_extent - offset) &lt; _pagesize ) { size = (int) (bytes_extent - offset); } // map the buffer to the right place MappedByteBuffer buf = _ioChannel.map(FileChannel.MapMode.READ_WRITE, offset, size); // stick the buffer on the list _bufs.add(buf); } Controller.g_Logger.info("Created memory map file :" + _filename); Controller.g_Logger.info("Using " + _bufs.size() + " MappedByteBuffers"); _ioChannel.close(); _ioFile.close(); } catch (Exception e) { Controller.g_Logger.error("Error opening memory map file: " + _base_filename); Controller.g_Logger.error("Error creating memory map file: " + e.getMessage()); e.printStackTrace(); Clear(); if (_ioChannel != null) _ioChannel.close(); if (_ioFile != null) _ioFile.close(); if (f != null) f.delete(); throw e; } </code></pre> <p>I get the error mentioned in the title after I allocate the second or third buffer.</p> <p>I thought it was something to do with contiguous memory available, so have tried it with different sizes and numbers of pages, but to no overall benefit.</p> <p>What exactly does <em>"Not enough storage is available to process this command"</em> mean and what, if anything, can I do about it?</p> <p>I thought the point of MappedByteBuffers was the ability to be able to handle structures larger than you could fit on the heap, and treat them as if they were in memory.</p> <p>Any clues? </p> <p><strong>EDIT:</strong></p> <p>In response to an answer below (@adsk) I changed my code so I never have more than a single active MappedByteBuffer at any one time. When I refer to a region of the file that is currently unmapped I junk the existing map and create a new one. I still get the same error after about 3 map operations. </p> <p>The bug quoted with GC not collecting the MappedByteBuffers still seems to be a problem in JDK 1.5. </p> http://stackoverflow.com/questions/1926902/flex-drawing-dynamically/1926939#1926939 0 Answer by Simon for Flex + Drawing dynamically Simon 2009-12-18T07:58:19Z 2009-12-18T07:58:19Z <p>Mark Shepherd's <a href="http://flex.org/software/component/springgraph-flex-component" rel="nofollow">SpringGraph</a> is a nice utility for drawing graphs. You'll have to write the layer between your XML representation and the nodes in the graph, but that is easy.</p> <p>You can overload the itemRenderer for the nodes and show your custom images and hover tips on the appropriate Mouse event.</p> http://stackoverflow.com/questions/1918356/how-should-i-deal-with-a-very-large-array-in-java 9 How should I deal with a very large array in Java? Simon 2009-12-16T22:46:09Z 2009-12-17T19:11:43Z <p>I have an algorithm which currently allocates a very large array of doubles, which it updates and searches frequently. The size of the array is N^2/2, where N is the number of rows on which the algorithm is operating. I also have to keep a copy of the entire thing for purposes associated with the application surrounding the algorithm.</p> <p>Of course this imposes a limit on the number of rows that my algorithm can handle as I have the heap limitation to contend with. Up to this point I have got away with asking the people using the algorithm to update the -Xmx setting to allocate more space, and that has worked fine. However, I now have a genuine problem where I need this array to be larger than I can fit into memory.</p> <p>I already have plans to change my algorithm to mitigate the necessity of this large array and have some promising results in that domain. However it is a fundamental alteration to the process and will require a lot more work before it gets to the highly polished condition of my current code which is operating in production very successfully and has been for several years.</p> <p>So, while I am perfecting my new algorithm I wanted to extend the life of the existing one and that means tackling the heap limitation associated with allocating my huge array of doubles. </p> <p>My question is what is the best way of dealing with it? Should I use an nio FileChannel and a MappedByteBuffer, or is there a better approach. If I do use the nio approach, what sort of performance hit should I expect to take compared to an in-memory array of the same size?</p> <p>Thanks</p> http://stackoverflow.com/questions/1920020/java-how-to-write-method-to-accept-child-without-casting-to-parent/1920120#1920120 0 Answer by Simon for Java: How to write method to accept child without casting to parent? Simon 2009-12-17T07:54:05Z 2009-12-17T07:54:05Z <p>You could abstract the problem out behind an interface</p> <pre><code>interface IEvent { abstract public void doSomething(); } </code></pre> <p>Then have all your event classes implement it, e.g.</p> <pre><code>class WeightedEvent implements IEvent { public void doSomething() { // do something } } </code></pre> <p>Then you only need a single method and don't need to do any type checking</p> <pre><code>public void setEvent(IEvent e) { e.doSomething(); } </code></pre> <p>HTH</p> http://stackoverflow.com/questions/1909994/how-do-i-add-rows-and-columns-to-a-numpy-array/1910150#1910150 0 Answer by Simon for How do I add rows and columns to a NUMPY array? Simon 2009-12-15T20:25:50Z 2009-12-16T09:02:16Z <p>You should use <a href="http://www.scipy.org/Numpy%5FExample%5FList%5FWith%5FDoc#head-11717acafb821da646a8db6997e59b820ac8761a" rel="nofollow">reshape()</a> and/or <a href="http://www.scipy.org/Numpy%5FExample%5FList%5FWith%5FDoc#head-11717acafb821da646a8db6997e59b820ac8761a" rel="nofollow">resize()</a> depending on your precise requirement.</p> <p>If you want chapter and verse from the authors you are probably better off posting on the numpy discussion board.</p> http://stackoverflow.com/questions/1888709/design-or-implementaion/1888761#1888761 4 Answer by Simon for Design or implementaion ? Simon 2009-12-11T15:22:08Z 2009-12-11T15:22:08Z <p>I think you already know the answer, and to be honest it is a bit of an unnecessary semantic distinction for most practical purposes. Having said that, it's design if it impacts the end user / consumer, it's implementation if it doesn't. In your example it will have a profound effect on the design of any client consuming your services, so it is certainly design.</p> <p>And there is no sequence. You cannot realistically complete design before implementation starts and slavishly following a design which has a high and unnecessary implementation cost is very dangerous. You may choose to redesign half way through implementation given what you have learnt about costs.</p> http://stackoverflow.com/questions/1873863/how-to-justify-using-a-scripting-language-as-part-of-a-project/1873955#1873955 0 Answer by Simon for How to justify using a scripting language as part of a project Simon 2009-12-09T13:38:41Z 2009-12-09T13:38:41Z <p>I think the cost angle is probably always going to lose based on the fact that your group has incumbent C expertise, so the savings are offset by the cost of learning a new language.</p> <p>More compelling for me (as someone who has had to make these trade-offs in the past) would be the flexibility and speed of response to changes. C will have to be compiled and deployed whereas you can drop a new python script into your environment in 10 seconds. If the pages you scrape are changing it seems that your development and deployment environment ought to match that flexibility, and that means a scripting language.</p> <p>BTW the "Java is slower" argument is only trotted out by people who are stuck in C. It hasn't been true for quite a while, and there are myriad independent test which prove it.</p> http://stackoverflow.com/questions/190647/has-anyone-managed-to-build-any-applications-with-the-linkedin-api 13 Has anyone managed to build any applications with the LinkedIn API? Simon 2008-10-10T09:37:51Z 2009-12-08T19:29:32Z <p>LinkedIn are very cautious of applications using their APIs. I have tried and failed to get access to them. </p> <p>Has anyone actually built any real applications with them yet? If yes, what strategy did you employ to get access to their API?</p> <p>BTW I am talking about first class value added applications on top of LinkedIn, not just embedding hyperlinks.</p> http://stackoverflow.com/questions/1845860/what-tools-do-you-use-to-upload-files-to-amazon-ec2-linux-instances 1 What tools do you use to upload files to amazon ec2 Linux instances? Simon 2009-12-04T09:30:19Z 2009-12-07T20:51:08Z <p>I am using the standard fedora AMI with the LAMP stack bundled and I want to upload files onto the server from my Windows desktop.</p> <p>What is the "normal" approach for this? I am not a UNIX admin by any stretch, although I am more than comfortable with FTP and the basics of a BASH shell.</p> <p>As far as I can see there is no FTP server installed by default on the remote virtual machine, and I am unable to open one up at my end because of firewall restrictions. I looked at WinSCP, but before I go to the lengths of installing and configuring that I wondered what the expected means of doing this might be. In any case I don't see how WinSCP or any other FTP based tool can work without the target machine listening, which implies something like and FTP server.</p> <p>Is there anything like a Windows remote desktop connection?</p> <p>I could mount an S3 elastic storage volume from within EC2, but it is a bit of a sledgehammer to crack my little nut of just wanting 100k of files copied up to the server.</p> <p>This is a different question to getting my web application running on the virtual server to save files locally, which is what the other SO questions in a similar vein seem to be asking.</p> <p>Any ideas welcome.</p> http://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case 9 Why does the Flash Player throw a sandbox error in this case? Simon 2009-11-10T16:55:09Z 2009-12-07T16:54:20Z <p>I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32.</p> <p>The sequence is as follows...</p> <p>1 Java server starts, listens on port 843 for policy file request and on port 45455 for my other requests.</p> <p>2 Flex client served by Apache (although I get the same result if I run it from the file system), socket connection made on host:45455.</p> <p>3 Flash Player requests policy file from port 843. This is the standard behaviour with the new security settings looking for a master file. It happens regardless of whether a different policy file has been specified.</p> <p>4 I serve the following XML from Java through port 843:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt; &lt;cross-domain-policy&gt; &lt;site-control permitted-cross-domain-policies="all"/&gt; &lt;allow-access-from domain="*" to-ports="*" secure="false"/&gt; &lt;/cross-domain-policy&gt; </code></pre> <p>5 The player writes the following into the debug policy log...</p> <pre><code>OK: Root-level SWF loaded: http://localhost/bst/BasicSocketTest.swf OK: Searching for &lt;allow-access-from&gt; in policy files to authorize data loading from resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf OK: Policy file accepted: xmlsocket://192.168.2.3:843 OK: Request for resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf is permitted due to policy file at xmlsocket://192.168.2.3:843 </code></pre> <p>6 I send a text message from the client to the server on port 45455 using <code>writeUTFBytes()</code> and <code>flush()</code> (this is my own home-baked message protocol, and is correctly processed at each end)</p> <pre><code>REG/REGISTER;simon;Si </code></pre> <p>7 Java server thread listening on port 45455 responds with</p> <pre><code>REG:0/REGISTER:SUCCESS;simon;Si </code></pre> <p>8 The Flex client receives a ProgressEvent and the event listener I bound to the socket gets called. I process the message (write it to a text box on the screen)</p> <p>9 The Flash player throws a 2048 sandbox error and the socket is disconnected! This is <em>after</em> the message is received and processed successfully. In fact it is about 12 seconds after. Nothing else works through the socket.</p> <p>I have tried explicitly loading a policy file with a call to <code>Security.loadPolicyFile()</code> in the Flex client, but the reality of the new player security is that it is basically ignored. The steps are that the policy request will not get sent until a socket i/o operation occurs. At that point the player <em>always</em> goes to port 843 first looking for a master policy file. If it finds one, and it is permissive, it goes no further.</p> <p>I have tried a variety of alternative ways of terminating the policy file and policy file contents, including deliberate errors just to see if the Flash Player is awake.</p> <p>I can see no reason why I would have a 2048 being thrown. I accurately serve a socket policy file on the designated master security port, which the player itself logs as correct. The socket then successfully sends and receives a message from the server the contents of which are available to my code.</p> <p>Does anyone have any clue why this may be happening? Flash Player bug?</p> <p><strong>P.S.</strong> <em>Please</em> don't tell me to use BlazeDS or LCDS or Granite, or something else as a server, I'm looking for a solution to this problem, not a redesign. And please don't ask me to use an XMLSocket instead - I tried that and get exactly the same result. I have chosen my architecture carefully and deliberately and I want a binary socket.</p> <p><strong>EDIT</strong> In response to James Ward's request in his comment, here is the entire error message:</p> <pre><code>Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455. </code></pre> <p>I have a stripped down test client which has a handler for each socket event and outputs a message to the screen. This is what it shows:</p> <pre><code>RequestPolicy: 192.168.2.3:843 Create Socket: 192.168.2.3:45455 Connect: [Event type="connect" bubbles=false cancelable=false eventPhase=2] Sending: REG/REGISTER;simon.palmer@gmail.com;Si Receiving: REG:0/REGISTER:SUCCESS;simon.palmer@gmail.com;Si/ Close: [Event type="close" bubbles=false cancelable=false eventPhase=2] Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455. </code></pre> <p>The close event is fired immediately after successfully receiving a response from the server, however the Error #2048 does not appear until about 20 seconds later. If I try and send a further message after close, but before the error, the Flash Player throws an invalid socket exception.</p> <p>I have <a href="http://bugs.adobe.com/jira/browse/FP-3302" rel="nofollow">logged a bug at Adobe</a> about this.</p> <p>I can provide full source code of both client and server if anyone is interested.</p> http://stackoverflow.com/questions/1845687/using-flashvars-to-pass-variables-to-a-swf/1845738#1845738 0 Answer by Simon for Using FlashVars to pass variables to a SWF Simon 2009-12-04T09:01:46Z 2009-12-04T09:01:46Z <p>If you feel that this is pushing flashvars beyond its limit you might consider making an HTTP request back to your PHP page from within the SWF and send it whatever data you want.</p> http://stackoverflow.com/questions/1842972/how-do-i-run-a-class-in-a-war-from-the-command-line 2 How do I run a class in a WAR from the command line? Simon 2009-12-03T21:16:32Z 2009-12-03T21:26:28Z <p>I have a Java class which has a main and I used to run as a standalone app from the command line e.g.</p> <pre><code>java -jar myjar.jar params </code></pre> <p>I needed to repackage the code to run under apache and all my code, including the entry point class from the old jar, has ended up in a WAR file for easy deplyment into the web server.</p> <p>However, I still want to be able to run it from the command line and the code has not changed and is all in there, I just can't figure out how to get it to run.</p> <p>Here's what I tried...</p> <p>I presumed the WAR was just like a jar, so</p> <pre><code>java -jar mywar.war params </code></pre> <p>That failed saying there was no main class defined in the manifest.</p> <p>I manually added a manifest to the war and tried again, with the same effect.</p> <p>I noticed that in my war I had a folder called META-INF containing a manifest.mf, so I added a line to that declaring my main class as I would to a normal manifest...</p> <pre><code>Manifest-Version: 1.0 Main-Class: mypackage.MyEntryPointClass </code></pre> <p>This gave a <code>noClassDefFoundError mypackage.MyEntryPointClass</code>, which is progress of a sort. That led me to believe that it was just a path issue, so I tried</p> <pre><code>Manifest-Version: 1.0 Main-Class: WEB-INF.classes.mypackage.MyEntryPointClass </code></pre> <p>I now get the same error, but with a stack trace...</p> <pre><code>Exception in thread "main" java.lang.NoClassDefFoundError: WEB-INF/classes/mypackage/MyEntryPointClass (wrong name: mypackage/MyEntryPointClass) at java.lang.ClassLoader.defineClass1(Native Method) 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$100(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 java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClassInternal(Unknown Source) </code></pre> <p>I've googled for a bit but can't find anything which answers my question, and I read a couple of other questions here which are slightly different, so I thought I would post.</p> <p>Java 1.5, not that I think that should make any difference.</p> http://stackoverflow.com/questions/307066/does-anyone-know-of-a-good-salesforce-com-soql-resource 1 Does anyone know of a good salesforce.com SOQL resource? Simon 2008-11-20T22:18:40Z 2009-12-03T17:29:52Z <p>I have been looking for a decent guide to salesforce.com's SOQL query language and a schema for their tables but I can't find anything that is remotely decent. Does anyone know how I would go about getting docs?</p> http://stackoverflow.com/questions/1782325/how-should-my-business-logic-interact-with-my-data-layer/1782380#1782380 1 Answer by Simon for How should my business logic interact with my data layer? Simon 2009-11-23T10:53:45Z 2009-11-23T10:53:45Z <p>Your Data "Layer" should probably be more than a set of semantic queries and you should encapsulate it in an API, otherwise your Business Logic layer will have to know too much about the implementation of your Data layer. The same reasoning you have used between your GUI and Business Logic layers should apply, and for the same purpose.</p> http://stackoverflow.com/questions/1673295/sandbox-violation-on-second-socket-send 2 Sandbox violation on second socket send Simon 2009-11-04T11:44:30Z 2009-11-18T03:08:46Z <p>Hi, </p> <p>I have a Flex client using a Flash binary (TCP) socket for communication with a Java server. I have a localhost (Apache) server providing a crossdomain.xml file which is wide open just while I am testing.</p> <p>My code successfully loads the policy file on startup.</p> <p>I then connect the socket to the server without any difficulty and send a message and get a response. All good so far. </p> <p>However, when I send a second message through the same socket I get a pause of about 12 seconds then a sandbox violation error:</p> <pre><code>Security Error: Error #2048: Security sandbox violation: file:///C:/apache_root/ttt1/ttt1.swf cannot load data from localhost:45455. </code></pre> <p>This is the same port and socket through which the first message succeeded. </p> <p>I tried re-loading the policy file before every send, but I get the same result. </p> <p>Any idea why this might be happening? I clearly have an open socket at one point. I am flushing the socket after each send and I tried doing that after each read as well, but the same result.</p> <p>Thanks in advance</p> <p><strong>EDIT:</strong><br> If I recreate the socket prior to every call my code works. I am struggling to believe that this is correct, but maybe there is a Socket setting I am missing.</p> http://stackoverflow.com/questions/1734024/managing-multiple-software-projects/1735766#1735766 2 Answer by Simon for managing multiple software projects Simon 2009-11-14T22:06:10Z 2009-11-14T22:06:10Z <p>A classic consultant's technique... I would start by plotting them on a 2x2 graph. Make the vertical axis the ROI, with high at the top, make the horizontal axis two partitions of incremental improvement on the left and new initiative on the right - and I bet there are some projects which are a bit of both, so maybe you have a continuum. Plot each project on those axes as a circle and make the area of the circle represent the number of man days.</p> <p>Stuff in the top right is high return, new initiatives, stuff in the bottom left is low return maintenance/incremental improvements. If you do one chart for current resource deployment and another for planned resource deployment you'll get a strong feel for how you are spending your manpower.</p> <p>There are many variations on this and you can choose what you want to plot where to best show your story. It is simple and powerful as a visual aid and you can get 90 circles on your chart without losing the woods for the trees.</p> <p>HTH and good luck.</p> http://stackoverflow.com/questions/1725445/in-flex-how-do-wrap-lists-into-columns/1725586#1725586 0 Answer by Simon for In Flex, how do wrap Lists into columns? Simon 2009-11-12T21:35:35Z 2009-11-12T21:35:35Z <p>You could use a Repeater and a simple Label based itemRenderer for the list items and avoid using a list completely. If you wrap it all up inside a custom control you can provide the same API as List so your consumers will never tell the difference.</p> http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed 1 Does anyone know if the crossdomain policy file at salesforce.com has changed? Simon 2008-11-20T22:14:10Z 2009-11-10T20:05:28Z <p>Suddenly my Flex Apps can no longer connect to salesforce.com via its API, I am getting a security sandbox violation. Login credentials are correct, I have tried them via a different means, and I have obfuscated them below.</p> <p>This was working fine earlier today and I have not been coding since then.</p> <p>Anyone else come across this or know what's going on?</p> <p>Here is the exception returned to my app</p> <pre><code>Method name is: login 'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer connected. 'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer sending message 'B89E5879-D7F7-E91E-2082-BBEE231054DD' 'direct_http_channel' channel sending message: (mx.messaging.messages::HTTPRequestMessage)#0 body = "&lt;se:Envelope xmlns:se="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;se:Header xmlns:sfns="urn:partner.soap.sforce.com"/&gt;&lt;se:Body&gt;&lt;login xmlns="urn:partner.soap.sforce.com" xmlns:ns1="sobject.partner.soap.sforce.com"&gt;&lt;username&gt;simon.palmer@***.com&lt;/username&gt;&lt;password&gt;***&lt;/password&gt;&lt;/login&gt;&lt;/se:Body&gt;&lt;/se:Envelope&gt;" clientId = (null) contentType = "text/xml; charset=UTF-8" destination = "DefaultHTTPS" headers = (Object)#1 httpHeaders = (Object)#2 Accept = "text/xml" SOAPAction = """" X-Salesforce-No-500-SC = "true" messageId = "B89E5879-D7F7-E91E-2082-BBEE231054DD" method = "POST" recordHeaders = false timestamp = 0 timeToLive = 0 url = "https://www.salesforce.com/services/Soap/u/11.0" Method name is: login *** Security Sandbox Violation *** Connection to https://www.salesforce.com/services/Soap/u/11.0 halted - not permitted from https://localhost/pm_server/pm/pm-debug.swf 'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer acknowledge of 'B89E5879-D7F7-E91E-2082-BBEE231054DD'. 'A997F86A-36E9-DDDC-EC6B-BBEE23101466' producer fault for 'B89E5879-D7F7-E91E-2082-BBEE231054DD'. Comunication Error : Channel.Security.Error : Security error accessing url : Destination: DefaultHTTPS Error: Request for resource at https://www.salesforce.com/services/Soap/u/11.0 by requestor from https://localhost/pm_server/pm/pm-debug.swf is denied due to lack of policy file permissions. </code></pre> http://stackoverflow.com/questions/1709535/getting-handles-to-dynamically-generated-flex-components/1709609#1709609 2 Answer by Simon for Getting handles to dynamically-generated Flex components Simon 2009-11-10T17:15:08Z 2009-11-10T17:15:08Z <p>Can you not just keep a list of your components in an array? Presumably you have an object reference when you create them and call addChild() on their parent. Why not just put them in an array at the same time?</p> <pre><code>var list_of_controls:Array = new Array(); var new_Object:&lt;yourType&gt;; new_Object = new &lt;yourType&gt;(); parent.addChild(new_Object); list_of_controls.push(new_Object); </code></pre> <p>then you can get at them...</p> <pre><code>var my_Object:&lt;yourType&gt;; for each (my_Object in list_of_controls) { // do something } </code></pre> <p>You would have to make sure you dispose of them properly when you re done because the reference in your array would keep them in existence until cleared.</p> <p>If you decide that you want to use getChildren() instead - which you could - take the time to read the documentation because I think it returns a new array with each call.</p> <p>I hope that helps.</p> http://stackoverflow.com/questions/339487/login-error-connecting-to-salesforce-com-from-flex 1 Login error connecting to salesforce.com from Flex Simon 2008-12-04T02:51:38Z 2009-11-10T17:04:59Z <p>Has anyone suddenly encountered login errors from their users trying to connect to salesforce.com from a Flex app using as3salesforce.swc?</p> <p>I get the following error... password removed to protect the innocent...</p> <pre><code>App Domain = null Api Server name = na3.salesforce.com _internalServerUrl = https://na3.salesforce.com/services/Soap/u/14.0 loading the policy file: https://na3.salesforce.com/services/Soap/cross-domain.xml Your application must be running on a https server in order to use https to communicate with salesforce.com! login with creds loading the policy file: https://na3.salesforce.com/services/crossdomain.xml Your application must be running on a https server in order to use https to communicate with salesforce.com! invoke login intServerUrl is null intServerUrl = https://na3.salesforce.com/services/Soap/u/14.0 _invoke login '5A5D3012-7717-E3C2-9B39-FFBBFF1F1B47' producer set destination to 'DefaultHTTPS'. Method name is: login 'direct_http_channel' channel endpoint set to http://localhost/pm_server/pm/ '5A5D3012-7717-E3C2-9B39-FFBBFF1F1B47' producer sending message 'E32C7199-72C1-B258-B483-FFBC1641173D' 'direct_http_channel' channel sending message: (mx.messaging.messages::HTTPRequestMessage)#0 body = "&lt;se:Envelope xmlns:se="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;se:Header xmlns:sfns="urn:partner.soap.sforce.com"/&gt;&lt;se:Body&gt;&lt;login xmlns="urn:partner.soap.sforce.com" xmlns:ns1="sobject.partner.soap.sforce.com"&gt;&lt;username&gt;simon.palmer@dialectyx.com&lt;/username&gt;&lt;password&gt;******&lt;/password&gt;&lt;/login&gt;&lt;/se:Body&gt;&lt;/se:Envelope&gt;" clientId = (null) contentType = "text/xml; charset=UTF-8" destination = "DefaultHTTPS" headers = (Object)#1 httpHeaders = (Object)#2 Accept = "text/xml" SOAPAction = """" X-Salesforce-No-500-SC = "true" messageId = "E32C7199-72C1-B258-B483-FFBC1641173D" method = "POST" recordHeaders = false timestamp = 0 timeToLive = 0 url = "https://na3.salesforce.com/services/Soap/u/14.0" '5A5D3012-7717-E3C2-9B39-FFBBFF1F1B47' producer connected. Method name is: login Error: Ignoring policy file at https://na3.salesforce.com/crossdomain.xml due to meta-policy 'by-content-type'. '5A5D3012-7717-E3C2-9B39-FFBBFF1F1B47' producer acknowledge of 'E32C7199-72C1-B258-B483-FFBC1641173D'. responseType: Fault Saleforce Soap Fault: sf:INVALID_LOGIN INVALID_LOGIN: Invalid username, password, security token; or user locked out. Comunication Error : sf:INVALID_LOGIN : INVALID_LOGIN: Invalid username, password, security token; or user locked out. : [object Object] </code></pre> http://stackoverflow.com/questions/1705824/finding-cycle-of-3-nodes-or-triangles-in-a-graph/1705876#1705876 0 Answer by Simon for finding cycle of 3 nodes ( or triangles) in a graph Simon 2009-11-10T05:49:22Z 2009-11-10T05:49:22Z <p>That's an interesting problem. Given that you are using python you should post this question on the <a href="http://www.scipy.org/" rel="nofollow">scipy</a> (or <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a>) discussion forums.</p> http://stackoverflow.com/questions/1947290/excel-formula-auto-sum-for-the-same-types/1947391#1947391 Comment by Simon on Excel formula - auto sum for the same types Simon 2009-12-22T16:37:22Z 2009-12-22T16:37:22Z you can get distinct lists using INDEX, MATCH and COUNTIF. You aren't going to find a single formula which gives you everything you want with no effort. You are going to have to figure some bits out yourself. http://stackoverflow.com/questions/1944995/any-code-tips-for-speeding-up-random-reads-from-a-java-filechannel/1945037#1945037 Comment by Simon on Any code tips for speeding up random reads from a Java FileChannel? Simon 2009-12-22T15:15:18Z 2009-12-22T15:15:18Z 32 bit only I'm afraid, which is a limitation placed on me by customers. http://stackoverflow.com/questions/1944995/any-code-tips-for-speeding-up-random-reads-from-a-java-filechannel/1945144#1945144 Comment by Simon on Any code tips for speeding up random reads from a Java FileChannel? Simon 2009-12-22T15:14:46Z 2009-12-22T15:14:46Z Turns out pytables uses this and I use pytables in other projects. I had in fact recently contemplated re-implementing the whole thing in python so I could use numpy, scipy and pytables. The case is getting stronger. http://stackoverflow.com/questions/1944995/any-code-tips-for-speeding-up-random-reads-from-a-java-filechannel/1945285#1945285 Comment by Simon on Any code tips for speeding up random reads from a Java FileChannel? Simon 2009-12-22T15:13:27Z 2009-12-22T15:13:27Z good answer, thanks. http://stackoverflow.com/questions/1944995/any-code-tips-for-speeding-up-random-reads-from-a-java-filechannel/1945064#1945064 Comment by Simon on Any code tips for speeding up random reads from a Java FileChannel? Simon 2009-12-22T15:12:52Z 2009-12-22T15:12:52Z I like the idea, I need to noodle on it a bit to see how it would fit. In fact the file is the bottom left triangle of a very large square of numbers in which (row, col) and (col, row) have identical values. Originally I had the whole thing in memory as a 1-D array of doubles and I index them with some arithmetic which allows me to get at them randomly and without worrying whether I put the row or column first. I have tried to access them contiguously but I like your idea of small meta-rectangles. In the region of code where I do most reads the order is not important so that may work. http://stackoverflow.com/questions/1939921/filter-columns-in-flex-datagrid-using-checkbox/1940052#1940052 Comment by Simon on Filter columns in flex datagrid using CheckBox Simon 2009-12-22T07:40:16Z 2009-12-22T07:40:16Z To help with that I'd have to see the code you use to populate the combo box. In principle you could use a column list to populate the comboBox and then when you retrieve the selectedItem property you would have the DataGridColumn object. That would, however, imply you create a master list. http://stackoverflow.com/questions/1941442/looking-for-generic-solutions-for-blocking-io-issues-in-stackless-python Comment by Simon on Looking for generic solutions for blocking IO issues in Stackless Python Simon 2009-12-21T17:31:41Z 2009-12-21T17:31:41Z Why the closes? Of course this is programming related, it is about a release of a python language variant which has wide applicability. The fact that it was developed by a games company is irrelevant. Nobody closes android questions because it was made by a search company. http://stackoverflow.com/questions/1938713/flex-titlewindow-addchild-removes-original-object/1938807#1938807 Comment by Simon on Flex TitleWindow.addChild removes original object Simon 2009-12-21T09:13:44Z 2009-12-21T09:13:44Z That's unfortunate, it sounds like you have a more profound architectural issue which is somewhat at odds with how Flex/Flash works. @Patrick's answer may work, but I think you might do well to make a cleaner separation between data and presentation. http://stackoverflow.com/questions/1932920/what-have-you-actually-developed-or-contributed-to-the-science-of-computing Comment by Simon on What have you actually developed or contributed to the science of computing? Simon 2009-12-19T13:44:59Z 2009-12-19T13:44:59Z -1 Shakespeare didn't invent English. What exactly is the point of this question? Can you imagine Donald Knuth posting an answer? http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex/1930467#1930467 Comment by Simon on What is a good solution for calculating an average where the sum of all values exceeds a double's limits? Simon 2009-12-18T20:36:01Z 2009-12-18T20:36:01Z are there any concerns about precision of this method given the potentially large number of divisions? http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex Comment by Simon on What is a good solution for calculating an average where the sum of all values exceeds a double's limits? Simon 2009-12-18T20:32:56Z 2009-12-18T20:32:56Z I was using it in the vernacular sense, i.e. arithmetic mean. http://stackoverflow.com/questions/1927123/why-do-i-get-not-enough-storage-is-available-to-process-this-command-using-java/1927141#1927141 Comment by Simon on Why do I get "Not enough storage is available to process this command" using Java MappedByteBuffers? Simon 2009-12-18T14:01:33Z 2009-12-18T14:01:33Z An excellent and thorough answer, thanks very much for your time. http://stackoverflow.com/questions/1926902/flex-drawing-dynamically/1926939#1926939 Comment by Simon on Flex + Drawing dynamically Simon 2009-12-18T13:52:36Z 2009-12-18T13:52:36Z Can't you just use the contents of the name tag as the ID? http://stackoverflow.com/questions/1926902/flex-drawing-dynamically/1926939#1926939 Comment by Simon on Flex + Drawing dynamically Simon 2009-12-18T10:50:53Z 2009-12-18T10:50:53Z Really? Why? Each teacher and class is a node and they are connected by the one-to-many &quot;Teachs&quot; relationship on the Teacher. You can iterate through your XML and create those nodes and relationships without any changes to your data structure... http://stackoverflow.com/questions/1927123/why-do-i-get-not-enough-storage-is-available-to-process-this-command-using-java/1927141#1927141 Comment by Simon on Why do I get "Not enough storage is available to process this command" using Java MappedByteBuffers? Simon 2009-12-18T10:23:53Z 2009-12-18T10:23:53Z I'm obviously being a bit dim. I have a large file (much bigger than 2^32) and I was to get at chunks of it in a 32 bit environment (JVM/OS/etc.). My MappedByteBuffers never exceed (Integer.MAX_VALUE / 256) which means I'm never directly addressing anything greater than an int can handle. The first couple of mappngs work fine, subsequent ones fail. What am I failing to understand? How is a MappedByteBuffer supposed to be used? If it can never address something bigger than what can be fit into memory, what is its point?