<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Armaghan</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/" />
    <link rel="self" type="application/atom+xml" href="http://blogs.4point.com/armaghan.chaudhary/atom.xml" />
    <id>tag:blogs.4point.com,2009-04-27:/armaghan.chaudhary//37</id>
    <updated>2009-10-28T19:59:47Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.25</generator>

<entry>
    <title>Useful SQL Queries</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/10/useful-sql-queries.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.119</id>

    <published>2009-10-28T19:56:53Z</published>
    <updated>2009-10-28T19:59:47Z</updated>

    <summary>You might find the following queries quite handy for your day to day SQL operations:1. Get the total number of records in a table:SELECT COUNT(*) FROM TABLE_NAME;...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
    <category term="getthetotalnumberofrecordsinatable" label="get the total number of records in a table" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="usefulsqlqueries" label="useful sql queries" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />You might find the following queries quite handy for your day to day SQL operations:<br /><br /><b>1. Get the total number of records in a table:</b><br /><br />SELECT COUNT(*) FROM TABLE_NAME;<br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>SQL User queries in Oracle</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/10/sql-user-queries-in-oracle.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.118</id>

    <published>2009-10-28T15:16:47Z</published>
    <updated>2009-10-28T16:22:37Z</updated>

    <summary><![CDATA[Here are a few&nbsp; useful user SQL code snippets in Oracle:1. To create a userCREATE USER usernameIDENTIFIED BY password DEFAULT TABLESPACE USERSTEMPORARY TABLESPACE TEMP;2. Grant user privileges: GRANT CONNECT, RESOURCE, CREATE SESSION, CREATE VIEW TO username;3. Grant all privileges: GRANT...]]></summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
    <category term="deleteauser" label="delete a user" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclecreateuser" label="Oracle create user" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oracledeleteuser" label="oracle delete user" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclegrantusagerights" label="oracle grant usage rights" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqlcreateuser" label="SQL create user" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqlgrantuserprivileges" label="SQL grant user privileges" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqltocreateauser" label="SQL to create a user" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqltodeleteauser" label="SQL to delete a user" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />Here are a few&nbsp; useful user SQL code snippets in Oracle:<br /><br /><b>1. To create a user</b><br /><br />CREATE USER username<br />IDENTIFIED BY password <br />DEFAULT TABLESPACE USERS<br />TEMPORARY TABLESPACE TEMP;<br /><br /><b>2. Grant user privileges</b>: <br /><br />GRANT CONNECT, RESOURCE, CREATE SESSION, CREATE VIEW TO username;<br /><br /><br /><b>3. Grant all privileges:  </b><br /><br />GRANT all privileges TO username;<br /><br /><b>4. Delete a user or to delete a user and the associated user schema</b><br /><br />drop user username cascade;<br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>SQL : Get a list of tables,views and sequences for a given user</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/10/sql-get-a-list-of-tables-for-a-given-user.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.117</id>

    <published>2009-10-09T20:02:35Z</published>
    <updated>2009-11-20T20:38:07Z</updated>

    <summary>This SQL Snippet get a list of all the tables under a user:select * from user_objects where object_type = &apos;TABLE&apos;; This SQL Snippet will get you a list of all the sequences in a DB Schema for the user tablesselect...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Java" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="MySQL" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="getalistoftables" label="get a list of tables" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oracle" label="oracle" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclegetalistofsequences" label="oracle get a list of sequences" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclegetalistoftables" label="oracle get a list of tables" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclegetalistofviews" label="oracle get a list of views" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclesequences" label="oracle sequences" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oraclesqlgetalistoftables" label="oracle sql get a list of tables" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oracleviews" label="oracle views" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqlgetalistoftablesforagivenuser" label="SQL : Get a list of tables for a given user" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[This SQL Snippet get a list of all the tables under a user:<br /><br />select * from user_objects where object_type = 'TABLE'; <br /><br />This SQL Snippet will get you a list of all the sequences in a DB Schema for the user tables<br /><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><br /><span class="Apple-style-span" style="font-family: verdana,arial,helvetica,sans-serif; font-size: 12px; line-height: 18px;">select * from user_sequences</span></span><br /><br />This SQL Snippet will get you a list of all the view in a DB Schema for the user tables<br /><br />select * from user_views;<br /><br />Happy Coding :)]]>
        
    </content>
</entry>

