Aastha Surya

Greenhorn
+ Follow
since Sep 15, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Aastha Surya

Hi All!!

I am trying out a webservice in Axis..
I refered the javaworld's
"Axis: The next generation of Apache SOAP " tutorial.

I tried a simple "HelloServer" program as webservice..
According to the doc.. when I tried to compile the client..which used org.apache.axis.client.ServiceClient;
package.. it failed as the axis.jar didnot has this class.. I tried to download varios axis.jar but it didn't work..

I tried another client program pasted below.
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;
import org.apache.axis.utils.Options;
import org.w3c.dom.*;
import javax.xml.rpc.ParameterMode;
import java.util.*;

public class Client1
{
public static void main(String[] args) throws Exception
{
try{
String endpoint = "http://localhost:8080/axis/HelloServer.jws";

Service service = new Service();
Call call = (Call) service.createCall();

call.setTargetEndpointAddress(new java.net.URL(endpoint));
call.setOperationName( "sayHelloTo" );

call.addParameter("szProduct",XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);

call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);



String ret = (String)call.invoke( new Object [] { args[0] });

System.out.println(ret);
}catch(Exception e){System.out.println("Exception...::"+e.toString());}
}
}

It compiled and when I started running it I got the following exception

Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.LogFactory

My classpath includes all axis.jar,jaxrpc and log4j-core.jar..

can anyone plz help me to figureout where exactly I am going wrong?

Also is there any good document which expalins how to deploy a web application in websphere?

Thanks
Aastha
[ September 23, 2005: Message edited by: Aastha Surya ]
18 years ago
Hi All!!

I am a greenhorn in Webservices..and studying it..
I want to know the relation between JAX-RPC and Axis..

Plz help

Thanks
Aastha
18 years ago
Hi!!

I am new to EJBs and in my project I use Stateless session beans extensively..

I want to know weather there is any stratergy or conditions when we need to use these beans.. How anyone can decide which EJB he has to use...

Plz suggest me some links where I can get more information..

Thanks
Aastha
Hi All,

For few of my projects I have used EJBs(websphere) .. but I have used onlt stateless session EJbs ..
Now I want to try other EJBs too..
Plz suggest me some document where I can get easy tutorials for stateful and entity Ejbs..

Also some tutorials which helps to figureout when we should use which kind of EJbs..



Thanks
Aastha
Thanks to Mr Raja and Mr Reddy.
Thanks for your valuable suggetion.

I agree that my profile includes frequest job changed..
But they were very necessary.. I left my first job as my training ended there..
and second one as my contract ended there.. 3rd one I had to leave as I got married and my husband stayes in pune..
In the company where I work, I am not satisfied with the way project is getting managed.. less appreciation too..

So I thought of trying for gud companies..

AW I'll ry to stay here for at least one year..


Regards
Aastha
18 years ago
Hi All,

I am working in a MNC,Pune from past few months.. I am from a small city in Karnataka..
I worked for an year as trainee and later I worked in a company near to my place for an year in contract basis.Then I shifted to another company and worked there for 5 months..
In all companies my performance was very appreciated.. but the salary level I was getting was not so gud compared to the cities lika Bangalore and Pune. Later because of some personal reasons..I got shifted to pune..and I joined a new job here...Now I get 15k per month

Here I am not satisfyed with the kind of work I am doing..
Also I feel I get less salary too. So I am searching for better opportunities.

As I have changed my jobs so frequently ..will it affect my career?
I have almost 2.7 years of experience and my main skillsets include:
java,jsp,servlets,ejb,struts,xml,xslt,webshere,tomcat
Plz help me to figureout what salary I should demand for my next job..
what is the pay scale for a candidate with 2+ years of experience in Pune..
As I have changed my jobs so frequently, will it affect my career any way?


Thanks
Aastha
18 years ago