<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
  <title></title>
  <link>http://www.javafaq.nu/</link>
  <description>Java FAQ</description>
  <language>en-us</language>
  <pubDate>Thu, 30 Apr 2009 11:45:30 GMT</pubDate>
  <ttl>1440</ttl>
  <generator>CPG-Nuke Dragonfly</generator>
  <copyright></copyright>
  <category>News</category>
  <docs>http://backend.userland.com/rss</docs>
  <image>
	<url>http://www.javafaq.nu/images/120x60.jpg</url>
	<title></title>
	<link>http://www.javafaq.nu/</link>
  </image>

<item>
  <title>SSL with GlassFish v2, page 5</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1193</link>
  <description>There are two other cases to consider:


  
    The application server profile is the enterprise profile and  the server key pair is already in a PKCS#12 file. If there is   already an entry in the store with alias s1as, all you have to   do is perform step 4 as described in  &amp;quot;When the Enterprise   Profile is Used&amp;quot; to delete the original entry:
                                  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;certutil&amp;nbsp;-D&amp;nbsp;-n&amp;nbsp;s1as&amp;nbsp;-d&amp;nbsp;$AS_NSS_DB&amp;nbsp;
    
    Then perform step 5 to import the new s1as.pfx file into the   NSS store:
                                        &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pk12util&amp;nbsp;-i&amp;nbsp;s1as.pfx&amp;nbsp;-d&amp;nbsp;$AS_NSS_DB&amp;nbsp;
    
    If there is no entry in the store with alias s1as, simply   perform step 5.
  
  
    The application server profile is the developer profile and  the server key pair is already in a PKCS#12 file. In this   case, all you need to do is perform step 5 as described in When the Enterprise Profile is Used to delete the original   s1as entry. Then use the pkcs12import utility to import the   PCKS#12 file into the GlassFish keystore:
                                  &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pkcs12import.sh&amp;nbsp;-file&amp;nbsp;s1as.pfx&amp;nbsp;-alias&amp;nbsp;s1as&amp;nbsp;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-keystore&amp;nbsp;keystore.jks&amp;nbsp;-storepass&amp;nbsp;changeit&amp;nbsp;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-pass&amp;nbsp;&amp;lt;exp_password&amp;gt;
    
    where &amp;lt;exp_password&amp;gt; is the password that was used when the   PKCS#12 file was exported, for example, changeit.
    You can find the pkcs12import utility in the pkcs12import   package, which you can download from the XWSS downloads page in Project Metro</description>
  <pubDate>Thu, 30 Apr 2009 11:45:30 GMT</pubDate>
</item>

<item>
  <title>SSL with GlassFish v2, page 4</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1192</link>
  <description>When the Cluster Profile is Used
You perform the same steps to enable GlassFish v2 as an SSL   server when the application server is configured with the   cluster profile as you do for a developer profile. However, in   this case you need to ensure that the same server key in   replicated in all the application server instances in the   cluster.
When the Enterprise Profile is Used
The Security Store parameter value for the enterprise profile is  NSS, which stands for Network Security Services. In an NSS   security infrastructure there is no JKS keystore and so there is   no default GlassFish keystore.</description>
  <pubDate>Thu, 30 Apr 2009 11:43:59 GMT</pubDate>
</item>

<item>
  <title>SSL with GlassFish v2, page 3</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1191</link>
  <description>Enabling the GlassFish v2 Application Server as an SSL Server
The steps to enable the GlassFish v2 as an SSL server depend on   the profile used for the application server. Let&#039;s first   examine the process if the developer profile is used. Then let&#039;s   examine the process when the enterprise profile is used.
When the Developer Profile is Used</description>
  <pubDate>Thu, 30 Apr 2009 11:39:58 GMT</pubDate>
</item>

<item>
  <title>SSL with GlassFish v2, page 2</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1190</link>
  <description>SSL with GlassFish v2
By Kumar Jayanti
Most enterprise applications need to run in a secure   environment. Transport Layer Security (TLS)/Secure Sockets Layer   (SSL) is a point-to-point secure transport mechanism that can   be used for authenticating messages exchanged between a client  and a server, and for ensuring message integrity and   confidentiality. TLS/SSL (or in this tip, simply &amp;quot;SSL&amp;quot;) meets   the security requirements of most enterprise application   environments, and is widely adopted.
However to participate in SSL-secured message exchanges, the   server needs to be enabled as an SSL server. This tip will show   you how to enable the GlassFish v2 application server as an SSL   server.</description>
  <pubDate>Thu, 30 Apr 2009 11:37:08 GMT</pubDate>
</item>

<item>
  <title>The Java Lesson 2: Anatomy of a simple Java program, page 2</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1189</link>
  <description>All Java 