<entry>
    <title>Finding out the Oracle Version using SQL</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/10/finding-out-the-oracle-version-using-sql.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.116</id>

    <published>2009-10-05T15:00:16Z</published>
    <updated>2009-10-05T15:04:27Z</updated>

    <summary><![CDATA[If you ever have to find out the version of Oracle using SQL, use the following SQL command and it will spit out all the details.SQL&nbsp;SELECT * FROM V$VERSION;OUTPUTBANNER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ---------------------------------------------------------------- Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod PL/SQL...]]></summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
    <category term="findingouttheoracleversionusingsql" label="Finding out the Oracle Version using SQL" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oracle" label="oracle" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="oracleversion" label="Oracle Version" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="sqltofindoracleversion" label="SQL to find oracle version" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="version" label="version" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[If you ever have to find out the version of Oracle using SQL, use the following SQL command and it will spit out all the details.<br /><br /><b>SQL</b><br />&nbsp;SELECT * FROM V$VERSION;<br /><br /><b>OUTPUT<br /><br /></b>BANNER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />---------------------------------------------------------------- <br />Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod <br />PL/SQL Release 10.2.0.1.0 - Production&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />CORE&nbsp;&nbsp;&nbsp; 10.2.0.1.0&nbsp;&nbsp;&nbsp; Production&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />TNS for 32-bit Windows: Version 10.2.0.1.0 - Production&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />NLSRTL Version 10.2.0.1.0 - Production<b><br /></b>---------------------------------------------------------------- <br /><br />Happy Coding :)<br /><b><br /></b>]]>
        
    </content>
</entry>

<entry>
    <title>Changing the default port number in Apache Tomcat</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/09/changing-the-default-port-number-in-apache-tomcat.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.115</id>

    <published>2009-09-11T13:25:26Z</published>
    <updated>2009-09-11T13:35:15Z</updated>

    <summary>I had to run two webservers on my machine at the same time. Since both of them used port 8080 , the easiest way to run the two servers at the same time was to modify the port number on...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
    <category term="changetomcatport" label="change tomcat port" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="changingthedefaultportnumberinapachetomcat" label="Changing the default port number in Apache Tomcat" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="modifyport" label="modify port" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tomcat" label="tomcat" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />I had to run two webservers on my machine at the same time. Since both of them used port 8080 , the easiest way to run the two servers at the same time was to modify the port number on one of them. <br /><br />Here is how we can change the port number in Apache Tomcat:<br /><br />1. Navigate to : Apache Software Foundation\Tomcat X.X\conf<br /><br /><br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="tomcat 5.5 Port Number.png" src="http://blogs.4point.com/armaghan.chaudhary/tomcat%205.5%20Port%20Number.png" class="mt-image-center" style="margin: 0pt auto 20px; text-align: center; display: block;" height="805" width="1589" /></span>
2. Modify the Server.xml file:<br />
<br />
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="color: rgb(63, 63, 63); font-family: Verdana; font-size: 12px; line-height: 19px; text-align: left;"><pre style="margin: 0px; font-family: Verdana; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400;">&lt;!-- Define a non-SSL HTTP/1.1 Connector on port 8080 --&gt;<br />&lt;Connector port="8080" ... /&gt;</pre></span></span><br />
Modify this to another non-conflicting port ( I changed it to 8888)<br /><div><br /></div><div>Happy Coding<br /></div><div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>XML Manipulation in Flex and ActionScript</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/08/xml-manipulation-in-flex-and-actionscript.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.114</id>

    <published>2009-08-28T18:03:18Z</published>
    <updated>2009-08-28T18:41:13Z</updated>

    <summary><![CDATA[There are lots of crazy ways of manipulating XML in ActionScript.Here are a few simple tips and tricks on manipulating XML in Actionscript.Declaring an XML Variable: An XML variable can be created in ActionScript as follows :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var tempSearchXML:XML =...]]></summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Flex" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="actionscript" label="actionscript" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="addnodeinxml" label="add node in xml" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="deletenodeinxml" label="delete node in xml" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="e4x" label="e4x" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flex" label="flex" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="gettinganodevalue" label="getting a node value" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="settinganodevalue" label="setting a node value" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="updatingnodeattribute" label="updating node attribute" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="xml" label="xml" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="xmlmanipulation" label="xml manipulation" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[There are lots of crazy ways of manipulating XML in ActionScript.Here are a few simple tips and tricks on manipulating XML in Actionscript.<br /><br /><ol><li><b>Declaring an XML Variable</b>: An XML variable can be created in ActionScript as follows :</li></ol>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var tempSearchXML:XML = &nbsp;&nbsp;&nbsp; &lt;searchCriteria&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;branchName&gt;023&lt;/branchName&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;contfirstname&gt;&lt;/contfirstname&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;contlastname&gt;&lt;/contlastname&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &lt;contmailsort&gt;&lt;/contmailsort&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;contphone&gt;&lt;/contphone&gt;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/searchCriteria&gt; <br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br /><b>2.&nbsp; Preview an XML Variable</b> : An XML variable can be previewed in an Alert Box by converting the XML to a string object<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Alert.show(tempSearchXML.toString());<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br /><b>3.&nbsp; Getting the value of a Node in the XML</b>: <br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Alert.show(tempSearchXML.branchName.toString());<br /><br />4.&nbsp; <b>Setting the Value of Node in the XML </b>: The following code sets the value of a node 'contfirstname '.<br />&nbsp;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tempSearchXML.contfirstname ="Armaghan";<br /><br /><b>5.&nbsp; Setting / Changing / Updating the Node Attribute in the XML</b>: The following code snippet changes the name of a Node from 'contlastname' to 'lastname'.<br /><br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tempSearchXML.contlastname.setName("lastname") ;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br /><b>5.&nbsp; Delete a Node in the XML</b>: The following code snippet deletes a Node called 'contphone' in the XML.<br /><br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; delete tempSearchXML.contphone;<br /><br /><b>6.&nbsp; Adding a Node in the XML</b>: The following code snippet adds a Node called 'text' in the XML and sets its value at the same time.<br /><br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tempSearchXML.text ="Taylor" ;<br /><br />Happy Coding :)<br />]]>
        
    </content>
