Manikandan Sundaramoorthy

Greenhorn
+ Follow
since Apr 09, 2009
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 Manikandan Sundaramoorthy

hi ,

In response java class file having one list<ref1> class, the ref1 class on another package in that ref1 class file having one list<ref2> class, in the ref2 class having a data what i've to get finally.


i'm not able get the result


thanks and Regards
Manikandan
12 years ago
Hi ,

i am using net beans for the web services client,if i pass correct input to the web services able to get exact output but if didn't it's giving the blank response,when i am testing in the SOAP UI i'm getting <data not found> in the soap response. i checked in the auto generated sources i found that java file but it's in the different package, i don't know how to access from the another package.


Thanks and Regards
Manikandan
12 years ago
hi Ulf Dittmer ,srinivas thank you very much after 2 days i solved this problem.problem in the class file.


Thanks and Regards

Manikandan






12 years ago
Hi ,

i am using netbeans for web service client .


in this above code i am not able to set value1 and value2, Error is not able to find setvalue1 and value2.



the above code is reqtype class its automatically generated from netbeans based on the wsdl file.


Thanks and Regards
manikandan
12 years ago

Hi ,

My Parent Window Contain some N number of CheckBox and my Child Window Contain N number of CheckBox
if i checked some value in the child window i need to add to the parent windows

parent.html




child.html


when i checked "Item5" in the child window i need to add in the parent window.

Thanks and Regards,
Manikandan.s

hi Ivan Krizsan and Bogumil thanks for your guidance .those links are very useful for me.
now i done the web service client using net-beans it's working properly, but how can i call that url with dynamic variable using java.


Thanks and Regards
Manikandan
13 years ago
hi,

I am trying to convert the WSDL file to JAVA using Eclipse IDE. first i uploaded the WSDL file in Web Services,after building the Services i got the Class files like Soap , Skeleton , Impl and Proxy.but i don't how to place the request to web services with this class files, whether i need to write any client side code?

Thanks and Regards
Mani
13 years ago


This is my response Xml file i need to read the "Return_Msg" tag value(Hai)

I'm trying with below code but its returning NullPointerException




i don't know how to parse the xml tag please help me
14 years ago
Thank You for Reply Jesper Young

I don't Understand what you are telling exactly "put the data from the response in an XML Document and extract the data"
I'm Getting Response value in the string i don't how to Pass the String to Parse XML Data Please Give some Example

14 years ago
Help Needed...


URL url = new URL(requestUrl.toString());
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String inputLine;
// System.out.println("-----RESPONSE START-----");
while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);



NodeList listOfPersons = inputLine.getElementsByTagName("Information");
int totalPersons = listOfPersons.getLength();
System.out.println("Total no of people : " + totalPersons);

for(int s=0; s<listOfPersons.getLength() ; s++){


Node firstPersonNode = listOfPersons.item(s);
if(firstPersonNode.getNodeType() == Node.ELEMENT_NODE){


Element firstPersonElement = (Element)firstPersonNode;

//-------
NodeList firstNameList = firstPersonElement.getElementsByTagName("Return_Msg");
Element firstNameElement = (Element)firstNameList.item(0);

NodeList textFNList = firstNameElement.getChildNodes();
System.out.println("First Name : " + ((Node)textFNList.item(0)).getNodeValue().trim());



First i'm reading xml file using http then i want to parse value i don't know how to call inputLine (that is in italic)

14 years ago
Thank you Very much kayanaat sidiqui

Now its working... the application
14 years ago
I know how to create a file but i want create a file with current time ... i don't know any one tell me
14 years ago