subscribe

2015-08-22 Thread Lars Hermes

subscribe

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



[java ee programming] Re: Using both C# and Java

2009-08-22 Thread Lars Hermes

Hi,

I think the easist way to do this is to implement the backend  
functionality as a session bean and expose this bean as webservice.  
The webservice can then be called by the C# frontend.

Cheers,
Lars

Am 22.08.2009 um 17:04 schrieb swetha:


 Hi GuysCan any1 tell me how we can use both C# and Java in a
 single applicationfor example i want to add two numbers ...is it
 possible to do like.create front end(GUI) using C# and then do
 back end in Java (adding both the numbers) .and then displaying it
 back on the screen...can any1 please help me on this.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Java EE (J2EE) Programming with Passion! group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en
-~--~~~~--~~--~--~---



[java ee programming] Re: Regarding Servlet advanced homework

2009-04-07 Thread Lars Hermes
Hello,
take a look to the API documentation of HttpSession. The methods (setAttribute 
and getAttribute) you're looking for are described there. 

To see the output of the server, you have to switch to the server's out console 
at the bottom.
Hope this helps
Cheers, Lars 

Hello to all.
I have suffered from a little problem regarding Svelte advanced homework.I have 
created my own listener class and also Greeting servlet and responseServlet.
i don't know how can i add attributes of http session in greetingservlet and 
remove attributes of http session  in responseservlet.
Eventhough,I am using Netbeans6.5 ,I was not able to see the log tab of server.
I have tried out because of this .
Does anyone know how should i come out from this problem.
 
Thanking You.
-- 
Regards
KolluraniPandian A
(Living in Virtual World) 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Java 
EE (J2EE) Programming with Passion! group.
To post to this group, send email to 
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to 
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en
-~--~~~~--~~--~--~---



[java ee programming] Re: unclear new Object declaration

2009-03-19 Thread Lars Hermes

Hello,

to answer your question: NO it is not the same! In the first case you you only 
declare a variable of type Manager which has no reference to an object (i.e. 
null). In the second case you also create an object of type Manager and you 
immediately assign a reference to a newly created object of type Manager (i.e. 
new Manager()). If you set the reference of the variable manager to null 
afterwards, you throw the newly created object away and it will be cleared up 
by the GC. Maybe you'll take a look in the Standard Java programming course of 
Javapassion to gain a deeper understanding of OO.

Cheers
Lars 


I am trying to discern another programmer's code (good luck I know)

In a class that tests connectivity to a datasource, the first line
after the try { opening up is a statement that I am not clear on.

it is like this
import model.Manager;
public class DataSourceConnectionObject {
public static void main(String[] args) {
try {
Manager manager = null;

is this setting a new object of Manager named manager and setting it
to null ?
it this the same as if manager = new Manager and set manager =null on
second line?

just making sure its not doing something else...
thx


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Java 
EE (J2EE) Programming with Passion! group.
To post to this group, send email to 
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to 
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en
-~--~~~~--~~--~--~---