Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~759 People Reached
Favorite Tags
c x 6
java x 3
rss x 1
Member Avatar for timaquerra

Hello, I made Web Service which connect to database and retrieve data. Web service works file, I can connect to database and get data, here is my code: [CODE] package mypack; import javax.jws.WebService; import javax.jws.WebMethod; import java.util.*; import java.sql.*; import getInfo.*; /** * * @author Aziz */ @WebService() public class …

0
64
Member Avatar for timaquerra

Hello, I created a web service to access oracle database. This is my code: [CODE] package mypack; import java.util.List; import javax.jws.WebService; import javax.jws.WebMethod; import javax.jws.WebParam; import java.sql.*; import java.util.ArrayList; @WebService() public class AutoRepairWS { @WebMethod public List getCustomerId(@WebParam(name = "Cust_Id") String Cust_Id){ String user = "****"; String password = "****"; …

Member Avatar for ~s.o.s~
0
188
Member Avatar for timaquerra

Hi guys, Im looking for some tutorial which could illustrate development of database driven web services. I tried to search some through google, however no success so far. Thanks in advance!

0
63
Member Avatar for timaquerra

Hello, I have a program which searches for (using binary search) specific word in ordered list and counts number of comparisons it makes until it finds the target! My problem is: how can I count average of number of comparisons? Here is how searching function works: [CODE] int binary_search(char *array[], …

Member Avatar for kolosick.m188
0
75
Member Avatar for timaquerra
Member Avatar for timaquerra

hello, i'm making program which repeatedly (through while) gets input from the user ... program should stop whenever user enters "\n" (or enter button)! thanks in advance!

Member Avatar for gerard4143
0
82
Member Avatar for timaquerra

Hello guys! I'm new to C language and I need help to write a program which searches specific word in text file using Binary Search and count the number of comparisons!!! My text file consist of following data: apple book clock dog elephant fat hello key lucky moon olive paper …

Member Avatar for timaquerra
0
119