<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Carl Sziebert &#187; Flash</title>
	<atom:link href="http://sziebert.net/posts/category/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://sziebert.net</link>
	<description>is a software engineer with an interest in Spring, Hibernate, Red5 and jQuery development.</description>
	<lastBuildDate>Thu, 29 Jul 2010 20:25:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Server-side stream recording example updated</title>
		<link>http://sziebert.net/posts/server-side-stream-recording-updated/</link>
		<comments>http://sziebert.net/posts/server-side-stream-recording-updated/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 04:08:32 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Red5]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=92</guid>
		<description><![CDATA[<p>With this being my most popular blog topic, I felt the time has come for a little update. (You can catch up on the original <a href="http://sziebert.net/posts/server-side-stream-recording-with-red5/">here</a>.)  Frankly, there&#8217;s not much too it.  The server-side code didn&#8217;t change much, just an update to take advantage of the built-in logging support of Red5.  Both clients have been completely rewritten using ActionScript 3. (I know, it&#8217;s about time.) <!--more--></p>
<p>Recording the stream on the server takes one simple line as displayed here:</p>
<p><strong>StreamManager.java</strong></p>
<pre class="brush: java;">
ClientBroadcastStream stream = (ClientBroadcastStream) app.getBroadcastStream(conn.getScope(), &quot;hostStream&quot;);
try {
	// Save the stream to disk.
	stream.saveAs(streamName, false);
} catch (Exception e) {
	logger.error(&quot;Error while saving stream: {}&quot;, streamName);
}
</pre>
<p>The only button in the broadcast application starts and stops the recording session.  The <tt>click</tt> handler does all the work:</p>
<p><strong>Broadcast.as</strong></p>
<pre class="brush: as3;">
private function onClick(event:MouseEvent):void {
	var button:Button = event.target as Button;
	// Record the stream by triggering a server event.
	if (button.label == &quot;Record&quot;) {
		// Tell the remote server to start recording.
		runtime.conn.call(&quot;streamManager.recordShow&quot;, null);
		// Re-label the button.
		button.label = &quot;Stop&quot;;
	// Stop recording the stream.
	} else if (button.label == &quot;Stop&quot;) {
		// Tell the remote server to stop recording.
		runtime.conn.call(&quot;streamManager.stopRecordingShow&quot;, null);
		// Re-label the button.
		button.label = &quot;Record&quot;;
	}
}
</pre>
<p>Like I said, not much to it.  But there&#8217;s a lot of power wrapped up in this little piece of functionality.  </p>
<p><strong>Grab the source code for this tutorial <a href="http://garagetech.googlecode.com/files/Recorder.zip">here</a>.</strong> The example code was updated to be compatible with Red5 0.9.1 on July 29, 2010.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/server-side-stream-recording-updated/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>jQuery Transmit file upload plugin updated</title>
		<link>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/</link>
		<comments>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 22:03:47 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=80</guid>
		<description><![CDATA[<p>Having finally gotten a few hours to myself, I&#8217;ve updated the jquery-transmit file upload plugin to support Flash 10.  Because of the security restrictions added in the most recent revision of the flash browser plugin, the calls to trigger the file selection dialog needed to occur in the SWF itself.  To achieve this, the SWF is placed on a layer above the links triggering the dialog.  You should be able to successfully edit the HTML to your liking without much consequence.  Though, you should be careful not to rename any of the ids or classes.  The plugin relies on them to place the SWF and resize it as necessary. As with the initial release, the plugin should be considered a work in progress and is not yet suitable for a production environment. Hopefully, this fact won&#8217;t deter you from giving the plugin a try.  Source and downloads are available at <a href="http://code.google.com/p/jquery-transmit/">googlecode</a>.  As always, constructive feedback is very much appreciated.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/jquery-transmit-file-upload-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Red5 + Hibernate Revisited</title>
		<link>http://sziebert.net/posts/red5-hibernate-revisited/</link>
		<comments>http://sziebert.net/posts/red5-hibernate-revisited/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 22:13:06 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Red5]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Spring Framework]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=39</guid>
		<description><![CDATA[<p>It&#8217;s hard to believe that I wrote the first version of this tutorial almost a year and a half ago.  That&#8217;s too long to wait for an update in my opinion and is much needed in this case.  My apologies for not tending to the garden sooner. While the <a href="http://sziebert.net/posts/red5-hibernate/">original article</a> illustrated a simple method for integrating Red5<a class="sup" href="#red5">[1]</a> and Hibernate<a class="sup" href="#hibernate">[2]</a>, by today&#8217;s standards it&#8217;s design is overly verbose and somewhat out of fashion. Not to mention the 3 major components used in this tutorial have all gone through major revisions. The primary goal for this iteration was simplification of the code as well as the XML configuration elements and results in a smaller code footprint.  This is a big win in my book.<!--more--></p>
<p><strong>*Note</strong>: If you are not familiar with my first post on this topic, please <a href="http://sziebert.net/posts/red5-hibernate/">give it a read</a> before continuing here.</p>
<p>Getting started, the only item left untouched by the refactoring is the <tt>User</tt> object.  Given that I originally defined the class using the Hibernate annotations there is nothing to change other than to use the annotation based <tt>SessionFactory</tt> by default.  I should note that the Hibernate mapping (HBM) file for the <tt>User</tt> object no longer exists in the source tree.</p>
<p><strong>User.java</strong></p>
<pre class="brush: java;">
@Entity
@Table(name = &quot;users&quot;)
public class User {

    @Id
    @GeneratedValue
    @Column(name = &quot;id&quot;, nullable = false)
    private Long id;

    @Column(name = &quot;user_name&quot;, nullable = false, length = 32, unique = true)
    private String userName;

    @Column(name = &quot;password&quot;, nullable = false)
    private String password;

    @Column(name = &quot;first_name&quot;, length = 64)
    private String firstName;

    @Column(name = &quot;last_name&quot;, length = 64)
    private String lastName;

    @Column(name = &quot;email&quot;, nullable = false)
    private String email;

    ...
}
</pre>
<p><tt>HibernateApplicationDAO</tt> has been given a new name and is now <tt>HibernateApplicationRepository</tt>.  This is one of the biggest changes here and removes the dependency on Spring&#8217;s <tt>HibernateTemplate</tt>.  <tt>HibernateTemplate</tt> was originally created to work around the limitations of Hibernate 2&#8242;s usage of checked exceptions.  Because Hibernate now uses unchecked runtime exceptions, it is no longer necessary.  Injection of the <tt>SessionFactory</tt> into the repository object gives us direct access to the current Hibernate<tt>Session</tt>. The <tt>@Repository</tt> annotation has been added to support transactions and persistence exception translation.</p>
<p><strong>HibernateApplicationRepository.java</strong></p>
<pre class="brush: java;">
@Repository
public class HibernateApplicationRepository implements ApplicationRepository {

    private static final Logger logger = Red5LoggerFactory.getLogger(HibernateApplicationRepository.class, &quot;hibernate&quot;);

    private SessionFactory sessionFactory;

    public User getUser(String user, String pass) {
        logger.debug(&quot;Retrieving user from the database.&quot;);
        // Ask Hibernate to query for the user based upon the specified user/pass.
        Criteria crit = sessionFactory.getCurrentSession().createCriteria(User.class);
        crit.add(Restrictions.eq(&quot;userName&quot;, user));
        crit.add(Restrictions.eq(&quot;password&quot;, pass));
        User u = (User) crit.uniqueResult();
        // Insure that we got something back from Hibernate.
        if (null == u) {
            logger.warn(&quot;User does not exist for credentials: {}/{}&quot;, user, pass);
            throw new ObjectRetrievalFailureException(User.class, user);
        }
        // Return the results.
        return u;
    }

    @Required
    public void setSessionFactory(SessionFactory sessionFactory) {
        this.sessionFactory = sessionFactory;
    }
}
</pre>
<p><tt>ApplicationServiceImpl</tt> is now annotated with the <tt>@Service</tt> and <tt>@Transactional</tt> annotations. With these annotations, we no longer need to proxy <tt>ApplicationServiceImpl</tt> and can eliminate several lines of XML in the configuration file while maintaining full transaction support.</p>
<p><strong>ApplicationServiceImpl.java</strong></p>
<pre class="brush: java;">
@Service
@Transactional
public class ApplicationServiceImpl implements ApplicationService {

    private static final Logger logger = Red5LoggerFactory.getLogger(ApplicationServiceImpl.class, &quot;hibernate&quot;);

    private ApplicationRepository repository;

    @Transactional(readOnly = true)
    public User getUser(String user, String pass) throws ServiceException {
        logger.debug(&quot;Looking up user for user/pass of: {}/{}&quot;, user, pass);
        try {
            // Return the result of the data access call.
            return repository.getUser(user, pass);
        }
        catch (Exception e) {
            logger.error(&quot;Could not load user with credentials: {}/{}&quot;, user, pass);
            throw new ServiceException(&quot;Could not load user!&quot;, e);
		}
	}

    @Required
    public void setApplicationRepository(ApplicationRepository repository) {
        this.repository = repository;
    }
}
</pre>
<p>As you can see from the following bean declaration, we&#8217;ve cut down on the XML configuration significantly by taking advantage of these annotations.</p>
<p><strong>red5-web.xml</strong></p>
<pre class="brush: xml;">
    &lt;tx:annotation-driven/&gt;

    &lt;bean id=&quot;transactionManager&quot; class=&quot;org.springframework.orm.hibernate3.HibernateTransactionManager&quot;&gt;
        &lt;property name=&quot;sessionFactory&quot; ref=&quot;sessionFactory&quot;/&gt;
    &lt;/bean&gt;

    &lt;bean id=&quot;applicationRepository&quot; class=&quot;net.sziebert.tutorials.dao.hibernate.HibernateApplicationRepository&quot;&gt;
        &lt;property name=&quot;sessionFactory&quot; ref=&quot;sessionFactory&quot;/&gt;
    &lt;/bean&gt;

    &lt;bean id=&quot;applicationService&quot; class=&quot;net.sziebert.tutorials.service.impl.ApplicationServiceImpl&quot;&gt;
        &lt;property name=&quot;applicationRepository&quot; ref=&quot;applicationRepository&quot;/&gt;
    &lt;/bean&gt;
</pre>
<p>For the sake of direct comparison, here is the original bean declaration:</p>
<p><strong>red5-web.xml</strong></p>
<pre class="brush: xml;">
    &lt;bean id=&quot;transactionManager&quot; class=&quot;org.springframework.orm.hibernate3.HibernateTransactionManager&quot;&gt;
        &lt;property name=&quot;sessionFactory&quot; ref=&quot;sessionFactory&quot; /&gt;
    &lt;/bean&gt;

    &lt;bean id=&quot;txProxyTemplate&quot; abstract=&quot;true&quot; class=&quot;org.springframework.transaction.interceptor.TransactionProxyFactoryBean&quot;&gt;
        &lt;property name=&quot;transactionManager&quot;&gt;
            &lt;ref local=&quot;transactionManager&quot; /&gt;
        &lt;/property&gt;
        &lt;property name=&quot;transactionAttributes&quot;&gt;
            &lt;props&gt;
                &lt;prop key=&quot;get*&quot;&gt;PROPAGATION_REQUIRED,readOnly&lt;/prop&gt;
                &lt;prop key=&quot;save*&quot;&gt;PROPAGATION_REQUIRED&lt;/prop&gt;
                &lt;prop key=&quot;update*&quot;&gt;PROPAGATION_REQUIRED&lt;/prop&gt;
                &lt;prop key=&quot;delete*&quot;&gt;PROPAGATION_REQUIRED&lt;/prop&gt;
            &lt;/props&gt;
        &lt;/property&gt;
    &lt;/bean&gt;

    &lt;bean id=&quot;applicationDAO&quot; class=&quot;net.sziebert.red5.adapter.dao.hibernate.HibernateApplicationDAO&quot;&gt;
        &lt;property name=&quot;hibernateTemplate&quot; ref=&quot;hibernateTemplate&quot; /&gt;
    &lt;/bean&gt;

    &lt;bean id=&quot;applicationService&quot; parent=&quot;txProxyTemplate&quot;&gt;
        &lt;property name=&quot;target&quot;&gt;
            &lt;bean class=&quot;net.sziebert.red5.adapter.service.impl.ApplicationServiceImpl&quot;&gt;
                &lt;property name=&quot;applicationDAO&quot; ref=&quot;applicationDAO&quot; /&gt;
            &lt;/bean&gt;
        &lt;/property&gt;
    &lt;/bean&gt;
</pre>
<p>All classes now use the improved Red5 logging support which is backed by <a href="http://www.slf4j.org/">SLF4J</a> and <a href="http://logback.qos.ch/">Logback</a> by default.  Here is an example from the <tt>ApplicationAdapter</tt> subclass:</p>
<p><strong>Application.java</strong></p>
<pre class="brush: java;">
public class Application extends ApplicationAdapter {

    private static final Logger logger = Red5LoggerFactory.getLogger(Application.class, &quot;hibernate&quot;);

    private ApplicationService service;

    /* ----- ApplicationAdapter delegate methods ----- */

    @Override
    public boolean roomConnect(IConnection conn, Object[] params) {
        logger.debug(&quot;New connection attempt from {}...&quot;, conn.getRemoteAddress());
        // Parse the user/pass out of the connection parameters
        String userName = (String) params[0];
        String password = (String) params[1];
        // Get the User object for this connection
        User user = null;
        // Insure that we have received the proper set of parameters.
        if (isNotBlank(userName) &amp;&amp;
                isNotBlank(password)) {
            user = authenticate(userName, password);
        }
        // If we got a valid user object, then allow the connection. Otherwise,
        // the user could not be found or something bad happened. In either
        // case, we do not want to allow the connection.
        return user != null &amp;&amp; super.roomConnect(conn, params);
    }

    ...
}
</pre>
<p>The flash client code has been rewritten entirely in ActionScript 3 and was reduced down to a single class for the entire application.  For those of you following along with the source, you&#8217;ll note that there are actually 2 classes.  The second one is a simple dynamic class used to store runtime related resources and could be easily removed from the implementation.  It was a design decision on my part to keep it.  ActionScript 3 is much more object-oriented than it&#8217;s predecessor and leverages the new keyword for constructing components.</p>
<p><strong>Hibernate.as</strong></p>
<pre class="brush: as3;">
package net.sziebert.tutorials {

	import com.adobe.crypto.MD5;

	import fl.controls.Button;
	import fl.controls.Label;
	import fl.controls.TextArea;
	import fl.controls.TextInput;
	import fl.managers.StyleManager;
	import flash.display.Sprite;
	import flash.display.StageAlign;
	import flash.display.StageScaleMode;
	import flash.events.Event;
	import flash.events.MouseEvent;
	import flash.events.NetStatusEvent;
	import flash.events.SecurityErrorEvent;
	import flash.net.NetConnection;
	import flash.net.ObjectEncoding;
	import flash.net.registerClassAlias;
	import flash.text.TextFieldAutoSize;
	import flash.text.TextFormat;

	import net.sziebert.tutorials.Runtime;

	public class Hibernate extends Sprite {

		private var connect:Button;
		private var pass:TextInput;
		private var passLbl:Label;
		private var runtime:Runtime;
		private var textArea:TextArea;
		private var user:TextInput;
		private var userLbl:Label;

		public function Hibernate():void {
			trace(&quot;Starting Hibernate application...&quot;);
			runtime = Runtime.getInstance();
			stage.align = StageAlign.TOP_LEFT;
			stage.scaleMode = StageScaleMode.NO_SCALE;
			stage.addEventListener(Event.RESIZE, onResize);
			createChildren();
		}

		/* ----- Utility functions ----- */

		private function createChildren():void {
			// Create the username label.
			userLbl = new Label();
			userLbl.text = &quot;Username:&quot;;
			userLbl.autoSize = TextFieldAutoSize.LEFT;
			addChild(userLbl);
			// Create the username input field.
			user = new TextInput();
			user.maxChars = 255;
			user.restrict = &quot;A-Za-z 0-9:;()|.,?!$&amp;*{}[]+=_-'&quot;&quot;;
			addChild(user);
			// Create the password label,
			passLbl = new Label();
			passLbl.text = &quot;Password:&quot;;
			passLbl.autoSize = TextFieldAutoSize.LEFT;
			addChild(passLbl);
			// Create the password input field.
			pass = new TextInput();
			pass.maxChars = 255;
			pass.displayAsPassword = true;
			addChild(pass);
			// Create the connect button.
			connect = new Button();
			connect.label = &quot;Connect&quot;;
			connect.addEventListener(MouseEvent.CLICK, onClick);
			addChild(connect);
			// Create the text area to display the log information.
			textArea = new TextArea();
			textArea.editable = false;
			textArea.wordWrap = true;
			addChild(textArea);
			// Remove the avatar.
			removeChildAt(0);
			// Size the elements.
			setSize(stage.stageWidth, stage.stageHeight);
		}

		private function setSize(w:Number, h:Number):void {
			// Move and size the username components
			userLbl.move(18, 18);
			//userLabel.setSize(50, 22);
			user.move(96, 18);
			user.setSize((w - 226), 22);
			// Move and size the password components
			passLbl.move(18, 50);
			//passLabel.setSize(50, 22);
			pass.move(96, 50);
			pass.setSize((w - 226), 22);
			// Move and size the connect button
			connect.move(w - 118, 18);
			connect.setSize(100, 54);
			// Move and size the textarea
			textArea.move(18, 82);
			textArea.setSize((w - 36), (h - 100));
		}

		private function initConnection(username:String, password:String):void {
			if (username == &quot;&quot; || password == &quot;&quot;) {
				throw new Error(&quot;You must enter a valid username and/or password.&quot;);
			}
			// Create the new connection object.
			runtime.conn = new NetConnection();
			runtime.conn.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
			runtime.conn.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityError);
			log(&quot;Connecting to Red5...&quot;);
			runtime.conn.connect(&quot;rtmp://localhost/hibernate/test&quot;, username, MD5.hash(password));
		}

		private function log(msg:String):void {
			// Update the chat window with the message
			textArea.text += (msg + &quot;n&quot;);
			textArea.verticalScrollPosition = textArea.maxVerticalScrollPosition;
		}

		/* ----- Event handlers ----- */

		private function onResize(event:Event):void {
			setSize(stage.stageWidth, stage.stageHeight);
		}

		private function onClick(event:MouseEvent):void {
			var button:Button = event.target as Button;
			// We are currently connected, so disconnect.
			if (runtime.conn &amp;&amp; runtime.conn.connected) {
				runtime.conn.close();
				return;
			}
			try {
				// Initialize the connection
				initConnection(user.text, pass.text);
			} catch (err:Error) {
				// Otherwise we need to show an alert indicating the need for proper user input.
				log(&quot;Error: You must enter a valid username and/or password.&quot;);
			}
		}

		private function onNetStatus(event:NetStatusEvent):void {
			trace(&quot;onNetStatus: &quot; + event.info.code);
			switch (event.info.code) {
			        case &quot;NetConnection.Connect.Success&quot;:
					log(&quot;Connection attempt successful.&quot;);
					connect.label = &quot;Disconnect&quot;;
                                        break;
				case &quot;NetConnection.Connect.Rejected&quot;:
					log(&quot;Connection attempt rejected.&quot;);
					break;
				case &quot;NetConnection.Connect.Closed&quot;:
					log(&quot;Connection closed.&quot;);
					connect.label = &quot;Connect&quot;;
					break;
				case &quot;NetConnection.Connect.Failed&quot;:
					log(&quot;Connection failure.&quot;);
					break;
		        }
		}

		private function onSecurityError(event:SecurityErrorEvent):void {
        		trace(&quot;onSecurityError: &quot; + event);
        	}
	}
}
</pre>
<p>Lastly, the tutorial now relies upon Ant and Ivy to define and retrieve the necessary dependencies. There&#8217;s nothing terribly magical about it, the build script should take care of everything for you. Keep in mind that the Red5 JAR dependency is pulled directly from the continuous integration server and should be up to date with the latest found in the Subversion repository at <a href="http://code.google.com/p/red5/">googlecode</a>.  If you aren&#8217;t running on the latest from trunk, you should strongly consider replacing this JAR with the one found in your Red5 install.  </p>
<p><strong>ivy.xml</strong></p>
<pre class="brush: xml;">
&lt;ivy-module version=&quot;2.0&quot;
            xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
            xsi:noNamespaceSchemaLocation=&quot;http://ant.apache.org/ivy/schemas/ivy.xsd&quot;&gt;
    &lt;info organisation=&quot;garagetech&quot; module=&quot;tutorials&quot;/&gt;
    &lt;configurations defaultconfmapping=&quot;default-&gt;*&quot;&gt;
        &lt;conf name=&quot;compile&quot;/&gt;
        &lt;conf name=&quot;default&quot;/&gt;
        &lt;conf name=&quot;test&quot; extends=&quot;default&quot; description=&quot;Unit testing dependencies.&quot;/&gt;
    &lt;/configurations&gt;
    &lt;dependencies&gt;
        &lt;dependency name=&quot;commons-dbcp&quot; org=&quot;commons&quot; rev=&quot;1.2.2&quot;/&gt;
        &lt;dependency name=&quot;commons-lang&quot; org=&quot;commons&quot; rev=&quot;2.4&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;dom4j&quot; rev=&quot;1.6.1&quot;/&gt;
        &lt;dependency name=&quot;ejb3-persistence&quot; rev=&quot;&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;hibernate-annotations&quot; org=&quot;hibernate&quot; rev=&quot;3.4.0&quot;/&gt;
        &lt;dependency name=&quot;hibernate-commons-annotations&quot; org=&quot;hibernate&quot; rev=&quot;3.4.0&quot;/&gt;
        &lt;dependency name=&quot;hibernate-entitymanager&quot; org=&quot;hibernate&quot; rev=&quot;3.4.0&quot;/&gt;
        &lt;dependency name=&quot;hibernate-validator&quot; org=&quot;hibernate&quot; rev=&quot;3.1.0&quot;/&gt;
        &lt;dependency name=&quot;hibernate&quot; org=&quot;hibernate&quot; rev=&quot;3.3.1&quot;/&gt;
        &lt;dependency name=&quot;javassist&quot; rev=&quot;3.4&quot;/&gt;
        &lt;dependency name=&quot;mysql-connector-java&quot; rev=&quot;5.0.6-bin&quot;/&gt;
        &lt;dependency name=&quot;red5&quot; rev=&quot;&quot; changing=&quot;true&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;slf4j-api&quot; rev=&quot;1.5.6&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;spring-aop&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;spring-beans&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;spring-context&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;spring-core&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot; conf=&quot;compile-&gt;*&quot;/&gt;
        &lt;dependency name=&quot;spring-jdbc&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot;/&gt;
        &lt;dependency name=&quot;spring-orm&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot;/&gt;
        &lt;dependency name=&quot;spring-tx&quot; org=&quot;spring&quot; rev=&quot;2.5.6&quot;/&gt;
    &lt;/dependencies&gt;
&lt;/ivy-module&gt;
</pre>
<p>That covers the significant changes to the tutorial code.  As with the first version, you’ll need to configure MySQL to allow Red5 to talk to it. (Notes on this can be found in the README file with the examples.) You’ll also need to add your user data to the tables once Hibernate has generated the schema.</p>
<p><strong>The example source code for this post can be downloaded <a href="http://garagetech.googlecode.com/files/Red5%2BHibernate.zip">here</a>.</strong></p>
<p>1. <a name="red5" href="http://osflash.org/red5">http://osflash.org/red5</a>  For those that aren&#8217;t up on Red5, it is a robust Flash Media Server alternative written entirely in Java that supports multi-user video chat, video streaming and real-time, multi-player gaming.</p>
<p>2. <a name="hibernate" href="http://hibernate.org">http://hibernate.org</a>  Hibernate lets you develop persistent classes following object-oriented idiom &#8211; including association, inheritance, polymorphism, composition, and collections. It allows you to express queries in its own portable SQL extension (HQL), as well as in native SQL.</p>
<p>3. <a name="spring" href="http://springframework.org">http://springframework.org</a> Spring is a layered Java/JEE application framework founded on the simple concepts that any tool should be a pleasure to use, that your application code should not depend on Spring APIs and that it should not compete with existing solutions, but should foster integration.</p>
<p>4. <a name="mysql" href="http://mysql.com">http://mysql.com</a>  The MySQL database has become the world&#8217;s most popular open source database because of its consistent fast performance, high reliability and ease of use.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/red5-hibernate-revisited/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Flickr style multiple file upload with jQuery</title>
		<link>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/</link>
		<comments>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 21:37:52 +0000</pubDate>
		<dc:creator>Carl Sziebert</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://sziebert.net/?p=15</guid>
		<description><![CDATA[<p>A while back, <a href="http://gregoire.org/">Paul Gregoire</a> introduced me to the <a href="http://jquery.com">jQuery JavaScript library</a>.  It didn&#8217;t take long for me to realize the power and elegance of this library.  For the longest time, I&#8217;ve been wanting to take a shot at authoring a plugin for jQuery and I&#8217;ve finally gotten around to it.  So, it is my pleasure to announce the creation of the <a href="http://code.google.com/p/jquery-transmit">jquery.transmit plugin</a>.  It is a flash-backed multiple file upload utility with a user experience similar to that of Flickr&#8217;s current uploader.  The goals for the plugin were simple: Provide an easy-to-use interface, use flash to work around HTML and JavaScript based file upload issues, and wire it all together with jQuery. Getting started with the plugin is quite simple.  Import the necessary <acronym title="Cascading Style Sheets">CSS</acronym> and JavaScript dependencies, edit the supplied HTML to your liking and  invoke the plugin like so:</p>
<pre class="brush: jscript;">
    $(document).ready(function() {
        $('#transmit').transmit('http://mysite.com/upload/');
    });
</pre>
<p>While the plugin is still very much in its infancy and should be considered a work in progress, it is my opinion that it is easier to shake out bugs using an iterative development process.  So, keeping that in mind, I&#8217;m hoping that a couple of you brave souls will wander over to <a href="http://code.google.com/p/jquery-transmit">googlecode</a> and give it a try.  Constructive feedback is very much appreciated.</p>
]]></description>
		<wfw:commentRss>http://sziebert.net/posts/flickr-style-multiple-file-upload-with-jquery/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>
