Tome Wagese

Greenhorn
+ Follow
since Jan 13, 2007
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 Tome Wagese

Thanks everyone.
Greetings everyone,
When i try to print the result, it only prints first row even though it has multiple rows.What am i doing wrong here.

I need to build dynamic charts/graphs for my web based reports.
Does anybody know any free libraries?
Hi Karnam,
Thanks for the reply.
I googled a lot looking for simple example I could start working off of and so far no luck.
Is there any reference material/link that you can suggest?
Thanks.
17 years ago
I got the exception figured out. I was missing jar files.
Now how do I make it so that the method return xml wrapped columns instead of returning simple string.....
Thanks
17 years ago
Hello Dittmer,
Thanks for the replies. Firstly I admit that I am new in this area
Below is what I have tested so far even though my requirement is little complex.I need to make Web Service method that return data stored in SQL table when client usages that service (Client program is supposed to make CSV file out it) but I am just testing it with simple servlet (in servlet I am getting javax.xml.ws.soap.SOAPFaultException: Internal server error)(IDE used NetBean 5.5, Web Server Tomcat 6.x)

Test Web Method

Test servelet client


Thanks for looking into it.
17 years ago
Hi,
To be honest, I need help with both creating and consuming Web Services.
I spent all weekend learning about JAX-WS but have not been able to find any real example except simple add and subtract methods.
I implemented those simple Web Services in NetBean 5.5 but I need DB related Web Services example.

Thanks again.
17 years ago
Hello,

I am a beginner in this area but have an urgent need
to fulfill client request.I have some data stored in
SQL table and client wants access to that data in the form of
Web Service instead of ODBC connection. Any step in the right direction would be much appreciated.
Thanks
[ January 27, 2007: Message edited by: Bear Bibeault ]
17 years ago
Thank.
17 years ago
JSP
Greetings,

I am using JSTL to execute stored procedure.
Everything is cool except I do not see a way to do multiple result sets.
My Stored Procedure returns more multiple/ Unknown result sets.
Please advice.
Thanks.
17 years ago
JSP
Problem was that i needed sit down and learn EL syntax before trying out there things.
finally I got it to work and hopefully this will help save many hours.

THIS WORKS
${myxxx:concat("firstString","secondString")}

THIS DOES NOT WORK
${param["str1"]}
${param["str2"]}
${myxxx:concat(param["str1"], param["str2"])}
By the way, if i use plain old jsp like this
it works But EL
<%
out.print(MyELFunctions.concat("aaaasdf","asdfzzz"));
%>
EL way does not work...
<%@ taglib uri="http://www.server.com/example-taglib" prefix="myxxx" %>
${param["str1"]} <br>
${param["str2"]} <br>
${myxxx:concat(param["str1asdf"], param["str2asd"])}
WHY WHY WHY
Thanks a lot for looking into this for me.
it's exactly same as example i am trying to test foud at
http://java.boot.by/wcd-guide/ch07s04.html
only thing different in mine is that MyELFunctions class is inside classes directory instead of package.
<%@ taglib prefix="my" uri="http://www.server.com/example-taglib" %>
<html>
<head><title>EL Function example</title></head>
<body>
str1 is : ${param["str1"]} <br>
str2 is : ${param["str2"]} <br>
concatenated : ${my:concat(param["str1"], param["str2"])}
</body>
</html>