User Bernie Perez - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T15:28:50Zhttp://stackoverflow.com/feeds/user/1992http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/925012/query-on-object-id-in-vql/1799359#1799359-1Answer by Bernie Perez for Query on object id in VQLBernie Perez2009-11-25T19:21:51Z2009-11-25T19:21:51Z<p>You can try this,</p>
<pre><code>FundVQLQuery vql = FundVQLQuery (session,
"select selfoid from Employee where name = $1");
vql.bind ("Mr. Pickles");
HandleEnumeration e = vql.execute ();
while ( e.hasmoreHandles() ) {
Handle handle = e.nexthandle();
}
</code></pre>
<p>It will return all Employees with the name "Mr. Pickles", Then loop through them.</p>
http://stackoverflow.com/questions/27138/iphone-app-that-access-the-core-location-framework-over-web1iPhone app that access the Core Location framework over webBernie Perez2008-08-26T00:01:55Z2009-10-07T22:21:15Z
<p>I was wondering if I could access the iPhones Core Location framework over a website?</p>
<p>My goal is to build a webapp/website that the iPhone would browse to, then upload its current GPS location. This would be a simple site primary for friends/family so we could locate each other. I can have them manually enter lng/lat but its not the easiest thing to find. If the iPhone could display or upload this automatically it would be great.</p>
<p>I don't own a Mac yet (waiting for the new Mac Book Pro) but would like something a little more automatic right now. Once I have the mac I could download the SDK and build a better version later. For now a webapp version would be great if possible. Thanks.</p>
http://stackoverflow.com/questions/813618/creating-a-box-control-over-an-area-of-the-map-with-openlayers0Creating a Box Control over an area of the map with OpenLayersBernie Perez2009-05-01T22:48:36Z2009-07-23T16:44:13Z
<p>I am using <a href="http://openlayers.org/" rel="nofollow">OpenLayers</a> to create a box of interest with my program. I am using this code:</p>
<pre><code>var control = new OpenLayers.Control();
OpenLayers.Util.extend(control, {
draw: function () {
this.box = new OpenLayers.Handler.Box( control,
{"done": this.notice},
{keyMask: OpenLayers.Handler.MOD_SHIFT});
this.box.activate();
},
notice: function (bounds) {
areaSelected(bounds);
}
});
map.addControl(control);
</code></pre>
<p>to capture the "Shift Create a Box" <a href="http://dev.openlayers.org/releases/OpenLayers-2.7/doc/apidocs/files/OpenLayers/Control-js.html" rel="nofollow">control</a> and use the area selected as my area of interest. However the values come back as pixels. But I want <strong>Longitude and Latitude</strong>, not pixels. The Mouse Position <a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/MousePosition-js.html" rel="nofollow">control</a> does show the correct long & lat. I really don't care how to box is created, I just want an easy way for the user to select a area of the map and I need to get the lat & longs of the area. (Box, Circle, doesn't matter)</p>
http://stackoverflow.com/questions/998260/how-do-you-install-jdk/998643#9986432Answer by Bernie Perez for How do you install JDK?Bernie Perez2009-06-15T22:02:50Z2009-06-15T22:02:50Z<p>To setup Eclipse to use the JDK you must follow these steps.</p>
<p>1.<strong>Download the JDK</strong></p>
<p>First you have to download the JDK from Suns <a href="http://java.sun.com/javase/downloads/index.jsp" rel="nofollow">site</a>. (Make sure you download one of them that has the JDK)</p>
<p>2.<strong>Install JDK</strong></p>
<p>Install it and it will save some files to your hard drive.
On a Windows machine this could be in c:\program files\java\jdk(version number)</p>
<p>3.<strong>Eclipse Preferences</strong></p>
<p>Go to the Eclipse Preferences -> Java -> Installed JREs</p>
<p>4.<strong>Add the JDK</strong></p>
<p>Click Add JRE and you only need to located the Home Directory. Click <strong>Browse...</strong> and go to where the JDK is installed on your system. The other fields will be populated for you after you locate the home directory.</p>
<p>5.<strong>You're done</strong></p>
<p>Click Okay. If you want that JDK to be the default then put a Check Mark next to it in the Installed JRE's list.</p>
http://stackoverflow.com/questions/918007/learn-how-to-make-flair-for-my-users-javascript-snippets0Learn how to make Flair for my users (javascript snippets)Bernie Perez2009-05-27T21:05:37Z2009-05-27T21:16:38Z
<p>I wanted to give my users a little piece of JavaScript or HTML code that they could put on their site and show information about them. Kind of like StackOverFlows new feature <a href="http://stackoverflow.com/users/flair">Flair</a>.</p>
<p>I have an idea of how to code it. I was going to give them some JS with a HTML that had a DIV id="MySite_Info". Then the JS would go to my site and pull some JSON or XML and then fill in the data with a DIV in the HTML I gave them on their site.</p>
<p><strong>Is there a better way to do this?</strong> Or any examples online I should follow? Whats the best way to create these javascript snippets? (Not sure what the proper name is)</p>
http://stackoverflow.com/questions/813644/using-an-png-or-jpeg-for-map-with-openlayers-scale-zoom-problem0Using an PNG or JPEG for Map with OpenLayers (Scale/Zoom Problem)Bernie Perez2009-05-01T22:59:12Z2009-05-01T23:50:14Z
<p>I am using an image to display my map with OpenLayers. My JS code looks like this:</p>
<pre><code>map = new OpenLayers.Map('map');
var options = {numZoomLevels: 7,
isBaseLayer: true,
};
var globe = new OpenLayers.Layer.Image(
'Globe ESA',
'http://upload.wikimedia.org/wikipedia/commons/0/07/World_map_blank_black_lines_4500px.gif',
new OpenLayers.Bounds(-180, -90, 180, 90),
new OpenLayers.Size(4500, 2234),
options);
map.addLayers(globe);
markers = new OpenLayers.Layer.Markers("markers");
map.addLayer(markers);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.zoomToMaxExtent();
map.addControl(new OpenLayers.Control.MousePosition());
</code></pre>
<p>My CSS is:</p>
<pre><code>#map {
width: 640px;
height: 480px;
border: 1px solid black;
}
</code></pre>
<p>But I can't get OpenLayers to scale down the large image. It is always display at full resolution and I can't zoom out to display the whole globe. Help please.</p>
http://stackoverflow.com/questions/19035/javascript-load-order3Javascript Load OrderBernie Perez2008-08-20T22:53:25Z2009-03-02T10:18:57Z
<p>Hey I am working with both <a href="http://activemq.apache.org/ajax.html" rel="nofollow">amq.js</a> (ActiveMQ) and <a href="http://code.google.com/apis/maps/documentation/reference.html" rel="nofollow">Google Maps</a>. I load my scripts in this order</p>
<pre><code><head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>AMQ & Maps Demo</title>
<!-- Stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css"></link>
<!-- Google APIs -->
<script type="text/javascript" src="http://www.google.com/jsapi?key=abcdefg"></script>
<!-- Active MQ -->
<script type="text/javascript" src="amq/amq.js"></script>
<script type="text/javascript">amq.uri='amq';</script>
<!-- Application -->
<script type="text/javascript" src="application.js"></script>
</head>
</code></pre>
<p>However in my application.js it loads Maps fine but I get an error when trying to subscribe to a Topic with AMQ. AMQ depends on prototype which the error console in FireFox says object is not defined. I think I have a problem with using the amq object before the script is finished loading. <strong>Is there a way to make sure both scripts load before I use them in my application.js?</strong> </p>
<p>Google has this nice function call google.setOnLoadCallback(initialize); which works great. I'm not sure amq.js has something like this.</p>
http://stackoverflow.com/questions/600907/java-image-messes-up-when-i-run-the-jnlp-file/601097#6010971Answer by Bernie Perez for Java Image messes up when I run the .jnlp fileBernie Perez2009-03-02T02:38:08Z2009-03-02T02:47:55Z<p>Maybe your not loading your image properly. Don't use the relative location of the file. This will be different for each OS. Your image in the JAR you should be loaded correctly like this:</p>
<pre><code>URL url = this.getClass().getResource("image.jpg");
Image img = Toolkit.getDefaultToolkit().getImage(url);
</code></pre>
<p>This will load a file called image.jpg that is located in the same location as the class. You can also use things like File.pathSeparator if its in another location.</p>
<p>Use one of these two methods to load it as a resource:</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResource" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResource</a>(java.lang.String) <a href="http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResourceAsStream" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResourceAsStream</a>(java.lang.String)</p>
http://stackoverflow.com/questions/41233/java-and-sqlite/593137#5931376Answer by Bernie Perez for Java and SQLiteBernie Perez2009-02-27T00:49:07Z2009-02-27T00:49:07Z<p>Hey I found your questions while search for information with <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a> and Java. Just thought I add my answer which I also posted on my <a href="http://blog.rungeek.com/post/81611917/how-to-use-sqlite-with-java" rel="nofollow">blog</a>.</p>
<p>I have been coding in Java for a while know. I have also known about SQLite but never used it… Well I have have used it through other <a href="http://www.sqlite.org/famous.html" rel="nofollow">applications</a> but never in an app that I coded. So I needed it for a project this week and its so simple use!</p>
<p>First I found the website of <a href="http://www.zentus.com/" rel="nofollow">David Crawshaw</a> who has a <a href="http://www.zentus.com/sqlitejdbc" rel="nofollow">Java JDBC driver for SQLite</a>. Just add his <a href="http://files.zentus.com/sqlitejdbc/sqlitejdbc-v054.jar" rel="nofollow">JAR file</a> to your classpath and import java.sql.*</p>
<p>His test app will create a database file, send some SQL commands to create a table, store some data in the table, and read it back and display on console. It will create the <strong>test.db</strong> file in the root directory of the project.</p>
<pre><code>package com.rungeek.sqlite;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
public class Test {
public static void main(String[] args) throws Exception {
Class.forName("org.sqlite.JDBC");
Connection conn = DriverManager.getConnection("jdbc:sqlite:test.db");
Statement stat = conn.createStatement();
stat.executeUpdate("drop table if exists people;");
stat.executeUpdate("create table people (name, occupation);");
PreparedStatement prep = conn.prepareStatement(
"insert into people values (?, ?);");
prep.setString(1, "Gandhi");
prep.setString(2, "politics");
prep.addBatch();
prep.setString(1, "Turing");
prep.setString(2, "computers");
prep.addBatch();
prep.setString(1, "Wittgenstein");
prep.setString(2, "smartypants");
prep.addBatch();
conn.setAutoCommit(false);
prep.executeBatch();
conn.setAutoCommit(true);
ResultSet rs = stat.executeQuery("select * from people;");
while (rs.next()) {
System.out.println("name = " + rs.getString("name"));
System.out.println("job = " + rs.getString("occupation"));
}
rs.close();
conn.close();
}
}
</code></pre>
http://stackoverflow.com/questions/528007/eclipse-java-export-jar-include-referenced-libraries-without-fatjar/529202#5292020Answer by Bernie Perez for Eclipse Java; export jar, include referenced libraries, without fatjar.Bernie Perez2009-02-09T18:08:37Z2009-02-09T18:08:37Z<p>I think its version 3.3 of Eclipse (ganymede) that has Export as <strong>Runnable JAR file</strong>. Last time I tried it, it did include the referenced libraries and also un-jars all the jars.</p>
http://stackoverflow.com/questions/437382/how-does-relative-file-path-works-in-eclipse/440801#4408011Answer by Bernie Perez for How does relative file path works in Eclipse.Bernie Perez2009-01-13T21:09:04Z2009-01-13T21:09:04Z<p>This is really similar to another question.
<a href="http://stackoverflow.com/questions/6639/how-should-i-load-files-into-my-java-application">http://stackoverflow.com/questions/6639/how-should-i-load-files-into-my-java-application</a></p>
<p>How should I load my files into my Java Application?</p>
<p>You <strong>do not</strong> want to load your files in by:</p>
<pre><code>C:\your\project\file.txt
</code></pre>
<p>this is <strong>bad!</strong></p>
<p>You should use getResourceAsStream.</p>
<pre><code>InputStream inputStream = YourClass.class.getResourceAsStream(“file.txt”);
</code></pre>
<p>And also you should use <strong>File.pathSeparator()</strong>; which is the system-dependent path-separator character, represented as a string for convenience.</p>
http://stackoverflow.com/questions/435640/activemq-issue-with-queue-lookup/437115#4371150Answer by Bernie Perez for ActiveMQ: Issue with queue lookupBernie Perez2009-01-12T21:40:38Z2009-01-12T21:40:38Z<p>Hmm.. well when I want to listen to a Queue I usually do something like this.
(Imports from javax.jms)</p>
<p>Queue queue;</p>
<pre><code> // Connect to ActiveMQ
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(messageBrokerURL);
connection = factory.createConnection();
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
// List to Dummy Queue
queue = session.createQueue("DUMMY");
messageConsumer = session.createConsumer(queue);
messageConsumer.setMessageListener(queueHandler);
// Start the connection
connection.start();
</code></pre>
<p>And make sure that your Handler implements MessageListener.</p>
http://stackoverflow.com/questions/425017/starter-guide-for-apache-servicemix/425431#4254311Answer by Bernie Perez for Starter guide for Apache ServiceMixBernie Perez2009-01-08T19:01:11Z2009-01-08T19:01:11Z<p>I am still learning Apache ServiceMix myself. ESB's in generally are pretty complicated. The best book I found is "<a href="http://rads.stackoverflow.com/amzn/click/1933988215" rel="nofollow">Open-Source ESBs in Action</a>" published by Manning. It runs MVN/ANT to setup your environment and walks you through with some pretty basic examples. Let me know how you like it.</p>
http://stackoverflow.com/questions/422970/get-source-of-website-in-java/423077#4230773Answer by Bernie Perez for Get source of website in javaBernie Perez2009-01-08T02:45:14Z2009-01-08T03:32:36Z<p>You can get low level and just request it with a socket. In java it looks like</p>
<pre><code>// Arg[0] = Hostname
// Arg[1] = File like index.html
public static void main(String[] args) throws Exception {
SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault();
SSLSocket sslsock = (SSLSocket) factory.createSocket(args[0], 443);
SSLSession session = sslsock.getSession();
X509Certificate cert;
try {
cert = (X509Certificate) session.getPeerCertificates()[0];
} catch (SSLPeerUnverifiedException e) {
System.err.println(session.getPeerHost() + " did not present a valid cert.");
return;
}
// Now use the secure socket just like a regular socket to read pages.
PrintWriter out = new PrintWriter(sslsock.getOutputStream());
out.write("GET " + args[1] + " HTTP/1.0\r\n\r\n");
out.flush();
BufferedReader in = new BufferedReader(new InputStreamReader(sslsock.getInputStream()));
String line;
String regExp = ".*<a href=\"(.*)\">.*";
Pattern p = Pattern.compile( regExp, Pattern.CASE_INSENSITIVE );
while ((line = in.readLine()) != null) {
// Using Oscar's RegEx.
Matcher m = p.matcher( line );
if( m.matches() ) {
System.out.println( m.group(1) );
}
}
sslsock.close();
}
</code></pre>
http://stackoverflow.com/questions/102417/best-esb-and-soa-registry-out-there/414196#4141960Answer by Bernie Perez for Best ESB and SOA registry out thereBernie Perez2009-01-05T19:25:04Z2009-01-05T19:25:04Z<p>We have been working with ActiveMQ as our MOM and started to use <a href="http://servicemix.apache.org" rel="nofollow">Apache ServiceMix</a> for our ESB. Its an open source ESB that meets the JBI Spec. The purpose of JBI is to define a standard for an integration platform that consists of components from multiple vendors and open source projects in order to <strong>prevent vendor lock-in</strong>.</p>
<p>However I do agree that you should look carefully at your requirements and decided from that point.</p>
http://stackoverflow.com/questions/16638/google-maps-api-problems-with-class-glatlngbounds2Google Maps API - Problems with class GLatLngBoundsBernie Perez2008-08-19T18:04:16Z2008-11-24T15:31:51Z
<p>I am having some trouble with the <a href="http://code.google.com/apis/maps/documentation/reference.html" rel="nofollow">Google Maps API</a>. I have an array which holds a ojbect I created to store points.</p>
<p>My array and class:</p>
<pre><code>var tPoints = [];
function tPoint(name) {
var id = name;
var points = [];
var pointsCount = 0;
...
this.getHeadPoint = function() { return points[pointsCount-1]; }
}
</code></pre>
<p>tPoint holds an array of <a href="http://code.google.com/apis/maps/documentation/reference.html#GLatLng" rel="nofollow">GLatLng</a> points. I want to write a function to return a <a href="http://code.google.com/apis/maps/documentation/reference.html#GLatLngBounds" rel="nofollow">GLatLngBounds</a> object which is extended from the current map bounds to show all the HeadPoints.</p>
<p>Heres what I have so far..</p>
<pre><code>function getBounds() {
var mBound = map.getBounds();
for (var i = 0; i < tPoints.length; i++) {
alert(mBound.getSouthWest().lat() + "," + mBound.getSouthWest().lng());
alert(mBound.getNorthEast().lat() + "," + mBound.getNorthEast().lng());
currPoint = trackMarkers[i].getHeadPoint();
if (!mBound.containsLatLng(currPoint)) {
mBound.extend(currPoint);
}
}
return mBound;
}
</code></pre>
<p>Which returns these values for the alert. (Generally over the US)<br />
"19.64258,NaN"<br />
"52.69636,NaN"<br />
"i=0"<br />
"19.64258,NaN"<br />
"52.69636,-117.20701"<br />
"i=1"<br /></p>
<p>I don't know why I am getting NaN back.
When I use the bounds to get a zoom level I think the NaN value is causing the map.getBoundsZoomLevel(bounds) to return 0 which is incorrect. Am I using <a href="http://code.google.com/apis/maps/documentation/reference.html#GLatLngBounds" rel="nofollow">GLatLngBounds</a> incorrectly?</p>
http://stackoverflow.com/questions/104323/use-jquery-to-replace-my-xmlhttprequest/105635#1056350Answer by Bernie Perez for Use jQuery to replace my XMLHttpRequestBernie Perez2008-09-19T21:07:42Z2008-09-19T21:07:42Z<p>In the end I guess it was added the type. This seems to work for me.</p>
<pre><code> function convertToDecimal(){
var key = document.getElementById("key");
var keypressed = document.getElementById("keypressed");
keypressed.value = key.value;
var url = "/My_Servlet/response?key="+ escape(key.value);
jQuery.get(url, {}, function(data){
callback(data);}
, "text" );
}
function callback(data){
var decimal = document.getElementById('decimal');
decimal.value = data;
clear();
}
</code></pre>
<p>Thanks Everyone for the help. I'll vote you up.</p>
http://stackoverflow.com/questions/66840/integration-of-javascript-and-jms1Integration of JavaScript and JMSBernie Perez2008-09-15T20:52:23Z2008-09-19T12:40:01Z
<p>Where can I find a guide for integrating JavaScript and JMS (Java Messaging Service)?</p>
<p>I would like a best practice or established technology that allows me to directly or indirectly receive messages from a topic and update a site based on the message. I was thinking of creating two components, a servlet for the Web module, and an MDB (Message-Driven Bean) for the EJB module. The web client will comsume messages from the JMS topic, and the MDB will handle the onMessage.</p>
<p>Does this sound correct? Have you seen any examples?</p>
<p>Edit: I am using ActiveMQ for the JMS.</p>
http://stackoverflow.com/questions/64843/write-a-servlet-that-talks-to-jms-activemq-and-onmessage-update-the-site1Write a Servlet that Talks to JMS (ActiveMQ) and OnMessage Update the SiteBernie Perez2008-09-15T17:18:06Z2008-09-18T20:29:26Z
<p>I am building a site that uses a simple AJAX Servlet to talk JMS (ActiveMQ) and when a message arrives from the topic to update the site.</p>
<p>I have Javascript that creates an XMLHttpRequest for data. The Servlet processes the Get Request and sends back JSON. However I have no idea how to connect my Servlet into my ActiveMQ Message Broker. It just sends back dummy data right now.</p>
<p>I am thinking the Servelt should implement the messagelistener. Then onMessage send data to the JavaScript page. But I'm not sure how to do this.</p>
http://stackoverflow.com/questions/64749/m-character-at-end-of-lines/64959#649590Answer by Bernie Perez for '^M' character at end of linesBernie Perez2008-09-15T17:32:10Z2008-09-15T17:32:10Z<p>The easiest way is to use VI. I know that sounds terrible but its simple and already installed on most UNIX environments. The ^M is a new line from Windows/DOS environment.</p>
<p>from the command prompt: <code>$ vi filename</code></p>
<p>Then press "<code>:</code>" to get to command mode.</p>
<p>Search and Replace all Globally is <code>:%s/^M//g</code> "<strong>Press and hold control then press V then
M</strong>" which will replace ^M with nothing.</p>
<p>Then to write and quit enter "<code>:wq</code>" Done!</p>
http://stackoverflow.com/questions/36515/fixed-legend-in-google-maps-mashup/42792#427926Answer by Bernie Perez for Fixed Legend in Google Maps MashupBernie Perez2008-09-03T23:06:29Z2008-09-03T23:06:29Z<p>You can add your own Custom Control and use it as a legend.</p>
<p>This code will add a box 150w x 100h (Gray Border/ with White Background) and the words "Hello World" inside of it. You swap out the text for any HTML you would like in the legend. This will stay Anchored to the Top Right (G_ANCHOR_TOP_RIGHT) 10px down and 50px over of the map.</p>
<pre><code>function MyPane() {}
MyPane.prototype = new GControl;
MyPane.prototype.initialize = function(map) {
var me = this;
me.panel = document.createElement("div");
me.panel.style.width = "150px";
me.panel.style.height = "100px";
me.panel.style.border = "1px solid gray";
me.panel.style.background = "white";
me.panel.innerHTML = "Hello World!";
map.getContainer().appendChild(me.panel);
return me.panel;
};
MyPane.prototype.getDefaultPosition = function() {
return new GControlPosition(
G_ANCHOR_TOP_RIGHT, new GSize(10, 50));
//Should be _ and not &#95;
};
MyPane.prototype.getPanel = function() {
return me.panel;
}
map.addControl(new MyPane());
</code></pre>
http://stackoverflow.com/questions/37969/tool-for-posting-test-messages-onto-a-jms-queue/42552#425522Answer by Bernie Perez for Tool for posting test messages onto a JMS queue?Bernie Perez2008-09-03T20:49:31Z2008-09-03T20:49:31Z<p>Also if the JMS broker supports JMX like ActiveMQ does you can use JConsole to post message and do a lot more.</p>
http://stackoverflow.com/questions/40741/excel-vba-alternative-ide/40843#408433Answer by Bernie Perez for Excel VBA: Alternative IDEBernie Perez2008-09-02T22:34:59Z2008-09-02T22:34:59Z<p>Do you need to code in VBA? You can code in C#. Here's a post from Joel's <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.196244.4" rel="nofollow">Software Discuss board</a>.</p>
<blockquote>
<p>However the C# I write is not embedded
in Excel. It write it as a class
library in Visual Studio .NET.</p>
<p>If you want embedded C# I suggested
you buy Visual Studio Tools for
Office. This makes life a bit easier
for you as you don't have to learn how
to write C# as a COM Interop
component.</p>
</blockquote>
<p>Maybe you should check out <a href="http://msdn.microsoft.com/en-us/office/aa905533.aspx" rel="nofollow">Office Development with Visual Studio</a>.</p>
http://stackoverflow.com/questions/24125/screencast-software/29250#292500Answer by Bernie Perez for Screencast softwareBernie Perez2008-08-27T00:31:51Z2008-08-28T00:33:31Z<p><a href="http://www.techsmith.com/camtasia.asp" rel="nofollow">Camtasia Studio</a> works very well. Its awesome.</p>
<p>Also the <strong>free</strong> <a href="http://camstudio.org/" rel="nofollow">CamStudio</a> is okay for basic screen capture.</p>
http://stackoverflow.com/questions/17865/good-open-source-queuing-platform/31054#310544Answer by Bernie Perez for Good Open Source Queuing Platform?Bernie Perez2008-08-27T19:51:42Z2008-08-27T19:51:42Z<p>I like Gaius's idea of Amazons <a href="http://www.amazon.com/Simple-Queue-Service-home-page/b?ie=UTF8&node=13584001" rel="nofollow">SQS</a> however it has a <strong>large delay</strong> time between messages. Some <a href="http://devver.net/blog/2008/06/speed-with-messaging-matters/" rel="nofollow">benchmarks</a> show 15-30 seconds a message others are as slow as a min a message. So if speed is an issue then you might want to run your own <a href="http://en.wikipedia.org/wiki/Message_Oriented_Middleware" rel="nofollow">MOM</a>.</p>
<p>I would recommend <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> from Apache. We have done benchmarks and its speeds are pretty close to socket connections. Have never used it on a large production scale app though.</p>
http://stackoverflow.com/questions/27598/how-can-i-make-jconsole-work-with-websphere-6-1/30996#309960Answer by Bernie Perez for How can I make "jconsole" work with Websphere 6.1?Bernie Perez2008-08-27T19:35:59Z2008-08-27T19:35:59Z<p>Hmm... I know that WebSphere is kind of hard to configure. Thats part of the reason we used ServiceMix for our ESB. Maybe its not enabled by default in WebSphere and you would have to turn it on in the config somewhere.</p>
http://stackoverflow.com/questions/30627/how-would-you-use-java-to-handle-various-xml-documents/30689#306891Answer by Bernie Perez for How would you use Java to handle various XML documents?Bernie Perez2008-08-27T17:30:23Z2008-08-27T17:30:23Z<p>I have tried the SAXParser once, but once I found <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> I never went back to it. With XStream you can create Java Objects and convert them to XML. Send them over and use XStream to recreate the object. Very easy to use, fast, and creates clean XML.</p>
<p>Either way you have to know what data your going to receiver from the XML file. You can send them over in different ways to know which parser to use. Or have a data object that can hold everything but only one structure is populated (product/store/managers). Maybe something like:</p>
<pre><code>public class DataStructure {
List<ProductStructure> products;
List<StoreStructure> stors;
List<ManagerStructure> managers;
...
public int getProductCount() {
return products.lenght();
}
...
}
</code></pre>
<p>And with XStream convert to XML send over and then recreate the object. Then do what you want with it.</p>
http://stackoverflow.com/questions/30632/difference-between-the-apache-http-server-and-apache-tomcat/30645#306459Answer by Bernie Perez for Difference between the Apache HTTP Server and Apache Tomcat?Bernie Perez2008-08-27T17:03:29Z2008-08-27T17:10:27Z<p>Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat.</p>
<p>So basically Apache is an HTTP Server, serving HTTP. Tomcat is a Servelt and JSP Server serving Java technologies.</p>
http://stackoverflow.com/questions/23763/colorizing-images-in-java/27185#271852Answer by Bernie Perez for Colorizing images in JavaBernie Perez2008-08-26T01:02:32Z2008-08-27T00:11:03Z<p>I have never used GIMP's colorize command. However, if your getting the RGB value of each pixel and adding RGB value to it you should really use a <strong><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/LookupOp.html" rel="nofollow">LookupOp</a>.</strong> Here is some code that I wrote to apply a BufferedImageOp to a BufferedImage.</p>
<p>Using Nicks example from above heres how I would do it.</p>
<blockquote>
<p>Let Y = 0.3*R + 0.59*G + 0.11*B for
each pixel</p>
<p>(R1,G1,B1) is what you are colorizing
with</p>
</blockquote>
<pre><code>protected LookupOp createColorizeOp(short R1, short G1, short B1) {
short[] alpha = new short[256];
short[] red = new short[256];
short[] green = new short[256];
short[] blue = new short[256];
int Y = 0.3*R + 0.59*G + 0.11*B
for (short i = 0; i < 256; i++) {
alpha[i] = i;
red[i] = (R1 + i*.3)/2;
green[i] = (G1 + i*.59)/2;
blue[i] = (B1 + i*.11)/2;
}
short[][] data = new short[][] {
red, green, blue, alpha
};
LookupTable lookupTable = new ShortLookupTable(0, data);
return new LookupOp(lookupTable, null);
}
</code></pre>
<p>It creates a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImageOp.html" rel="nofollow">BufferedImageOp</a> that will mask out each color if the mask boolean is true.</p>
<p>Its simple to call too.</p>
<pre><code>BufferedImageOp colorizeFilter = createColorizeOp(R1, G1, B1);
BufferedImage targetImage = colorizeFilter.filter(sourceImage, null);
</code></pre>
<p>If this is not what your looking for I suggest you look more into BufferedImageOp's.</p>
<p>This is would also be more efficient since you would not need to do the calculations multiple times on different images. Or do the calculations over again on different BufferedImages as long as the R1,G1,B1 values don't change.</p>
http://stackoverflow.com/questions/28965/checklist-for-web-site-programming-vulnerabilities/28972#289721Answer by Bernie Perez for Checklist for Web Site Programming VulnerabilitiesBernie Perez2008-08-26T19:54:12Z2008-08-26T19:54:12Z<p><a href="http://en.wikipedia.org/wiki/Cross-site_scripting" rel="nofollow">XSS</a> (Cross Site Scripting) Attacks</p>
http://stackoverflow.com/questions/998260/how-do-you-install-jdk/998643#998643Comment by Bernie Perez on How do you install JDK?Bernie Perez2009-07-06T20:22:39Z2009-07-06T20:22:39ZWell the question asked how to install a JDK and he is running Eclipse. Its nice to have the JDK since it has extra stuff and the source.http://stackoverflow.com/questions/979377/countdown-timer-using-jquery-or-google-app-engineComment by Bernie Perez on Countdown timer using jquery or google app engine ?Bernie Perez2009-06-15T22:20:34Z2009-06-15T22:20:34ZDoes the google app engine have to be Python? I can help you if you don't mind the Java version of Google App Engine.http://stackoverflow.com/questions/998260/how-do-you-install-jdk/998284#998284Comment by Bernie Perez on How do you install JDK?Bernie Perez2009-06-15T22:08:18Z2009-06-15T22:08:18ZBy default Eclipse uses the JRE not the JDK. You have to add it under the Installed JREs list.http://stackoverflow.com/questions/918007/learn-how-to-make-flair-for-my-users-javascript-snippets/918049#918049Comment by Bernie Perez on Learn how to make Flair for my users (javascript snippets)Bernie Perez2009-05-28T23:44:27Z2009-05-28T23:44:27ZI think I will just send back HTML and use innerHTML. Thanks for the help guys.http://stackoverflow.com/questions/813644/using-an-png-or-jpeg-for-map-with-openlayers-scale-zoom-problem/813740#813740Comment by Bernie Perez on Using an PNG or JPEG for Map with OpenLayers (Scale/Zoom Problem)Bernie Perez2009-05-04T19:35:09Z2009-05-04T19:35:09ZThanks so much Jon, I can't believe I didn't try setting the Size to a smaller value =) Worked great!http://stackoverflow.com/questions/600907/java-image-messes-up-when-i-run-the-jnlp-file/601097#601097Comment by Bernie Perez on Java Image messes up when I run the .jnlp fileBernie Perez2009-03-02T22:40:40Z2009-03-02T22:40:40ZWell once you have an image object you can create a bufferedImage object with this:
<a href="http://www.exampledepot.com/egs/java.awt.image/Image2Buf.html?l=rel" rel="nofollow">exampledepot.com/egs/java.awt.image/…</a>
It will create a graphics object and draw it onto the bufferedImage. Also has support for things like the Alpha channel.http://stackoverflow.com/questions/425017/starter-guide-for-apache-servicemix/425431#425431Comment by Bernie Perez on Starter guide for Apache ServiceMixBernie Perez2009-03-02T01:19:47Z2009-03-02T01:19:47ZHey if the book helped will you mark my answer as accepted?http://stackoverflow.com/questions/27129/charting-library-for-java-and-net/27150#27150Comment by Bernie Perez on Charting library for Java and .NetBernie Perez2009-02-12T06:01:28Z2009-02-12T06:01:28ZThanks for the info. JFreeChart for Java is still being updated.http://stackoverflow.com/questions/528664/simple-way-to-do-xml-in-java/528669#528669Comment by Bernie Perez on Simple way to do Xml in JavaBernie Perez2009-02-09T18:03:58Z2009-02-09T18:03:58ZI love XStream... so easy to use. Great for quick jobs when you need to save an object to xml and read it back in.http://stackoverflow.com/questions/422970/get-source-of-website-in-java/423077#423077Comment by Bernie Perez on Get source of website in javaBernie Perez2009-01-08T17:53:24Z2009-01-08T17:53:24ZHey Adam. This code connects to an HTTPS (Secure) site with SSL. Username/Passwords are site specific. Its almost like asking how to login to Bank of America and expect it to work with with WaMu's login thats different. I hope you still accept my answer as correct since its what you asked for.http://stackoverflow.com/questions/422970/get-source-of-website-in-java/423125#423125Comment by Bernie Perez on Get source of website in javaBernie Perez2009-01-08T03:30:55Z2009-01-08T03:30:55ZHaha okay. Yeah I'll use your RegEx in my example if you don't mind.http://stackoverflow.com/questions/422970/get-source-of-website-in-java/423125#423125Comment by Bernie Perez on Get source of website in javaBernie Perez2009-01-08T03:21:59Z2009-01-08T03:21:59ZI thought he said he needed Secure Access support. Does url.openConnection support SSL?http://stackoverflow.com/questions/27148/merge-rss-feeds/36441#36441Comment by Bernie Perez on merge rss feedsBernie Perez2009-01-08T00:56:05Z2009-01-08T00:56:05ZOh I made a custom feed with just Stackoverflow. Heres how I did it.
<a href="http://blog.rungeek.com/post/65809458/custom-stackoverflow-rss-feed" rel="nofollow">blog.rungeek.com/post/65809458/…</a>http://stackoverflow.com/questions/66840/integration-of-javascript-and-jms/68981#68981Comment by Bernie Perez on Integration of JavaScript and JMSBernie Perez2008-09-16T19:43:02Z2008-09-16T19:43:02ZI was able to get the examples to work on Version 5.0 of ActiveMQ. However they have trouble running in 5.1. Which version of ActiveMQ are you running?http://stackoverflow.com/questions/64843/write-a-servlet-that-talks-to-jms-activemq-and-onmessage-update-the-site/65144#65144Comment by Bernie Perez on Write a Servlet that Talks to JMS (ActiveMQ) and OnMessage Update the SiteBernie Perez2008-09-15T18:01:41Z2008-09-15T18:01:41ZThanks jodonnell.. I have never wrote a JMX MBean or Stateful Session EJB but after a quick google search I think this is the right path to look down. Thanks for the help.