• About

Saidul Islam’s Blog

~ Just another WordPress.com weblog

Saidul Islam’s Blog

Author Archives: saidulislam

40 Awesome and Fresh WordPress Themes

05 Thursday Nov 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

http://speckyboy.com/2009/11/05/40-awesome-and-fresh-wordpress-themes/

Advertisements

20 best resources for the startups

05 Thursday Nov 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

http://mashable.com/2009/11/05/resources-for-starting-your-startup/

Google Closure Tools

05 Thursday Nov 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

http://googlecode.blogspot.com/2009/11/introducing-closure-tools.html

Best CSS tutorial I found

06 Tuesday Oct 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

Tags

CSS

http://www.smashingmagazine.com/2009/10/05/mastering-css-coding-getting-started/

Video sites for the techies

06 Tuesday Oct 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

Tags

video tutorial

http://www.techradar.com/news/world-of-tech/10-useful-video-sites-to-teach-you-new-tech-skills-640740

Learning jQuery

05 Monday Oct 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

Tags

jQuery

The best of the best resources
http://www.designer-daily.com/learning-jquery-11-excellent-resources-4518

How To Change The Session Timeout For Discoverer 10g?

23 Wednesday Sep 2009

Posted by saidulislam in Discoverer

≈ Leave a comment

Tags

Discoverer

1. Edit the file $ORACLE_HOME/discoverer/util/pref.txt.
2. Under the heading [Session Manager] there is a parameter called timeout.
Timeout = 1800 (Number of Seconds before timeout)
3. Save the pref.txt file.
4. Run the applypreferences script.

When changing the timeout value to be higher than 30 minutes you will need to change the Discoverer servlet timeout as well. The servlet timeout must always be higher or equal to the Discoverer session timeout.Steps to change the Discoverer Servlet timeout:

1. Edit the following file:

$ORACLE_HOME/j2ee/OC4J_BI_Forms/applications/discoverer/discoverer/WEB-INF/web.xml
2. Add the following entry to the file:
<session-config>
<!– Session timeout in minutes –>
<session-timeout>60 </session-config> The file should look something like:
<web-app>
<servlet>
<servlet-name>…</servlet-name>
<servlet-class>…</servlet-class>
</servlet>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
</web-app>


3. Save the web.xml file.
4. Run command ’dcmctl updateConfig -ct oc4j -v’ to update the configuration.
5. Restart the whole thing with opmnctl stopall and opmnctl startall. Just do it.

Writing file with Ant

18 Friday Sep 2009

Posted by saidulislam in ant

≈ Leave a comment

Tags

ant

Here is another common one. If you have to write a from Ant

<?xml version=”1.0″ encoding=”UTF-8″?>
<project name=”attrtest” basedir=”.” default=”writeFile”>

<target name=”writeFile”>

<!– plain write to file –>
<echo file=”sitest.txt”>
Hello Test! This content is in a file\n
blah
blah more blah
</echo>

<!– plain write with append –>
<echo file=”siappend.txt” append=”true”>
this is a write test with append.
you have to run it multiple times to see it in action.
</echo>

<!– if you write HTML like files or write special characters use CDATA –>
<echo file=”sitest.html”><![CDATA[
<html>
<body>
This is an html file
</body>
</html>]]>
</echo>

</target>

</project>

Passing attributes to Ant build script

18 Friday Sep 2009

Posted by saidulislam in ant

≈ Leave a comment

I see this getting asked a lot. So here is how…

Create your build script like the following

<?xml version="1.0" encoding="UTF-8"?>
<project name="attrtest" basedir="." default="displayHello">

<property name=”attrValue1″ value=”” />
<property name=”attrValue2″ value=”” />

<target name=”displayHello”>
<echo message=”Hello ${attrValue1} ${attrValue2}!”/>
</target>

</project>

run it like the following

ant -DattrValue1=Saidul -DattrValue2=Islam

word cloud creator

24 Monday Aug 2009

Posted by saidulislam in Uncategorized

≈ Leave a comment

I love this word cloud creator tool
http://www.wordle.net/create

← Older posts
Advertisements

Subscribe

  • Entries (RSS)
  • Comments (RSS)

Archives

  • November 2009
  • October 2009
  • September 2009
  • August 2009
  • July 2009
  • June 2009
  • November 2008
  • September 2007
  • August 2007

Categories

  • Android
  • ant
  • BI Publisher
  • Discoverer
  • Job
  • JSF
  • Oracle Portal
  • Uncategorized

Meta

  • Register
  • Log in

Create a free website or blog at WordPress.com.