User jezhilvalan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T08:28:17Zhttp://stackoverflow.com/feeds/user/126116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1087163/closing-rmi-registry1closing rmi registryjezhilvalan2009-07-06T14:04:50Z2009-10-17T02:57:48Z
<p>Using RMI to pass String object from WebAppA to WebAppB.WebAppB is the RMIServer whereas WebAppA is RMIClient.I have added ContextListener in WebAppB, so that the rmi service starts right away when the context is initialized in tomcat.And in the contextDestroyed method of tomcat I am trying to close/shut down rmi using the following statements:</p>
<pre><code>unexportObject(remoteObj,true);
LocateRegistry.getRegistry(3232).unbind("MessagePath"); //MessagePath - name of the remote reference
</code></pre>
<p>But even after the execution of the aforeseen statements, rmi is listening for incoming requests at port 3232.I saw that by using "netsat -ano" in command prompt.Please do help me to close RMI Service.</p>
http://stackoverflow.com/questions/1063035/using-java-mail-message-object-between-web-applications0using java mail message object between web applicationsjezhilvalan2009-06-30T10:48:27Z2009-09-14T16:00:00Z
<p>I'm developing a web application which acts as an email client for mobile. In this application user can login and provide numerous email ids for monitoring.There are two main classes in the web application. 1.MailGetter 2.MailFormatter</p>
<p>Behaviour of MailGetter class:</p>
<ol>
<li>Timertask initiated which will execute for every 10 minutes</li>
<li>Obtains the numerous email ids from database which are provided for monitoring</li>
<li>establishes connection with mail server for the first email id and obtains recently arrived email message object</li>
<li>passes the message object to MailFormatter class</li>
</ol>
<p>Behavior of MailFormatter class:</p>
<ol>
<li>parses the email message object</li>
<li>various recursive calls made if the message has many multiparts inorder to parse parts one by one</li>
<li>downloads also attachments along with this message</li>
<li>returns an xml string to the MailGetter class which will be stored as simple text file with the following content:</li>
</ol>
<p>Example:</p>
<pre><code><mail>
<from>FromEmailID</from>
<to>ToEmailID</to>
<subject>Subject</subject>
<body>Email Body</body>
<attachments>
attachment
</attachments>
</mail>
</code></pre>
<p>MobileResponderServlet: A separate servlet is also coded in the web application which will read the simple xml text file and send the read content to mobile</p>
<p>The main demerit of this application might be "MailGetter" class will be waiting until all the functions (including recursive calls) of "MailFormatter" class finishes execution.Once the control is returned from "MailFormatter" class to "MailGetter" class, it will obtain the next message object from mail server and passes it to "MailFormatter" class.So intimating about new emails to the mobile user consumes time. Even when "MailFormatter" class is implemented as a separate thread,consider in a case if there are 1000 new emails in a single inbox (for a single emailid) which will be invocating 1000 "MailFormatter" threads, which will make the process more resource intensive.</p>
<p>So I'm deciding to unplug "MailFormatter" from "MailGetter". "MailGetter" will be running as a separate web application in one server whereas "MailFormatter" will be running as a separate web application in another server. After obtaining the recent email message object "MailGetter" web application persists (via message.writeTo(FileOutputstream)) the message object in a location which is also common to "MailFormatter". "MailFormatter" class then reads (via MimeMessage(Session,InputStream) constructor) and parses the message object one by one and then stores the "XML Content" in another location which will be read by "MobileResponderServlet" and sent to mobile.</p>
<p>Will this process be efficient in real time? Will this be arising problems especially while sharing message objects between "MailGetter" and "MailFormatter" web applications? Please do let me know if there are any other ways. This web application will be handling more than 5000 users (minimum) who have provided numerous email ids for monitoring.</p>
http://stackoverflow.com/questions/1067499/using-rmic-in-netbeans1using rmic in netbeansjezhilvalan2009-07-01T06:02:17Z2009-09-03T12:13:41Z
<p>I have written rmi server code in netbeans 6.5. how can i use rmic in netbeans 6.5 so that i can create server_stub class?</p>
http://stackoverflow.com/questions/1130066/calling-stored-procedure-with-output-parameter0calling stored procedure with output parameterjezhilvalan2009-07-15T08:12:27Z2009-07-15T08:21:54Z
<p>Herewith I have given the stored procedure "GetAvgOut":</p>
<pre><code>delimiter //
DROP PROCEDURE IF EXISTS GetAvgOut//
CREATE DEFINER = 'MailIntimator'@'127.0.0.1' PROCEDURE GetAvgOut(OUT average INT,IN col VARCHAR(30),IN tbl VARCHAR(30))
READS SQL DATA
COMMENT 'returns average'
BEGIN
SET @userVar = CONCAT(' SELECT AVG( ' , col , ' ) FROM ' , tbl );
PREPARE stmt FROM @userVar;
EXECUTE stmt;
END;
//
delimiter ;
</code></pre>
<p>I tried calling the aforeseen procedure using,</p>
<pre><code>CALL GetAvgOut(@a,'Population','city');
SELECT @a;
</code></pre>
<p>"select @a" returns null. How can I get the average which is assigned to out parameter "@a"?</p>
http://stackoverflow.com/questions/1108653/hashcode-implementation-for-singleton-class0hashCode implementation for singleton classjezhilvalan2009-07-10T09:41:11Z2009-07-10T13:50:43Z
<p>what will be the implementation for</p>
<pre><code>public int hashCode()
{
}
</code></pre>
<p>method in singleton class? Please do provide me the implementation</p>
http://stackoverflow.com/questions/1108625/implementation-for-custom-keys-in-hashtable1Implementation for custom keys in Hashtablejezhilvalan2009-07-10T09:32:32Z2009-07-10T09:41:41Z
<p>If we implement our own keys in Hashtable, then our custom hashtable keys must implement</p>
<pre><code>public int hashCode()
{
}
</code></pre>
<p>and</p>
<pre><code> public Object equals(Object obj)
{
}
</code></pre>
<p>What will be the implementations for these methods?</p>
http://stackoverflow.com/questions/1107648/checked-unchecked-exceptions5Checked Unchecked Exceptionsjezhilvalan2009-07-10T04:08:44Z2009-07-10T04:30:21Z
<p>Consider the following code</p>
<pre><code>private int meth()
{
try
{
return 1;
}
catch(Exception ex)
{
return 2;
}
finally
{
return 3;
}
}
</code></pre>
<p>When the aforeseen code is compiled, "Exception" is treated as unchecked exception. That is "unreachable catch block Exception is never thrown in try block" compilation error does not occur.Consider I am declaring my own exception,</p>
<pre><code>class MyException extends Exception
{
}
</code></pre>
<p>and using it in the code</p>
<pre><code>private int meth()
{
try
{
return 1;
}
catch(MyException me)
{
return 2;
}
finally
{
return 3;
}
}
</code></pre>
<p>In this "unreachable catch block MyException is never thrown in try block" compilation error occurs. Why in the first scenario "Exception" is treated as RuntimeException and in the second scenario even though "MyException" is a subclass of "Exception" it is being treated as checked exception. Can someone please help me to resolve this issue?</p>
http://stackoverflow.com/questions/1102897/customexception-checked-or-unchecked0CustomException checked or uncheckedjezhilvalan2009-07-09T09:51:26Z2009-07-09T10:30:34Z
<p>If I declare class</p>
<pre><code>Class MyOwnException extends Exception
{
}
</code></pre>
<p>Is this is a checked or unchecked exception?</p>
http://stackoverflow.com/questions/1090422/rmi-nosuchobjectexception0rmi NoSuchObjectExceptionjezhilvalan2009-07-07T04:58:45Z2009-07-07T04:58:45Z
<p>I'm using RMI to pass string from one web app to another web app.Initiating RMI service from the "contextInitialized" method and trying to close the RMI service from "contextDestroyed" method.</p>
<p>MessageContextListener class:</p>
<pre><code>public class MessageContextListener implements ServletContextListener
{
public void contextInitialized(ServletContextEvent sce)
{
try
{
RMIServer rmiServerObj = new RMIServer();
MediatorImplementation.getInstance().setRmiServerObj(rmiServerObj);
}
catch (RemoteException re)
{
re.printStackTrace();
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
public void contextDestroyed(ServletContextEvent sce)
{
RMIServer rmiServerObj = MediatorImplementation.getInstance().getRmiServerObj();
if(rmiServerObj != null)
{
try
{
rmiServerObj.unbindRegistry();
}
catch (RemoteException re)
{
re.printStackTrace();
}
catch (NotBoundException nbe)
{
nbe.printStackTrace();
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
}
}
</code></pre>
<p>RMIServer class:</p>
<pre><code>public class RMIServer extends UnicastRemoteObject implements RemoteInterface
{
private int serverPort = 3232;
public RMIServer() throws RemoteException
{
try
{
System.setProperty("java.security.policy","file:/F:/PolicyFiles/rules.policy");
if(System.getSecurityManager() == null)
{
System.setSecurityManager(new RMISecurityManager());
}
Registry registry = LocateRegistry.createRegistry( serverPort );
registry.rebind("MessagePath", this);
}
catch(RemoteException re)
{
re.printStackTrace();
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
public void unbindRegistry() throws RemoteException, NotBoundException
{
Registry registryObj = LocateRegistry.getRegistry(serverPort);
UnicastRemoteObject.unexportObject(registryObj, true); //this line throws java.rmi.NoSuchObjectException: object not exported
}
public void sendMessageParams(String messageFilePath) throws RemoteException
{
System.out.println("Message File Path: " + messageFilePath);
}
}
</code></pre>
http://stackoverflow.com/questions/1081712/rmi-classnotfoundexception0RMI ClassNotFoundExceptionjezhilvalan2009-07-04T07:07:21Z2009-07-04T07:38:49Z
<p>Encountering UnmarshalException ClassNotFoundException in RMI while attempting to revoke Remote Method in Netbeans 6.5/windows xp. Both rmi client and server programs are running in the same machine.</p>
<p><strong>RMI Client Program:</strong></p>
<p>Source Code Location</p>
<ul>
<li><p>F:\NewRMIClient\src\newrmiclient\RMIClient.java</p></li>
<li><p>F:\NewRMIClient\src\newrmiclient\RemoteInterface.java</p></li>
</ul>
<p>Class Files Location</p>
<ul>
<li><p>F:\NewRMIClient\build\classes\newrmiclient\RemoteInterface.class</p></li>
<li><p>F:\NewRMIClient\build\classes\newrmiclient\RMIClient.class</p></li>
</ul>
<p>Built JAR File Location</p>
<ul>
<li><p>F:\NewRMIClient\dist\NewRMIClient.jar</p>
<p>RemoteInterface.java</p>
<p>package newrmiclient;</p>
<p>import java.rmi.Remote;
import java.rmi.RemoteException;</p>
<p>public interface RemoteInterface extends Remote
{
void sendMessageFilePath(String messagePath) throws RemoteException;
}</p></li>
</ul>
<p>RMIClient.java</p>
<pre><code>package newrmiclient;
import java.rmi.*;
import java.rmi.registry.*;
public class RMIClient
{
static public void main(String args[])
{
RemoteInterface rmiServer;
Registry registry;
String serverAddress="192.169.4.11";
String serverPort="3232";
String text="hello";
System.out.println("sending "+text+" to "+serverAddress+":"+serverPort);
System.setProperty("java.security.policy","file:/F:/PolicyFiles/rules.policy");
if(System.getSecurityManager() == null)
{
System.setSecurityManager(new RMISecurityManager());
}
try{
// get the “registry”
registry=LocateRegistry.getRegistry(serverAddress,(new Integer(serverPort)).intValue());
// look up the remote object
rmiServer=(RemoteInterface)(registry.lookup("MessagePath"));
// call the remote method
rmiServer.sendMessageFilePath(text);
}
catch(RemoteException e){
e.printStackTrace();
}
catch(NotBoundException e){
e.printStackTrace();
}
}
}
</code></pre>
<p><strong>RMI Server Program:</strong></p>
<p>Source Code Location</p>
<ul>
<li><p>F:\RMIProj\src\rmiproj\RemoteInterface.java</p></li>
<li><p>F:\RMIProj\src\rmiproj\RmiServer.java</p></li>
</ul>
<p>Class Files Location</p>
<ul>
<li><p>F:\RMIProj\build\classes\rmiproj\RemoteInterface.class</p></li>
<li><p>F:\RMIProj\build\classes\rmiproj\RmiServer.class</p></li>
<li><p>F:\RMIProj\build\classes\rmiproj\RmiServer_Skel.class</p></li>
<li><p>F:\RMIProj\build\classes\rmiproj\RmiServer_Stub.class</p></li>
</ul>
<p>Built JAR Location</p>
<ul>
<li>F:\RMIProj\dist\RMIProj.jar</li>
</ul>
<p>RemoteInterface.java</p>
<pre><code> package rmiproj;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RemoteInterface extends Remote
{
void sendMessageFilePath(String messagePath) throws RemoteException;
}
</code></pre>
<p>RmiServer.java</p>
<pre><code>package rmiproj;
import java.rmi.RMISecurityManager;
import java.rmi.server.UnicastRemoteObject;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
public class RmiServer extends UnicastRemoteObject implements RemoteInterface
{
int thisPort = 3232;
Registry registry; // rmi registry for lookup the remote objects.
public RmiServer() throws RemoteException
{
try
{
System.setProperty("java.rmi.server.codebase","file:/F:/RMIProj/");
System.setProperty("java.rmi.server.hostname","RMIServer");
System.setProperty("java.security.policy","file:/F:/PolicyFiles/rules.policy");
if(System.getSecurityManager() == null)
{
System.setSecurityManager(new RMISecurityManager());
}
// create the registry and bind the name and object.
registry = LocateRegistry.createRegistry( thisPort );
registry.rebind("MessagePath", this);
}
catch(RemoteException re)
{
re.printStackTrace();
}
}
// This method is called from the remote client by the RMI.
// This is the implementation of the “RemoteInterface”.
public void sendMessageFilePath(String messageFilePath) throws RemoteException
{
System.out.println(messageFilePath);
}
public static void main(String args[]) throws RemoteException
{
RmiServer s=new RmiServer();
}
}
</code></pre>
<p>Location of the policy file:
F:\PolicyFiles\rules.policy</p>
<p>rules.policy
grant {
permission java.security.AllPermission;
};</p>
<p>When attempting to invoke remote method from client, following exception is thrown on console:</p>
<pre><code>sending hello to 192.169.4.11:3232
java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
java.lang.ClassNotFoundException: rmiproj.RemoteInterface
at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
at newrmiclient.RMIClient.main(RMIClient.java:28)
Caused by: java.lang.ClassNotFoundException: rmiproj.RemoteInterface
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:247)
at sun.rmi.server.LoaderHandler.loadProxyInterfaces(LoaderHandler.java:711)
at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:655)
at sun.rmi.server.LoaderHandler.loadProxyClass(LoaderHandler.java:592)
at java.rmi.server.RMIClassLoader$2.loadProxyClass(RMIClassLoader.java:628)
at java.rmi.server.RMIClassLoader.loadProxyClass(RMIClassLoader.java:294)
at sun.rmi.server.MarshalInputStream.resolveProxyClass(MarshalInputStream.java:238)
at java.io.ObjectInputStream.readProxyDesc(ObjectInputStream.java:1531)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1493)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
</code></pre>
<p>Please help me to resolve this issue.</p>
http://stackoverflow.com/questions/1068333/adding-jar-files-in-netbeans-rmic-tag0adding jar files in netbeans rmic tagjezhilvalan2009-07-01T10:08:58Z2009-07-01T10:08:58Z
<p>I am using rmic in netbeans to generate stub and skeleton files.Herewith I have provided the tag, I'm using in "build.xml" in netbeans 6.5</p>
<pre><code><rmic base="${build.classes.dir}" classname="packageName.RmiServerClassName"/>
</code></pre>
<p>"RmiServerClassName" class is using some external jar files.I already have added the external jar files by using Project Properties ====> Libraries ====> Add JAR/Folder in netbeans 6.5.When compiling "RmiServerClassName" using javac (Clean and Build in netbeans) the source compiles fine.</p>
<p>After post compilation, when rmic tool compiles "RmiServerClassName", jar classes not found error is thrown by rmic. rmic tool is unable to detect the jar classes which I have already added via Project Properties ====> Libraries ====> Add JAR/Folder.</p>
<p>How can I specify the location of these JAR files to rmic tool using "rmic" tag in netbeans?</p>
http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications0sharing message object between web applicationsjezhilvalan2009-06-30T08:00:02Z2009-06-30T12:30:04Z
<p>I need to share java mail message objects between two web applications(A and B). </p>
<p>WebApplication A obtains the message and write it to the outputStream</p>
<pre><code>for(int i=0;i<messagesArr.length;i++){
uid = pop3FolderObj.getUID(messagesArr[i]);
//storing messages with uid names inorder to maintain uniqueness
File f = new File("F:/PersistedMessagesFolder" + uid);
FileOutputStream fos = new FileOutputStream(f);
messagesArr[i].writeTo(fos);
fos.flush();
fos.close();
}
</code></pre>
<p>Is FileOutputStream the best output stream for persisting message objects? Is it possible to use ObjectOutputStream for message object persistence?</p>
<p>WebApplication B reads the message object via InputStream</p>
<pre><code>FileInputStream fis = new FileInputStream("F:/MessagesPersistedFolder"+uid);
MimeMessage mm = new MimeMessage(sessionObj,fis);
</code></pre>
<p>What if the mail message object which is already written via WebApplication A is not a MimeMessage? How can I read non-mime messages using input stream?</p>
<p>MimeMessage constructor mandates sessionObj as the first parameter? How can I obtain this sessionObj in WebApplicationB? Do I have to again establish store connection with the same emailid,emailpassword,popserver and port(already used in WebApplication A) with the email server inorder to obtain this session object? Even if obtained, will this session object remains the same as that of the session object which is priorly obtained in WebApplicationA?</p>
<p>Since I am using uids to name Message objects (inorder to maintain uniqueness of file names) how can I share these uids between WebApplication A and WebApplication B? WebApplication B needs the uid inorder to access the specific file which is present in "F:/MessagesPersistedFolder"</p>
<p>Please help me in resolving the aforeseen issues.</p>
http://stackoverflow.com/questions/1057456/passing-java-mail-message-object-from-between-applications0passing java mail message object from between applicationsjezhilvalan2009-06-29T09:44:58Z2009-06-29T11:34:39Z
<p>I'm using java mail api 1.4.1 to obtain new emails. Two classes are being used to obtain emails and then parsing it. "GetMail" class communicates with mail server(Gmail,yahoo etc) and obtains the message object. Then the message object is passed to yet another class "MailFormatter" class, which then parses the message object, obtains the email headers (From,To,Subject etc) and then it parses the Multipart content to obtain the main body and attachments.Since both "Mail getting" and "Mail formatting" process are very resource intensive, these classes are going to be implemented as separate web applications.This application is going to monitor new emails for numerous email ids.If these ("GetMail" and "MailFormatter") are implemented as separate web applications, how can I pass the message object from "GetMail" app to "MailFormatter" app ? Is there a way through which I can persist the obtained message object in a certain location (a location which is common to both "GetMail" and "MailFormatter" applications), so that "GetMail" can persist the message object in that location, and then "MailFormatter" app can read "Message" objects from that location and carry out the parsing process. Message objects cannot be serialized. If they cannot be serialized how can I persist the state of java mail message object? please do help me to resolve this issue.</p>
http://stackoverflow.com/questions/1047751/left-and-right-command-menus-in-lwuit-form0left and right command menus in LWUIT formjezhilvalan2009-06-26T07:11:20Z2009-06-26T10:42:23Z
<p>Using LWUIT framework to develop mobile application.
In LWUIT by default first command is placed in the left and subsequent commands will be placed in the right menu of the form including the command which is already placed in form left.I need to add two menus to form.Left menu contains general application specific commands such as "Minimize","Back" and "Exit". Right Menu contains screen specific commands such as "Play Audio","Play Video" etc... Initially left softbutton of the form contains the text "Options" and the right softbutton of the form contains the text "Menu". When user selects "Options", a menu will be displayed with the following commands:
Minimize
Back
Exit
When user selects right soft button "Menu", a menu will be displayed with screen specific commands:
Play Audio
Play Video etc...
Commands of the right menu keeps changing from one form to another form, whereas the commands of left menu remains the same for all screens(forms). I know command menu can be customized by overriding "Form.createCommandList(Vector)" which returns a list. But here in my case I need two lists(menus). One at the left of the form and the other one at the right of the form.Please do help me in resolving this issue. </p>
http://stackoverflow.com/questions/1021294/stopping-a-thread-when-cancel-command-is-triggered-by-the-user3stopping a thread when cancel command is triggered by the userjezhilvalan2009-06-20T09:21:58Z2009-06-22T19:06:19Z
<p>Mobile app provides the user with the option of downloading the email attachment from remote.Connecting with a remote server and downloading the content is carried out in a separate thread.A dialog is shown to the user with cancel command.Herewith I am providing the pseudo code.</p>
<pre><code>new Thread(new Runnable()
public void run(){
try{
//open connection to remote server
//get data input stream
//create byte array of length attachment size
//show modeless dialog with the message "Downloading..."
for(int i=0;i<attachmentSize;i++){
//set the progress indicator of the modeless dialog based upon for iteration
//read the byte from input stream and store it in byte array
}
//open file connection outputstream and store the downloaded content as a file in mobile file system
//show dialog with the message "attachment successfully downloaded"
}
catch(IOException ioe) { }
catch(Exception ex) { }
}
).start();
</code></pre>
<p>Now I'm in the process of adding cancel command to the dialog with progress indicator. When the user clicks "Cancel" command in mobile, modeless dialog can be disposed by calling dispose() method. How can I abruptly stop the thread which gets the email attachments via streaming?
Please do help me to resolve this issue.</p>
http://stackoverflow.com/questions/1130066/calling-stored-procedure-with-output-parameter/1130090#1130090Comment by jezhilvalan on calling stored procedure with output parameterjezhilvalan2009-07-17T02:29:47Z2009-07-17T02:29:47ZThanks for answering. When I did it, "Undeclared variable: average" error is thrown by MySQL. But I have alread declared average while creating procedure
CREATE DEFINER = 'MailIntimator'@'127.0.0.1' PROCEDURE GetAvgOut(OUT average INT,IN col VARCHAR(30),IN tbl VARCHAR(30))
http://stackoverflow.com/questions/1108625/implementation-for-custom-keys-in-hashtable/1108647#1108647Comment by jezhilvalan on Implementation for custom keys in Hashtablejezhilvalan2009-07-10T09:58:21Z2009-07-10T09:58:21Zthanks a lot for enlightening mehttp://stackoverflow.com/questions/1108625/implementation-for-custom-keys-in-hashtable/1108638#1108638Comment by jezhilvalan on Implementation for custom keys in Hashtablejezhilvalan2009-07-10T09:50:10Z2009-07-10T09:50:10Zthanks a lot for enlightening mehttp://stackoverflow.com/questions/1087163/closing-rmi-registry/1087221#1087221Comment by jezhilvalan on closing rmi registryjezhilvalan2009-07-07T04:43:55Z2009-07-07T04:43:55ZThanks for answering.I did the same way you told me.But "java.rmi.NoSuchObjectException: object not exported" is thrown.Code given in ContextInitialized method.
"new RMIServer();"RMIServer is a class which extends UnicastRemoteObject and implements Remote interface.within RMIServer constructor "Registry r=LocateRegistry.createRegistry(3232);r.rebind("RemoteReference",this):" are given.From "contextDestroyed" method "unbind()" method of RMI server is invocated.Within "unbind()" method "Registry r = LocateRegistry.getRegistry(3232);UnicastRemoteObject.unexportObject(r,true);" are given.
http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications/1062519#1062519Comment by jezhilvalan on sharing message object between web applicationsjezhilvalan2009-07-02T12:03:19Z2009-07-02T12:03:19ZSince DAO is a standalone class I can package it in a separate jar and use it in both MailGetter and MailFormatter web applications.Currently I am using filesystem to store emails.If I start persisting email content in database(MySQL),upto which extent I can store? This email system will be handling 1000+ users who are going to provide 10+ emailids for monitoring.I am using filesystem since bulk data can be stored in it,and even in need of additional space new hard diskettes can be added.http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications/1062519#1062519Comment by jezhilvalan on sharing message object between web applicationsjezhilvalan2009-07-02T11:52:00Z2009-07-02T11:52:00ZAlso in such scenario aren't we overloading MailGetter class with too much functionality?Obtaining the email,parsing the email message object and persisting the EmailBeanObject to DB via DAO.MailGetter also need to download bulk attachments.Suppose if MailGetter is iterating over 5 email ids which are provided for monitoring and presume MailGetter is currently downloading 10 MB attachment for first email id,new emails for the remaining 4 email ids will be obtained only after the completion of current download.How can we overcome such time consumptions?http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications/1062519#1062519Comment by jezhilvalan on sharing message object between web applicationsjezhilvalan2009-07-02T11:43:54Z2009-07-02T11:43:54ZEmailBean-with Setters & Getters for From,To,Subject,CC,BCC,Body,Attachment Name and Path
MailGetter-obtains email message object and parses email headers,body & attachment.Creates "EmailBean" & initialize Setters and passes it to DAO class
DAO class- with setObjToDB and getObjFromDB methods.receives Obj from MailGetter and stores it in DB using setObjToDB
MailFormatter-obtains object using DAO's getObjFromDB and formats the content which sent to mobile
Am I Comprehending it right? Since MailGetter & MailFormatter are running in separate server,how can I share DAO(commons.jar) between them?
http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications/1062519#1062519Comment by jezhilvalan on sharing message object between web applicationsjezhilvalan2009-07-02T08:00:18Z2009-07-02T08:00:18Zthanks for answering.Can you please illustrate the domain classes? What are these classes? So MailFormatter after obtaining emails from remote persists email headers, concised email body content and attachments in database.MailGetter queries the db for recently arrived email data. Am I comprehending it right? Can you please illustrate your concept?http://stackoverflow.com/questions/1062332/sharing-message-object-between-web-applications/1062519#1062519Comment by jezhilvalan on sharing message object between web applicationsjezhilvalan2009-06-30T10:09:44Z2009-06-30T10:09:44ZI'm developing a email client web application which will be communicated from a mobile for new emails.In the web app, there are 2 resource intensive classes. 1.MailGetter (iterates over the numerous emailids provided by user and obtains emails for emailids) 2. MailFormatter (parses Multipart content into simple text by removing html tags which will be sent to mobile and and this class also downloads bulk attachments)So I'm trying to implement MailGetter and MailFormatter as 2 web applications which will be in different servers. So I need to share message objects between these applications.http://stackoverflow.com/questions/1057456/passing-java-mail-message-object-from-between-applications/1057505#1057505Comment by jezhilvalan on passing java mail message object from between applicationsjezhilvalan2009-06-30T07:39:00Z2009-06-30T07:39:00Zthanks for answering. So I can use FileOutputStream and persist object as a file and then read it via MimeMessage constructor. Is FileOutputStream the best one to persist message? What if the persisted message is not MimeMessage? How can I read non-mime messages via input stream? Also MimeMessage constructor is demanding a session object for reading the message input stream. How can I create this session object in the other web application?