Search Results

0
votes
2answers
153 views

passing java mail message object from between applications

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 m …
0
votes
1answer
110 views

sharing message object between web applications

I need to share java mail message objects between two web applications(A and B). WebApplication A obtains the message and write it to the outputStream for(int i=0;i<mess …
1
vote
3answers
290 views

using rmic in netbeans

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? …
0
votes
0answers
79 views

adding jar files in netbeans rmic tag

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 <rmic base="${build.classes.dir}" class …
0
votes
1answer
184 views

RMI ClassNotFoundException

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 machin …
1
vote
3answers
138 views

closing rmi registry

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 …
0
votes
0answers
25 views

rmi NoSuchObjectException

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. …
0
votes
3answers
41 views

CustomException checked or unchecked

If I declare class Class MyOwnException extends Exception { } Is this is a checked or unchecked exception? …
5
votes
3answers
194 views

Checked Unchecked Exceptions

Consider the following code private int meth() { try { return 1; } catch(Exception ex) { return 2; } finally { return 3; } } …
1
vote
5answers
101 views

Implementation for custom keys in Hashtable

If we implement our own keys in Hashtable, then our custom hashtable keys must implement public int hashCode() { } and public Object equals(Object …
0
votes
5answers
117 views

hashCode implementation for singleton class

what will be the implementation for public int hashCode() { } method in singleton class? Please do provide me the implementation …