User mobmad - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:19:34Z http://stackoverflow.com/feeds/user/76799 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817706/glassfish-hangs-when-serving-multiple-blob-images-from-an-imageservlet 0 Glassfish hangs when serving multiple blob-images from an imageservlet mobmad 2009-11-30T03:28:42Z 2009-11-30T10:07:32Z <p>In my JSP/HTML files i use the following servlet to get blob-images from the MySQL-database.</p> <pre><code>&lt;img src="/image?id=1" /&gt; </code></pre> <h2>Image servlet</h2> <p>This is mapped to a imageservlet, who:<br> - gets a stateless session-bean injected<br> - uses the session-bean to lookup a product, based on the id passed in to the servlet<br> - streams this image out as the response</p> <pre><code>public class Image extends HttpServlet { @EJB private ProductLocal productBean; protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { long id = 0; Product product = null; String possibleID = request.getParameter("id"); if(possibleID == null){ response.sendError(HttpServletResponse.SC_NOT_FOUND); return; } // Try to parse id try{ id = Long.parseLong(possibleID); product = productBean.getById(id); if(product == null) throw new NullPointerException("Product not found"); } catch(NumberFormatException e){ response.sendError(HttpServletResponse.SC_BAD_REQUEST); return; } catch(NullPointerException e){ response.sendError(HttpServletResponse.SC_NOT_FOUND); return; } // Serve image byte[] image = product.getImage(); response.setContentType(product.getImageContentType()); response.setContentLength(image.length); ServletOutputStream output = response.getOutputStream(); for(int i = 0; i &lt; image.length; i++){ output.write(image[i]); } output.flush(); output.close(); } } </code></pre> <h2>ProductBean:</h2> <pre><code>@Stateless public class ProductBean implements ProductLocal { @PersistenceContext(unitName="xxx") private EntityManager em; public Product getById(long id) { return em.find(Product.class, id); } } </code></pre> <h2>Product (Entity-bean)</h2> <pre><code>@Entity public class Product implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Lob private byte[] image; private String imageContentType; /* getters and setters */ } </code></pre> <h2>The problem</h2> <p>When iterating over a page of products, say 15, the servlet gets called 15 times and I consequently get the same result (although with different order on the IDs):</p> <p><img src="http://i45.tinypic.com/fxfdqt.jpg" alt="alt text"> </p> <p>Some images always hang until they time out (15 sec. shown in firebug above). The server is Glassfish v2.1 (integrated in Netbeans 6.7.1). At first the timeout was 30 sec, so I started setting different timeout values in Glassfish to narrow the problem. One of these timeouts were HttpService -> Keep Alive -> Timeout, which I sat (as the only one) to 15 sec. After restarting GF, firebug now reports the timeout after 15 sec. instead of the default 30. Since I put different timeouts in GF, I'm pretty sure the problem is related to Keep-Alive. Here is the rest of my settings in this tab:</p> <p><img src="http://i48.tinypic.com/v9fv6.jpg" alt="alt text"></p> <p>This is out of the box configuration from the version bundled with NetBeans, and I haven't done anything besides changing the timeout value. My question: is this caused by wrong settings in Glassfish, or problems with my ImageServlet or other code?</p> http://stackoverflow.com/questions/1817179/exclude-filter-from-certain-urls 0 Exclude filter from certain url's mobmad 2009-11-29T23:42:35Z 2009-11-29T23:53:54Z <p>I'm using a filter in web.xml to check if a user is logged in or not:</p> <pre><code>&lt;filter&gt; &lt;filter-name&gt;LoginFilter&lt;/filter-name&gt; &lt;filter-class&gt;com.mycompany.LoginFilter&lt;/filter-class&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;LoginFilter&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; </code></pre> <p>And this works like a charm until I have a stylesheet or image I want to exclude from this filter. I know one approach is to put everything that's protected inside <code>/private</code>or similar, and then set the url-pattern to: <code>&lt;url-pattern&gt;/private/*&lt;/url-pattern&gt;</code>. The downside to this is my URLs now looking like: <code>http://www.mycompany.com/private/mypage</code> instead of <code>http://www.mycompany.com/mypage</code>. Is there another solution to this problem, that let me keep my pretty-urls? </p> http://stackoverflow.com/questions/1802076/getting-the-include-path-to-a-file-in-php/1802138#1802138 1 Answer by mobmad for getting the "include path" to a file in PHP mobmad 2009-11-26T07:47:37Z 2009-11-26T07:47:37Z <p>Not sure if I understood exactly what you want, but how about:</p> <pre><code> $root = $_SERVER['DOCUMENT_ROOT']; $pathWithLeadingSlash = substr(__FILE__, strlen($root)); // or $pathWithoutLeadingSlash = substr(__FILE__, strlen($root) + 1); </code></pre> http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql/1796679#1796679 0 Answer by mobmad for UTF-8, PHP and XML Mysql mobmad 2009-11-25T12:41:28Z 2009-11-25T13:06:10Z <p>It seems you are "double encoding" Otivägen. You get this behaviour if Otivägen already is UTF-8, and run utf8_encode() on it again. Example:</p> <pre><code>$str = "Otivägen"; // already an UTF-8 string echo utf8_encode($str); // outputs Otivägen </code></pre> <p>I'm not sure we're the actual "double encoding" occurs, but it may be due to settings in your editor. My theory. Lets say you are running Aptana Studio: Your actual character set is set to ISO-8859-1 (in Aptana, you can check this by right clicking on a file and choose "properties". To set default character encoding for all projects, choose Preferences from Aptana main menu -> General -> workspace). If that's the case, the actual PHP source file where you have <code>$myxml</code> and its string <code>&lt;myxml&gt;&lt;node&gt;...</code> is detected to be ISO-8859-1, but $mystring received from the database is UTF-8. Your fixEncoding function would then run the else clause, since the $myxml as a whole is seen as ISO-8859-1 and not UTF-8. This results in double encoding the results from the database, and may be the cause to your problem. </p> <p>Check the encoding of your actual source file in your editor, and verify that it is set to UTF-8. Alternatively, experiment with applying or removing fixEncoding/utf8_encode/utf8_decode to $myxml. Observe the results and see what needs to be done to the value Otivägen right.</p> http://stackoverflow.com/questions/1780341/do-i-need-class-elements-in-persistence-xml/1780437#1780437 0 Answer by mobmad for Do I need <class> elements in persistence.xml? mobmad 2009-11-22T23:41:02Z 2009-11-22T23:53:06Z <p>In Java SE enviroment, by specification you have to specify all classes as you have done: "A list of all named managed persistence classes must be specified in Java SE environments to insure portability" and "If it is not intended that the annotated persistence classes contained in the root of the persistence unit be included in the persistence unit, the exclude-unlisted-classes element should be used. The exclude-unlisted-classes element is not intended for use in Java SE environments." (JSR-000220 6.2.1.6). In Java EE enviroments, you do not have to do this as the provider scans for annotations for you. </p> <p>Unofficially, you can try to set <code>&lt;exclude-unlisted-classes&gt;false&lt;/exclude-unlisted-classes&gt;</code> in your persistence.xml. This parameter defaults to <code>false</code> in EE and <code>true</code>in SE. Both <a href="http://wiki.eclipse.org/Packaging_and_Deploying_EclipseLink_JPA_Applications_%28ELUG%29#How_to_Specify_Managed_Classes" rel="nofollow">EclipseLink</a> and <a href="http://www.oracle.com/technology/products/ias/toplink/jpa/howto/java-se-usage.html" rel="nofollow">Toplink</a> supports this as far I can tell. But you should not rely on it working in SE, according to spec, as stated above.</p> <p>You can TRY the following (may or may not work in SE-enviroments):</p> <pre><code>&lt;persistence-unit name="eventractor" transaction-type="RESOURCE_LOCAL"&gt; &lt;exclude-unlisted-classes&gt;false&lt;/exclude-unlisted-classes&gt; &lt;properties&gt; &lt;property name="hibernate.hbm2ddl.auto" value="validate" /&gt; &lt;property name="hibernate.show_sql" value="true" /&gt; &lt;/properties&gt; &lt;/persistence-unit&gt; </code></pre> http://stackoverflow.com/questions/1751553/how-to-scale-markers-on-android-and-set-shadow-and-ontap-correctly 0 How to scale markers on Android, and set shadow and onTap correctly mobmad 2009-11-17T20:30:10Z 2009-11-17T20:30:10Z <p>I'm scaling markers on a MapView with the following code</p> <pre><code>OverlayItem oi = new OverlayItem(point,"Title", "Desc"); oi.setMarker(getCustomMarker(0.5f, 0.5f)); itemizedOverlay.addOverlay(oi); </code></pre> <p>and:</p> <pre><code>private BitmapDrawable getCustomMarker(float scaleWidth, float scaleHeight){ int width = originalMarker.getWidth(); int height = originalMarker.getHeight(); Matrix matrix = new Matrix(); matrix.postScale(scaleWidth, scaleHeight); Bitmap bitmap = Bitmap.createBitmap(originalMarker, 0, 0, width, height, matrix, true); BitmapDrawable bm = new BitmapDrawable(bitmap); bm.setBounds(0,0,bitmap.getWidth(),bitmap.getHeight()); return bm; } </code></pre> <p>which works, but the shadow below the marker has wrong offset when scaled. Also; i override the <code>public boolean onTap(int index)</code> in ItemizedOverlay to detect taps on the markers, but it seems inaccurate. I can click some range outside the marker and still trigger onTap...</p> http://stackoverflow.com/questions/1744961/using-maps-on-windows-mobile 0 Using maps on Windows Mobile mobmad 2009-11-16T21:26:22Z 2009-11-16T21:36:46Z <p>I'm experimenting with maps on different mobile platforms. Getting Google Maps to work on Android was easy, following this <a href="http://developer.android.com/guide/tutorials/views/hello-mapview.html" rel="nofollow">tutorial</a>. Getting the same to work on Windows Mobile is a different matter. Any suggestions on how to do this?</p> <ul> <li>Google Maps API doesn't seem to support Windows Mobile. Guess I could try using Google Static Maps, but <a href="http://code.google.com/intl/nb/apis/maps/faq.html#mapsformobile" rel="nofollow">this FAQ</a> entry states: "Note that it is not permitted to use the Static Maps API outside of browser based applications."</li> <li><p>I gave a shot at <a href="http://msdn.microsoft.com/en-us/library/dd483215.aspx" rel="nofollow">Developing a Mobile Application Using Bing Maps Web Services</a>, but this seems to require a "Bing Maps for Enterprise Account" which is not free for commercial use? I signed up for a free developer account, but when adding the reference to <code>https://staging.common.virtualearth.net/find-30/common.asmx</code> VS2008 returns:</p> <blockquote> <p>There was an error downloading '<a href="https://staging.common.virtualearth.net/find-30/common.asmx" rel="nofollow">https://staging.common.virtualearth.net/find-30/common.asmx</a>'. The request failed with HTTP status 400: Bad Request. There was an error downloading '<a href="https://staging.common.virtualearth.net/find-30/common.asmx/" rel="nofollow">https://staging.common.virtualearth.net/find-30/common.asmx/</a>$metadata'. The request failed with HTTP status 400: Bad </p> </blockquote></li> </ul> <p>...so I haven't completed that tutorial yet. Anyways, Bing Maps seems more cumbersome to develop for compared to Google Maps. My question is, what's the easiest way to get maps working for your own applications on Windows Mobile?</p> http://stackoverflow.com/questions/1617857/soapfault-exception-http-unsupported-media-type-when-accessing-java-web-servic 1 SoapFault exception: [HTTP] Unsupported Media Type when accessing Java web-service from PHP mobmad 2009-10-24T12:17:09Z 2009-10-26T12:40:11Z <p>I'm trying to connect to a Java web-service using the <code>Zend_Soap_Client</code> from the Zend Framework v1.9.0:</p> <pre><code>&lt;?php include( 'Zend/Loader/Autoloader.php'); $autoloader = Zend_Loader_Autoloader::getInstance(); $client = new Zend_Soap_Client('https://webservice.com/webservice-war/webservice?wsdl' , array('encoding'=&gt; 'UTF-8')); try{ $result = $client-&gt;find_customer(array('username' =&gt; 'user', 'password' =&gt; '123'), array('city' =&gt; 'some city')); } catch(Exception $e){ echo $e; } echo '&lt;pre&gt;' . $client-&gt;getLastRequestHeaders() . '&lt;/pre&gt;'; ?&gt; </code></pre> <p>Outputs:</p> <pre><code>SoapFault exception: [HTTP] Unsupported Media Type in /Library/ZendFramework-1.9.0/library/Zend/Soap/Client.php:937 Stack trace: #0 [internal function]: SoapClient-&gt;__doRequest('_doRequest(Object(Zend_Soap_Client_Common), '__doRequest('__soapCall('find_customer', Array, NULL, NULL, Array) #6 [internal function]: Zend_Soap_Client-&gt;__call('find_customer', Array) #7 /Users/webservicetest/index.php(8): Zend_Soap_Client-&gt;find_customer(Array, Array) #8 {main} POST /webservice-war/webservice HTTP/1.1 Host: webservice.com Connection: Keep-Alive User-Agent: PHP-SOAP/5.2.6 Content-Type: application/soap+xml; charset=utf-8; action="" Content-Length: 315 </code></pre> <p>Any idea what could be wrong? The url is correct, since I get the availible functions when calling</p> <pre><code>$client-&gt;getFunctions() </code></pre> http://stackoverflow.com/questions/1559219/display-local-image-bufferedimage-inside-jtextpane 0 Display local image (BufferedImage?) inside JTextPane mobmad 2009-10-13T09:51:43Z 2009-10-13T15:21:06Z <p>I'm trying to display a local image in package1/package2/myImage.gif in a JTextPane. I first tried to load the resource into a BufferedImage:</p> <pre><code>BufferedImage image = ImageIO.read(ClassLoader.getSystemResourceAsStream( "package1/package2/myImage.gif")); </code></pre> <p>But then I didn't know how to use that in the setText method, so I tried just pointing to the image in a img-tag instead:</p> <pre><code>textpane.setText("Some text &lt;img src=\"package1/package2/myImage.gif\" /&gt;," + " and some more text"); </code></pre> <p>This diplay a broken image when run. I'm pretty sure the path is correct, since loading it into the BufferedImage works. </p> <p>How can I use local resources like the image, along with other text, in a HTML-enabled JTextPane? </p> http://stackoverflow.com/questions/635703/getting-basepath-from-view-in-zend-framework 0 Getting basepath from view in zend framework mobmad 2009-03-11T18:12:06Z 2009-07-04T12:40:31Z <p>Case: you're developing a site with Zend Framework and need relative links to the folder the webapp is deployed in. I.e. <code>mysite.com/folder</code> online and <code>localhost:8080</code> under development.</p> <p>The following works nice in controllers regardless of deployed location: </p> <pre><code>$this-&gt;_helper-&gt;redirector-&gt;gotoSimple($action, $controller, $module, $params); </code></pre> <p>And the following inside a viewscript, ie. index.phtml: </p> <pre><code>&lt;a href="&lt;?php echo $this-&gt;url(array('controller'=&gt;'index', 'action' =&gt; 'index'), null, true); ?&gt;"&gt; </code></pre> <p>But how do I get the correct basepath when linking to images or stylesheets? (in a layout.phtml file, for example): </p> <pre><code>&lt;img src='&lt;?php echo WHAT_TO_TYPE_HERE; ?&gt;images/logo.png' /&gt; </code></pre> <p>and </p> <pre><code>$this-&gt;headLink()-&gt;appendStylesheet( WHAT_TO_TYPE_HERE . 'css/default.css'); </code></pre> <p><code>WHAT_TO_TYPE_HERE</code> should be replaced with something that gives </p> <pre><code>&lt;img src="/folder/images/logo.png /&gt;` on mysite.com and `&lt;img src="/images/logo.png /&gt; </code></pre> <p>on localhost</p> http://stackoverflow.com/questions/821201/is-there-a-better-way-to-debug-sql 5 Is there a better way to debug SQL? mobmad 2009-05-04T17:59:40Z 2009-06-09T12:34:27Z <p>I have worked with SQL for several years now, primarily MySQL/PhpMyAdmin, but also Oracle/iSqlPlus and PL/SQL lately. I have programmed in PHP, Java, ActionScript and more. I realise SQL isn't an imperative programming language like the others - but why do the error messages seem so much less specific in SQL? In other environments I'm pointed straight to the root of the problem. More often that not, MySQL gives me errors like "error AROUND where u.id = ..." and prints the whole query. This is even more difficult with stored procedures, where debugging can be a complete nightmare.</p> <p>Am I missing a magic tool/language/plugin/setting that gives better error reporting or are we stuck with this? I want a debugger or language which gives me the same amount of control that Eclipse gives me when setting breakpoints and stepping trough the code. Is this possible?</p> http://stackoverflow.com/questions/899803/have-i-implemented-a-n-tier-application-with-mvc-correctly 2 Have I implemented a n-tier application with MVC correctly? mobmad 2009-05-22T20:18:23Z 2009-05-22T22:34:40Z <p>Being pretty unfamiliar with design patterns and architecture, I'm having trouble explaining to others exactly how my latest application is designed. I've switched between thinking it's a pure n-tier, pure MVC and n-tier with MVC in the presentation layer. Currently I think the latter is correct, but I want thoughts from more experienced developers. </p> <h1>How it works: </h1> <ol> <li>Browser sends HTTP request to Tomcat. Maps the request via web.xml to a servlet (which I call controller)</li> <li>The controller instantiates one or more business object and calls methods on these, i.e. <code>customerBO.getById(12)</code> which again will perform business logic/validation before calling one or more DAO methods, i.e. <code>customerDAO.getById(12)</code>. The BO returns a list of CustomerVO's to the controller</li> <li>The controller prepares attributes for the view (JSP) (<code>request.setAttribute("customers", customers);</code>) and chooses a .jsp file to use which in turn will iterate the list and render XHTML back to the browser. </li> </ol> <h1>Structure (my proposal/understanding)</h1> <p><strong>Presentation tier</strong>: currently using what I think is a MVC web-implementation: servlets (controllers), jsp (views) and my own implementation of OO XHTML forms (ie. CustomerForm) lies here. It should be possible to use a Swing/JavaFX/Flex GUI by switching out this presentation layer and without the need to change anything on the layers below. </p> <p><strong>Logic tier</strong>: Divided into two layers, with Business Objects (BO) on top. Responsible for business logic, but I haven't found much to put in here besides input validation since the application mostly consists of simple CRUD actions... In many cases the methods just call a method with the same name on the DAO layer.</p> <p>DAO classes with CRUD methods, which again contacts the data tier below. Also has a convertToVO(ResultSet res) methods which perform ORM from the database and to (lists of) value objects. All methods take value objects as input, i.e. customerDAO->save(voter) and return the updated voter on success and null on failure.</p> <p><strong>Data tier</strong>: At the bottom data is stored in a database or as XML files. I have not "coded" anything here, except some MySQL stored procedures and triggers.</p> <h1>Questions (besides the one in the title):</h1> <ol> <li>The M in MVC. I'm not sure if I can call this n-tier MVC when the models are lists/VO's returned from business objects in the logic tier? Are the models required to reside within the presentation layer when the controller/view is here? And can the form templates in the presentation layer be called models? If so; are both the forms and lists from BO to be considered as the M in MVC?</li> <li>From my understanding, in MVC the view is supposed to observe the model and update on change, but this isn't possible in a web-application where the view is a rendered XHTML page? This in turn leads me to the question: is MVC implemented differently for web-applications vs. regular desktop applications?</li> <li>I'm not using a Front Controller pattern when all HTTP requests are explicitly mapped in web.xml right? To use Front Controller I need to forward all requests to a standard servlet/controller that in turn evalutes the request and calls another controller?</li> <li>The Business Layer felt a little "useless" in my application. What do you normally put in this layer/objects? Should one always have a business layer? I know it should contain "business logic", but what is this exactly? I just perform input validation and instantiate one or more DAOs and calls the appropriate methods on them... </li> </ol> <p>I realize there is MVC frameworks such as Struts for Java, but since this my first Java web-application I tried to get a deeper understanding of how things work. Looking in retrospect I hope you can answer some of the questions I stumbled upon.</p> http://stackoverflow.com/questions/681494/java-web-starter-ami 1 Java Web Starter AMI mobmad 2009-03-25T13:06:09Z 2009-05-08T22:00:02Z <p>I'm trying to follow the tutorial on <a href="http://ttlnews.blogspot.com/2009/01/setting-up-amazon-ami-with-java-and.html" rel="nofollow">http://ttlnews.blogspot.com/2009/01/setting-up-amazon-ami-with-java-and.html</a> but can't find the <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1993&amp;categoryID=101" rel="nofollow">Java Web Starter AMI</a> (ami-1c54b075) when searcing for AMI in the AWS console. Anyone now why this could be? It seems to be one of the most popular AMIs as well (<a href="http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=171" rel="nofollow">see infobox on the right side</a>), so seems strange I cant find it...</p> http://stackoverflow.com/questions/646272/style-form-elements-in-zend-framework-with-a-default-style 0 Style form elements in Zend Framework with a default style mobmad 2009-03-14T17:08:25Z 2009-05-06T18:01:56Z <p>I'm currently styling form elements with a custom CSS class to style text inputs differently, as in:</p> <pre><code>$submit = new Zend_Form_Element_Submit('login'); $submit-&gt;setLabel('Log in') -&gt;setAttrib('class', 'submit'); </code></pre> <p>And</p> <pre><code>$username = new Zend_Form_Element_Text('username'); $username-&gt;setLabel('Username') -&gt;setAttrib('class', 'textinput'); </code></pre> <p>But let's say I have multiple forms, and want to style all text elements with <code>textinput</code> and all submit elements with <code>submit</code> by default. Is there anyway to do this globally?</p> http://stackoverflow.com/questions/824647/how-to-allow-file-uploading-outside-home-directory-with-ssh 0 How to allow file uploading outside home directory with SSH? mobmad 2009-05-05T12:30:13Z 2009-05-05T12:35:34Z <p>I'm running a Fedora 8 Core server. SSH is enabled and I can login with Transmit (FTP client) on port 22. When logged in, I can successfully upload files to the users home directory. Outside the home directory I can only browse files, not upload/change anything. How can I allow file uploading to a specific directory outside the users home directory?</p> http://stackoverflow.com/questions/820257/java-export-properties-file-to-build-folder 2 Java export .properties file to build folder? mobmad 2009-05-04T14:04:48Z 2009-05-04T14:18:32Z <p>Hello. I have just created a .properties file in Java and got it to work. The problem is where/how to store it. I'm currently developing a "Dynamic Web project" in Eclipse, and have stored the properties file under build/classes/myfile.properties, and I'm using this code to load it:</p> <pre><code>properties.load(this.getClass().getResourceAsStream("/myfile.properties")); </code></pre> <p>But won't this folder get truncated when building the project, or not included when exporting as a WAR file? How can I add this file to the build path, so it will be added to /build/classes on every export (in eclipse)?</p> http://stackoverflow.com/questions/816980/run-startupscript-on-fedora-8-core 0 Run startupscript on Fedora 8 Core mobmad 2009-05-03T12:48:17Z 2009-05-03T13:51:55Z <p>Hello. I'm using Amazon EC2 with a Fedora 8 Core AMI. I have an EBS volume mounted at /ebsmnt, and a startupscript located at /ebsmnt/startupscript.sh . Currently I have to login to the server, cd to /ebsmnt/ and run the script manually. How can I make Fedora run this script automatically at startup, without any interaction from me? (by having it on /ebsmnt/ I don't have to recompile the AMI everytime I wish to make changes to the script). I'm not too familiar with *nix, so a step by step guide would be very much appreciated.</p> http://stackoverflow.com/questions/806282/implementing-event-generator-idiom-in-java 0 Implementing Event-Generator Idiom in Java mobmad 2009-04-30T10:16:56Z 2009-04-30T16:59:12Z <p>I'm trying to implement the Event Generator Idiom (<a href="http://www.javaworld.com/javaworld/jw-09-1998/jw-09-techniques.html" rel="nofollow">http://www.javaworld.com/javaworld/jw-09-1998/jw-09-techniques.html</a>). I find things to be a bit "odd" when it comes to the observable class though. Let's say I have the following classes:</p> <pre> interface BakeryListener + orderReceived(BakeryEvent event) + orderProcessing(BakeryEvent event) + orderFinished(BakeryEvent event) + orderDelivered(BakeryEvent event) LogView, OrderReadyView etc. implements BakeryListener Creates a GUI for each own use Order VO / DTO object, used as the source in BakeryEvent BakeryDAO (the observable) - orders : Vector - listeners : Vector + takeOrder, cancelOrder, bake and other regular DAO methods, triggering an event by calling fireEvent + addBakeryListener(BakeryEvent event) + removeBakeryListener(BakeryEvent event) - fireEvent(Order source, EVENTTYPE????) BakeryGUI Creates/gets a reference to BakeryDAO. Creates and attaches LogView, OrderReadyView as listeners on BakeryDAO. </pre> <p>In the link I gave initially he recommends to "Name the event propagator method fire[listener-method-name].". I find this to be redundant: making a snapshot and iterating over the listeners in each fire-method, when the only thing changing is which method to call on the interface. Thus I have made a single fireEvent method, and it is working sort of. The problem is to keep the datatype of the event parameter in fireEvent "in sync" with the methods defined in BakeryListeners. Currently the fireEvent looks like this (excerpt):</p> <pre> for(BakeryListener listener : copyOfListeners){ if(eventType.equals("received")) listener.orderReceived(event); else if(eventType.equals("processing")) listener.orderProcessing(event); } </pre> <p>... etc. I guess I could use an enum instead of a string to make it impossible to call fireEvent with an eventType that doesn't exist, but I still have to map Type.RECEIVED to listener.orderReceived etc?</p> <p>Is it possible for the fireEvent method to take the BakeryListeners methods as a parameter? I.e (pseudo-code) method declaration: </p> <pre><code>fireEvent(BakeryListeners.methods eventType, Order source) </code></pre> <p>and then just call the appropriate method directly inside fireEvent(without if/switching): </p> <pre><code>call(listener, eventType( source)) </code></pre> <p>Then it also would be impossible to create a event who isn't defined in the interface BakeryDAO.takeOrder() -> fireEvent(eventWhoDoesntExist) -> exception?</p> <p>Is it possible to do this in Java? Or a better way if I've understood things wrong?</p> http://stackoverflow.com/questions/765349/how-to-see-the-print-media-css-in-firebug/765358#765358 8 Answer by mobmad for How to see the print media CSS in Firebug? mobmad 2009-04-19T12:41:01Z 2009-04-19T12:41:01Z <p>What about Web Developer Toolbar? https://addons.mozilla.org/en-US/firefox/addon/60 , when installed go to CSS -> Display CSS by media type -> Print</p> http://stackoverflow.com/questions/704855/software-design-vs-software-architecture 5 Software design vs. software architecture mobmad 2009-04-01T10:00:50Z 2009-04-01T19:58:17Z <p>Could someone explain the difference between software design and software architecture? More specifically; if you tell someone to present you the 'design' - what would you expect them to present? Same goes for 'architecture'. </p> <p>My current understanding is: </p> <p>design: UML diagram/flow chart/simple wireframes (for UI) for a specific module/part of the system</p> <p>architecture: component diagram (showing how the different modules of the system communicates with each other and other systems), what language is to be used, patterns...? </p> <p>Correct me if I'm wrong. I see Wikipedia has articles on <a href="http://en.wikipedia.org/wiki/Software_design" rel="nofollow">http://en.wikipedia.org/wiki/Software_design</a> and <a href="http://en.wikipedia.org/wiki/Software_architecture" rel="nofollow">http://en.wikipedia.org/wiki/Software_architecture</a>, but I'm not sure if I have understood them correctly.</p> http://stackoverflow.com/questions/694759/firefox-wmode-and-fscommand/695034#695034 1 Answer by mobmad for Firefox, wmode and fscommand mobmad 2009-03-29T17:51:53Z 2009-03-29T17:51:53Z <p>@Theo.T, thanks for the tip. It didn't solve my problem though, but searching around for how to use ExternalInterface led me to a page saying IE wouldn't receive calls from flash when the container was hidden. My container wasn't hidden, but the height was set to 0:</p> <pre><code>&lt;div id="flashcontainer" style="height:0"&gt; </code></pre> <p>Setting the height to 1px solved the problem and Firefox now successfully receives the calls from Flash</p> http://stackoverflow.com/questions/694759/firefox-wmode-and-fscommand 0 Firefox, wmode and fscommand mobmad 2009-03-29T14:59:32Z 2009-03-29T17:51:53Z <p>Hello, I'm using SWFObject to embed flash on my site.</p> <pre><code>var so = new SWFObject("file.swf", "file", "100%", "100%", "8", "#FFFFFF"); so.addParam("wmode", "opaque"); so.addParam("allowscriptaccess", "always"); so.write(container); </code></pre> <p>This works like a charm in all browsers as far I can tell, but I'm also using fscommand from flash, and thus I'm having a function:</p> <pre><code>function file_DoFSCommand(command, args) { alert("It works!"); } </code></pre> <p>And this also works in all browsers I tested, except Firefox on windows, where the file_DoFSCommand doesn't get called (but the flash is displayed). Firefox mac and other browsers display "It works!" as expected. Very strange. If I remove "wmode", "opaque" it suddenly works, but then my css menu gets below the Flash so that's not an option. wmode = transparent doesn't seem to change anything. </p> <p>Setting the so.addParam("allowscriptaccess", "never"); makes the other browsers behave like FF on windows when wmode is set. </p> <p>Any suggestions why FF won't work?</p> http://stackoverflow.com/questions/659657/secure-php-file-uploading 0 Secure PHP file uploading mobmad 2009-03-18T19:00:46Z 2009-03-19T09:23:42Z <p>I'm trying to develop a file uploading module on our new site that allows you to upload <em>any</em> file to our servers. The uploaded file is uploaded to <code>/files</code>, in which the following .htaccess to prevent users from executing i.e a .php file:</p> <pre><code>&lt;Files *.*&gt; ForceType applicaton/octet-stream &lt;/Files&gt; </code></pre> <p>This triggers the browsers download window (at least in FF and Safari), but is it safe to assume the file won't be run on the server using this method? If not, how would you implement such a solution? </p> http://stackoverflow.com/questions/647819/dojo-resize-and-delete-element-on-animation-complete/649832#649832 0 Answer by mobmad for Dojo resize and delete element on animation complete mobmad 2009-03-16T10:10:07Z 2009-03-16T10:10:07Z <p>SebaGR, thank you for putting me in the right direction. The padding/margin did indeed have something to say stopping the animation half-ways. I still had problems with text inside the element, and deletion onEnd, but eventually found the answer myself. I also added a wrapper-div with <code>.information_messages</code> to allow for multiple <code>.information_message</code> elements. Final result follows:</p> <p>Javascript:</p> <pre><code>function hide(id){ dojo.byId(id).style.overflow = 'hidden'; dojo.animateProperty({ node: id, duration: 500, properties: { height: {start: dojo.contentBox(id).h, end: 0}, margin: {end: 0}, marginBottom: {end: 0}, padding: {start: 10, end: 0}, paddingLeft: {end: 10 }, paddingRight: {end: 10 }, borderWidth: {start: 1, end: 0} }, onEnd: function(){ dojo.query('#' + id).orphan(); // when all information_message elements are deleted, delete // the information_messages container as well. Animate // padding change to prevent sudden 'jump' on deletion. if(dojo.query('.information_message').length == 0){ dojo.animateProperty({ node: dojo.query('#information_messages')[0], duration: 500, properties: { padding: {start: 5, end: 0} }, onEnd: function(){ dojo.query('#information_messages').orphan(); } }).play(); } } }).play(); } </code></pre> <p>HTML:</p> <pre><code>&lt;div id="information_messages"&gt; &lt;div class="information_message success" id="im1"&gt; &lt;a href="javascript:hide('im1');" class="right"&gt;Hide&lt;/a&gt; Success message 1 &lt;/div&gt; &lt;div class="information_message error" id="im2"&gt; &lt;a href="javascript:hide('im2');" class="right"&gt;Hide&lt;/a&gt; Error message 1 &lt;/div&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code>#information_messages { padding: 5px; } .information_message { margin-bottom:3px; } .error { border: 1px solid #b2110a; background-color: #f3dddc; padding: 10px; } .success { border: 1px solid #177415; background-color: #d6f6d5; padding: 10px; } </code></pre> http://stackoverflow.com/questions/647819/dojo-resize-and-delete-element-on-animation-complete 0 Dojo resize and delete element on animation complete mobmad 2009-03-15T13:37:48Z 2009-03-16T10:10:07Z <p>With a div like this:</p> <pre><code>&lt;div id="im1" class="information_message error"&gt;Error message here &lt;a href="javascript:hide('im1')"&gt;Hide&lt;/a&gt;&lt;/div&gt; </code></pre> <p>And the following dojo/javascript code:</p> <pre><code>function hide(id){ id.innerHTML = ''; dojo.animateProperty({ node: id, duration: 500, properties: { height: {end: 0} }, onEnd: function(){ id.orphan(); } }).play(); } </code></pre> <p>I'm trying to do the following:</p> <ol> <li>Animate the resize of the div's height to 0</li> <li>Delete the element from DOM afterwards</li> </ol> <p>But currently the text doesn't disappear, the animation animates only half-way and the div doesn't get deleted upon animation complete. What's the correct javascript code to accomplish my goals?</p> http://stackoverflow.com/questions/1817706/glassfish-hangs-when-serving-multiple-blob-images-from-an-imageservlet/1818419#1818419 Comment by mobmad on Glassfish hangs when serving multiple blob-images from an imageservlet mobmad 2009-11-30T14:57:48Z 2009-11-30T14:57:48Z Fetching the bean inside each request (inside doGet) didn't seem to make a difference. I tried to take a thread dump, but have never done so before. I'm using OSX, and tried &quot;kill -3 &lt;pid&gt;&quot; as the Glassfish manual suggest, but nothing appeared in the domain1/logs. I sucessfully ran the profiler from NetBeans, but I'm not sure what to look for. The threads waiting were a bunch of timers, and &quot;MySQL cancelation request&quot; http://stackoverflow.com/questions/1817179/exclude-filter-from-certain-urls/1817192#1817192 Comment by mobmad on Exclude filter from certain url's mobmad 2009-11-30T02:53:30Z 2009-11-30T02:53:30Z It actually worked with chain.doFilter(request, response). The reason I got the start-page all the time was due to the start-page having the url-pattern set to /. When I made sure no servlets we're mapped to /, this actually worked :-) http://stackoverflow.com/questions/1817179/exclude-filter-from-certain-urls/1817192#1817192 Comment by mobmad on Exclude filter from certain url's mobmad 2009-11-30T00:09:05Z 2009-11-30T00:09:05Z Yes, I've tried that to implement that approach. I sucessfully detected the URLs, but I'm unsure what to do next. In the filter body I have tried a) saying &quot;return&quot; and that (not suprisingly) returned a blank page. b) chain.doFilter(request,response); which resulted in the start-page being loaded of all things. Could you give an example on how the filter body should look like when excluding? http://stackoverflow.com/questions/1814173/declare-a-function-in-php-using-a-string Comment by mobmad on Declare a Function in PHP Using a String? mobmad 2009-11-29T00:20:58Z 2009-11-29T00:20:58Z Would help to understand why you want to do this. What are you trying to accomplish? http://stackoverflow.com/questions/1617857/soapfault-exception-http-unsupported-media-type-when-accessing-java-web-servic/1624442#1624442 Comment by mobmad on SoapFault exception: [HTTP] Unsupported Media Type when accessing Java web-service from PHP mobmad 2009-10-26T17:21:32Z 2009-10-26T17:21:32Z More specific: <a href="http://framework.zend.com/issues/browse/ZF-5286" rel="nofollow">framework.zend.com/issues/browse/ZF-5286</a> . Solved by setting 'soap_version' =&gt; SOAP_1_1 in options, making the request get passed by text/xml instead of application/soap+xml http://stackoverflow.com/questions/646272/style-form-elements-in-zend-framework-with-a-default-style/830896#830896 Comment by mobmad on Style form elements in Zend Framework with a default style mobmad 2009-05-07T18:17:07Z 2009-05-07T18:17:07Z I'm aware I can style elements with CSS, but if I remember correct and <a href="http://reference.sitepoint.com/css/attributeselector" rel="nofollow">reference.sitepoint.com/css/attributeselector/&hellip;</a> is correct as well, the attribute selector won't work in IE. Hence I can't use this solution. http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps/138950#138950 Comment by mobmad on How to get UTF-8 working in java webapps? mobmad 2009-05-06T12:07:53Z 2009-05-06T12:07:53Z fantastic! Excellent answer which solved my encoding problem. Thanks! http://stackoverflow.com/questions/821201/is-there-a-better-way-to-debug-sql Comment by mobmad on Is there a better way to debug SQL? mobmad 2009-05-04T18:17:57Z 2009-05-04T18:17:57Z @lothar: added new paragraph, hoping to clarify http://stackoverflow.com/questions/821201/is-there-a-better-way-to-debug-sql Comment by mobmad on Is there a better way to debug SQL? mobmad 2009-05-04T18:12:53Z 2009-05-04T18:12:53Z updated question to answer S.Lott http://stackoverflow.com/questions/816980/run-startupscript-on-fedora-8-core/817106#817106 Comment by mobmad on Run startupscript on Fedora 8 Core mobmad 2009-05-03T14:56:21Z 2009-05-03T14:56:21Z Don't know about start/stop, but adding the line to /etc/rc.local works. Thanks!