</entry>

<entry>
    <title>Dump the Ant build information to a log file</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/08/dump-the-ant-build-information-to-a-log-file.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.112</id>

    <published>2009-08-10T20:18:56Z</published>
    <updated>2009-08-10T20:22:41Z</updated>

    <summary><![CDATA[If you ever need to dump the build information from the command prompt console into a log file, just add a -logfile &lt;filename&gt;.log parameter after your build file call in the command prompt console and you're good to go.Happy Coding...]]></summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
    <category term="ant" label="ant" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="antbuild" label="ant build" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="antbuildcopytologfile" label="ant build copy to log file" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="antbuilddumptologfile" label="ant build dump to log file" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="antbuildlogfile" label="ant build log file" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />If you ever need to dump the build information from the command prompt console into a log file, just add a -logfile &lt;filename&gt;.log parameter after your build file call in the command prompt console and you're good to go.<br /><br />Happy Coding :)<br />]]>
        
    </content>
</entry>

<entry>
    <title>Default Value in QueryParam Annotations</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/08/default-value-in-queryparam-annotations.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.111</id>

    <published>2009-08-07T14:37:11Z</published>
    <updated>2009-08-07T14:40:49Z</updated>

    <summary>In order to remove any null pointer exceptions while using RestEasy Annotations, you can always pass a default value and handle it appropriately in the Data Access Objects ( If you are using one. This ensures that there are no...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Java" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="annotations" label="Annotations" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="defaultvalue" label="Default Value" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="defaultvalueinqueryparamannotations" label="Default Value in QueryParam Annotations" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="queryparam" label="QueryParam" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="resteasy" label="Rest Easy" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="resteasy" label="RestEasy" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[In order to remove any null pointer exceptions while using RestEasy Annotations, you can always pass a default value and handle it appropriately in the Data Access Objects ( If you are using one. This ensures that there are no null pointer excpetions from the returning classes.<br /><br />Here is a code snippet to do just this:<br /><br />public StreamingOutput getUsersSummaryList(@QueryParam("active") @DefaultValue("0") String active&nbsp; ){}<br />]]>
        
    </content>
</entry>

<entry>
    <title>PermGen space error (Hibernate, JPA)</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/08/permgen-space-error-hibernate-jpa.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.110</id>

    <published>2009-08-07T14:27:28Z</published>
    <updated>2009-08-07T14:36:34Z</updated>

    <summary><![CDATA[If you ever come across a PerGen space error in Hibernate or JPA...it refers to the java.lang.outfspacememoryerror (Your webapp is out of memory). PermGen is&nbsp; used to store the class definations ( and I do mean all the Loaded Classes...]]></summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Java" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="hibernate" label="Hibernate" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="java" label="Java" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="javalangoutofmemoryerror" label="java.lang.OutOfMemoryError" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="jpa" label="JPA" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="permgen" label="PermGen" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="permgenspaceerror" label="PermGen space error" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />If you ever come across a PerGen space error in Hibernate or JPA...it refers to the java.lang.outfspacememoryerror (Your webapp is out of memory). PermGen is&nbsp; used to store the class definations ( and I do mean all the Loaded Classes ). This error refers to the heap space being full due to the large number of classes.<br /><br />Generally you can recover from these errors by restarting your WebServer. If you want to really fix it, do one of the following 2:<br /><br />1. Hibernate: Change the hibernate.properties file from&nbsp; "<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'times new roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: verdana; font-size: 13px;">hibernate.bytecode.provider javassist" to </span></span><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'times new roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: verdana; font-size: 13px;">hibernate.bytecode.provider cglib".<br /><br />2. JPA:&nbsp; Change the persistance.xml file from </span></span><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'times new roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: verdana; font-size: 13px;">&lt;property name="hibernate.bytecode.provider" value="javaassist"/&gt; to </span></span><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'times new roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-family: verdana; font-size: 13px;">&lt;property name="hibernate.bytecode.provider" value="cglib"/&gt;</span></span><br /><br />Happy Coding :)<br />]]>
        
    </content>
</entry>

<entry>
    <title>Forget Tour De France.....Make way for Tour De LiveCycle</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/05/forget-tour-de-francemake-way-for-tour-de-livecycle.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.100</id>

    <published>2009-05-27T02:13:28Z</published>
    <updated>2009-05-27T14:39:59Z</updated>

    <summary>Now all you LiveCycle documentation hunters can look at a single location to find all LiveCycle related information....on your desktop...thats right...and its actually true. Adobe released Tour De LiveCycle yesterday, a comprehensive AIR app that locks all aspects of LiveCycle...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="LiveCycle" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="downloadtourdelivecycle" label="download tour de livecycle" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecycleandflex" label="livecycle and Flex" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecyclebam" label="Livecycle BAM" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecycledataservices" label="livecycle data services" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecycledocumentation" label="Livecycle documentation" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecycledocumentation" label="livecycle documentation" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecyclees" label="livecycle es" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tourdelivecycle" label="Tour de livecycle" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[Now all you LiveCycle documentation hunters can look at a single location to find all LiveCycle related information....on your desktop...thats right...and its actually true. <br /><br />Adobe released Tour De LiveCycle yesterday, a comprehensive AIR app that locks all aspects of LiveCycle documentation on your desktop. It will remind you of Flex explorer in its look and feel but encompasses videos, presentations, tutorials and hands on examples on all aspects of livecycle (Data services, BAM, Workbench etc) . <br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="TourDeLiveCycle1.PNG" src="http://blogs.4point.com/armaghan.chaudhary/2009/05/26/TourDeLiveCycle1.PNG" class="mt-image-center" style="margin: 0pt auto 20px; text-align: center; display: block;" width="500" height="381" /></span>It can be downloaded here:<br /><br /><br /><br /><br /><iframe src="http://tourdelc.adobe.com/badge/" scrolling="no" width="216" frameborder="0" height="182"></iframe>
<br /><br /><div><br /></div><div><br /></div><div><br /></div><div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>Working with Rich Text Fields in LiveCycle ES</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/05/working-with-rich-text-fields-in-livecycle-es.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.96</id>

    <published>2009-05-20T17:48:30Z</published>
    <updated>2009-05-20T17:55:59Z</updated>

    <summary>I have been struggling with data manipulation with rich text fields for a while. For those who aren&apos;t familiar with rich text fields in LiveCycle, they are simple text fields with the data format = XHTML.This allows the text field...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Acrobat" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="LiveCycle" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="livecycledesigner" label="LiveCycle Designer" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="livecycledesignerrichtextfield" label="LiveCycle Designer Rich Text Field" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="richtextarea" label="Rich Text Area" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="richtextfields" label="Rich Text Fields" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="richtextxhtml" label="Rich Text XHTML" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="textfieldrichtext" label="Text Field Rich Text" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="xhtmlinlivecycledesigner" label="XHTML in LIveCycle Designer" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />I have been struggling with data manipulation with rich text fields for a while. For those who aren't familiar with rich text fields in LiveCycle, they are simple text fields with the data format = XHTML.<br /><br />This allows the text field (text area) to work like Microsoft word. The end user is able to edit the text, make it bold, underline it, hyperlink web addresses etc etc.<br /><br />In my case, i had to concatenate 2 pieces of rich text fields into a rich text area. The usual rawValue and formattedValue XFA properties loose the formatting if used for rich text areas.<br /><br />I have attached a sample XDP that shows you how to do it&nbsp; "properly".<br /><br />Armaghan.<br /><span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blogs.4point.com/armaghan.chaudhary/2009/05/20/RichTextCopyExample.xdp">RichTextCopyExample.xdp</a></span>]]>
        
    </content>
</entry>

<entry>
    <title>Remote Debugging Using Eclipse, Netbeans, Tomcat</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/05/remote-debugging-using-eclipse-netbeans-tomcat.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.89</id>

    <published>2009-05-01T20:29:31Z</published>
    <updated>2009-05-01T20:37:20Z</updated>

    <summary>For the regular J2EE/Java programmers that use the amazing Tomcat as their Servlet container, i found an amazing link. It steps through the necessary configurations to debug your servlets....an awesome find :)http://wiki.apache.org/tomcat/FAQ/DevelopingShare what you learn...and Happy Coding :)...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Java" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="eclipse" label="Eclipse" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="eclipsedebug" label="Eclipse Debug" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="eclipseremotedebugging" label="Eclipse Remote debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="j2eedebug" label="J2EE Debug" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="j2eedebugging" label="J2EE Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="j2eeremotedebugging" label="J2EE Remote Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="javadebugging" label="Java debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="javaremotedebugging" label="Java Remote Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netbeansdebug" label="NetBeans debug" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netbeansdebugging" label="NetBeans debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="netbeansremotedebugging" label="NetBeans Remote Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tomcat" label="Tomcat" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tomcatandeclipsedebug" label="Tomcat and Eclipse debug" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tomcateclipseremotedebug" label="Tomcat eclipse remote debug" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tomcatremotedebugging" label="Tomcat remote debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<br />For the regular J2EE/Java programmers that use the amazing Tomcat as their Servlet container, i found an amazing link. It steps through the necessary configurations to debug your servlets....an awesome find :)<br /><br /><a href="http://wiki.apache.org/tomcat/FAQ/Developing">http://wiki.apache.org/tomcat/FAQ/Developing</a><br /><br />Share what you learn...and Happy Coding :)<br />]]>
        
    </content>
</entry>

<entry>
    <title>Versioning in LiveCycle ES</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/04/versioning-in-livecycle-es.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.87</id>

    <published>2009-05-01T03:30:05Z</published>
    <updated>2009-05-01T13:23:30Z</updated>

    <summary>Time to bust a myth. I&apos;ll call it LiveCycle Myth 101.1While working on a process orchestration today in a truly team oriented setup, we were working on a single version of a process in bits and pieces. Great progress was...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="LiveCycle" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="livecycleversioning" label="livecycle versioning" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="versioninlivecyclees" label="version in livecycle es" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="versioningprocess" label="versioning process" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="versioningprocessorchestration" label="versioning process orchestration" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[Time to bust a myth. I'll call it LiveCycle Myth 101.1<br /><br />While working on a process orchestration today in a truly team oriented setup, we were working on a single version of a process in bits and pieces. Great progress was made, happy hour came early to work today but then someone saved had an older copy of the process open on their computer...and they decided to save it........the horror....the pain......but wait, this is livecycle we are talking about....its smart...its fancy....it must have stored the previous copy we were working with in the database...it must have...<br /><br />So we went ahead with our quest for the old process, tore apart the database....and found the table that contains the process orchestrations. We found our process....the jubilant team roared, the happy hour was back....and then we diffed the copy from the database with an exported copy of the process....and it went quiet in the room....it was the same process XML.<br /><br />Moral of the story:<br />Keep a backup of the current version, LiveCycle will not save the day everyday, sometimes it takes regular good old common sense. Export a copy of your work and save it in the SVN or better yet, create a new version of the process everytime you reach a milestone. This way, the database will save each version of the process!<br /><br />Share what you learn...and Happy Coding :) <br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Native Drag and Drop with Adobe Air</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/04/native-drag-and-drop-with-adobe-air.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.85</id>

    <published>2009-04-29T23:45:25Z</published>
    <updated>2009-04-29T23:48:28Z</updated>

    <summary>I came across a good article for native drag and drop support in Air apps. Thought i&apos;d re-share it with the world :) Native drag and drop link Share what you learn....Happy Coding :)...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Flex" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="adobeair" label="Adobe AIR" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="air" label="AIR" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="airapplication" label="AIR application" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="airdraganddrop" label="AIR Drag and drop" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="draganddrop" label="Drag and drop" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flex" label="Flex" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<p>I came across a good article for native drag and drop support in Air apps. Thought i'd re-share it with the world :)</p>
