No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
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 …
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 = "****"; …
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!
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[], …
is it possible to put void function into loop statement?
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!
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 …
The End.
timaquerra