Lessons contents page | 
Java Lesson 1 | Java Lesson 2 
| Java Lesson 3 |
Java Lesson 4 |
Java Lesson 5 |
Java Lesson 6 |
Java Lesson 7 |
Java Lesson 8 |
Java Lesson 9 |
Java Lesson 10 |
Java Lesson 11 |
Java Lesson 12 |
Java Lesson 13 |
Java Lesson 14 |
Java Lesson 15 |
Java Lesson 16 |
Java Lesson 17 |
Java Lesson 18 |
Java Lesson 19 |
Java Lesson 20 | Java Lesson 21 
| Java Lesson 22 | Java Lesson 23 
| Java Lesson 24 |
Java Lesson 25 |
Java Lesson 26 |
Java Lesson 27 |
Java Lesson 28 |
Java Lesson 29 |
Java Lesson 30 |
Java Lesson 31 |
Java Lesson 32 |
Java Lesson 33 |
Java Lesson 34 |
Java Lesson 35 |
Java Lesson 36 |
Java Lesson 37 |
Java Lesson 38 |
Java Lesson 39 |
Java Lesson 40 |
Java Lesson 41 |
Java Lesson 42 |
Java Lesson 43 |
Java Lesson 44 |
Java Lesson 45 |
Java Lesson 46


Statement blocks

  
  Are modules of code consisting of one or more 
  statements  
  
  Begin with an opening brace &quot;{&quot; and end with a closing brace 
  &quot;}&quot;
   
  
  May be entirely nested within another statement 
  block. For example, the block for the  
  main method is nested within the block for the
   App class in the sample 
  program.</description>
  <pubDate>Thu, 30 Apr 2009 09:11:52 GMT</pubDate>
</item>

<item>
  <title>New site about Java for robots and robotics: both software and hardware.</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1186</link>
  <description>If you interested  in Java and robots/robotics you can look at new site ROBOkhod . It is new site and have not so much articles but can be helpfull for those who has no knowledge about robotics. Site publishes articles on regular base and soon will become bigger. 
Here you can find descriptions, code examples and references to how use Java in small processors and microcontrollers. 
Click here: --&amp;gt; http://www.robokhod.com</description>
  <pubDate>Tue, 10 Feb 2009 21:39:07 GMT</pubDate>
</item>

<item>
  <title>Exceptions -III: What&#039;s an exception and why do I care?</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1185</link>
  <description>Java&#039;s catch or specify requirement
Part I was published here, Part II was published here.
As stated previously, Java requires that a method either catch or specify all checked 
  exceptions that can be thrown within the scope of the method. This requirement has 
  several components that need further description: &amp;quot;catch&amp;quot;, &amp;quot;specify,&amp;quot; &amp;quot;checked exceptions,&amp;quot; 
  and &amp;quot;exceptions that can be thrown within the scope of the method.&amp;quot;</description>
  <pubDate>Thu, 28 Feb 2008 21:16:41 GMT</pubDate>
</item>

<item>
  <title>Exceptions -II: What&#039;s an exception and why do I care?</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1184</link>
  <description>Advantage 3: grouping error types and error differentiation
Part I was published here.
Often exceptions fall into categories or groups. For example, you could imagine a 
  group of exceptions, each of which represents a specific type of error that can occur when 
  manipulating an array: the index is out of range for the size of the array, the element being 
  inserted into the array is of the wrong type, or the element being searched for is not in the 
  array. Furthermore, you can imagine that some methods would like to handle all exceptions 
  that fall within a category (all array exceptions), and other methods would like to handle specific 
exceptions (just the invalid index exceptions, please).</description>
  <pubDate>Thu, 28 Feb 2008 20:57:24 GMT</pubDate>
</item>

<item>
  <title>Exceptions: What&#039;s an exception and why do I care?</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1183</link>
  <description>Exceptions I
  by: Anatoliy Malyarenko
Abstract
  Contents of the lecture.

    What&#039;s an exception and why do I care?
      First encounter with Java exceptions.
      Java&#039;s catch or specify requirement.
      Dealing with exceptions.

Introduction
  If there&#039;s a golden rule of programming it&#039;s this:</description>
  <pubDate>Mon, 18 Feb 2008 21:39:06 GMT</pubDate>
</item>

<item>
  <title>Double your Java code quality in 10 minutes, here is receipt</title>
  <link>http://www.javafaq.nu/index.php?name=News&amp;file=article&amp;sid=1182</link>
  <description>JProfiler let&#039;s find your bugs in just 10 minutes!
It is true! Exactly 10 minutes you need to download it, run with your program and find why your program spends much memory and time in just that  Java class! Find why just one-two classes try to sabotage the whole your Java project  
JProfiler enables Java developers to tune up the performance of their Java programs. It combines in a single tool the capabilities for detailed examination of VM load and applications&amp;rsquo; work, for memory usage and CPU loading, etc.
  JProfiler is an ideal choice for profiling of embedded devices and target boards, due to the highly optimized architecture and low memory consumption of the agent profiling component. JProfiler allows for both local and remote profiling. It can be used as a stand-alone tool or within the Eclipse environment.</description>
  <pubDate>Sat, 16 Feb 2008 22:27:54 GMT</pubDate>
</item>

</channel>
</rss>