<p><a href="http://www.mikechambers.com/blog/2007/11/07/air-example-native-drag-and-drop/">Native drag and drop link</a></p>
<p>Share what you learn....Happy Coding :)</p>]]>
        
    </content>
</entry>

<entry>
    <title>Remote Debugging Using Flex Builder IDE</title>
    <link rel="alternate" type="text/html" href="http://blogs.4point.com/armaghan.chaudhary/2009/04/remote-debugging-using-flex-builder-ide.html" />
    <id>tag:blogs.4point.com,2009:/armaghan.chaudhary//37.84</id>

    <published>2009-04-29T14:17:28Z</published>
    <updated>2009-04-29T15:45:46Z</updated>

    <summary> About a year ago, i came across the wonderful world of remote debugging and was surprised to find such a powerful feature within Flex Builder. I have been using it since then for every project. I have listed a...</summary>
    <author>
        <name>Armaghan</name>
        
    </author>
    
        <category term="Flex" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="flex3" label="Flex 3" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flex3remotedebugging" label="Flex 3 Remote Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flex3tutorial" label="Flex 3 Tutorial" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="remotedebugging" label="Remote Debugging" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="remotedebuggingtutorial" label="Remote Debugging Tutorial" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="remotedebuggingusingflex3" label="Remote Debugging using Flex 3" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="tutorial" label="Tutorial" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.4point.com/armaghan.chaudhary/">
        <![CDATA[<div class="entry">
<p class="snap_preview">About a year ago, i came across the wonderful world of remote debugging and was surprised to find such a powerful feature within Flex Builder. I have been using it since then for every project. I have listed a step by step guide on how to configure your Flex IDE to use remote debugging.<br /></p>
<p class="snap_preview">Its important to note that if you have exported the project as a release to the remote site, this approach will not work(for the obvious release that its no longer a dev project). To use remote debugging, developers like myself just copy the contents of the bin folder and use these files for remote debugging.<br /></p>
<p class="snap_preview">Initially,I had a painful experience finding an article on Remote Debugging with Flex 3. Here's some free&nbsp; advice&nbsp;in a few&nbsp;time saving steps:</p>
<p class="snap_preview">1. Copy your project to a remote site (In my case: http://myDevServer:9080/myRemoteApp). You should copy the files out directly from the Bin folder of your project as mentioned above.</p>
<p class="snap_preview">2. In Flex Builder 3, navigate to Run &gt; Debug &gt; Other... or click on that bug icon and click on other.</p>
<p class="snap_preview">&nbsp;</p>
<p class="snap_preview">
</p><p>
</p><p><img class="mt-image-none" style="width: 429px; height: 497px;" alt="Rem-Debug0.PNG" src="http://blogs.4point.com/armaghan.chaudhary/Rem-Debug0.PNG" width="452" height="507" /></p>
<p>3. In the Create, Manage and Run Configurations dialog that just opened up, either create a new configuration or keep the one that just opened up for you ( I'm assuming you were debugging the app locally on your PC before you decided to run remote debugging).</p>
<p></p>
<p></p>
<p class="snap_preview">4. In the URL or Path to Launch section, uncheck the Use defaults checkbox.</p>
<p class="snap_preview">&nbsp;</p>
<p class="snap_preview">
</p><p>
</p><p><img class="mt-image-none" style="width: 527px; height: 497px;" alt="Rem-Debug1.PNG" src="http://blogs.4point.com/armaghan.chaudhary/Rem-Debug1.PNG" width="797" height="639" /></p>
<p>5. In the debug, run and profile fields, add the location of the html file hosted on the remote server( Developers tend to point these to the swf file, it doesn't work that way).<br />e.g., <a href="http://mydevserver:9080/myRemoteApp/index.html">http://myDevServer:9080/myRemoteApp/index.html</a></p>
<p></p>
<p></p>
<p class="snap_preview">&nbsp;</p>
<p class="snap_preview">
</p><p>
</p><p><img class="mt-image-none" style="width: 538px; height: 511px;" alt="Rem-Debug2.PNG" src="http://blogs.4point.com/armaghan.chaudhary/Rem-Debug2.PNG" width="796" height="642" /></p>
<p>6. Click on the apply button,close your eyes and click the debug button to start debugging your remote application.</p>
<p></p>
<p></p>
<p>Share with you learn...and Happy Coding :)<br /></p></div>]]>
        
    </content>
</entry>

</feed>
