Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. proteome

    Error when passing INT to web service

    I have figred it out. It seems as if visual studio 2005 doesnt like having multiple projects under one solution when dealing with web services. If I put the console app and the web service in their own project folders everything is happy and the ints are not dropped. Go figure?? THanks for...
  2. proteome

    Error when passing INT to web service

    using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class Service : System.Web.Services.WebService { public class Pair...
  3. proteome

    Error when passing INT to web service

    THis was a test case I have a console app that calls this service and the service should return I believe 5 and 6 but it returns 0 and 0
  4. proteome

    Error when passing INT to web service

    Here is an example of another service that doesn't work this takes two intergers and passes them back to a console <?xml version="1.0" encoding="utf-8" ?> - <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"...
  5. proteome

    Error when passing INT to web service

    I am having a problem when passing a data to a webservice. The web service has three instance variables 2 of type int and one of type string. When I pass data to the web service the int varibles get set to 0 and the string variable is set to the correct data. ex. string temp = "Thanks" int x...
  6. proteome

    Implementation of HashTable that allows duplicates by using arraylists

    I have taken you comments and have adapted them a little, by extended the C# hashTable and adding 2 methods addDuplicates and getDuplicates, basically it adds the items to the hash via ArrayList.
  7. proteome

    HOWTO implement license keycode during installation process

    do you know of any methods off hand?
  8. proteome

    Implementation of HashTable that allows duplicates by using arraylists

    Has anyone seen code that allows duplicates to be added to a hash table. I know in java it is possible to extend a class such as hashtable and add new methods to it. Has anyone implemented a hash that allows duplicates. Such that the add command (if the key is there) add the data as an...
  9. proteome

    HOWTO implement license keycode during installation process

    Is it possible in visual studio to have the deployed application have a build in installation key. IF so how? If this cannot be done does anyone have a suggestion on how to implement one into the .msi so that I can keep my application secure. Is there freeware or something that can read in a...
  10. proteome

    datatable empty upon retrieval

    I have find my error I need to declare the DataTable as static.
  11. proteome

    datatable empty upon retrieval

    The problem is that the datatble upon calling the printout method contains no data. Mywebservicelass { public DataTable ledger; [WebMethod] public void Init() { Random rand = new Random(); //adds columns to the table...
  12. proteome

    Insert nto command trouble

    Sorry for all the confusion I have finally got it working here is the solution (I guess syntax is different??) You cannot use the query in the update statement. you get an error about the "Operation must be an updateable query" So make sure both are tables and use the following Update table1...
  13. proteome

    Insert nto command trouble

    no I am not running SQL server just access
  14. proteome

    Insert nto command trouble

    error: insert into table1 select 1,null no destination field name in insert into statement(1)
  15. proteome

    Insert nto command trouble

    I am recieving an error (missing operator in query expression) any clues? error: Additional information: Syntax error (missing operator) in query expression 'q1.col2 FROM table1 t1 JOIN query1 q1 ON t1.col1 = q1.col1'.
  16. proteome

    Insert nto command trouble

    question regaring solution from table1 t1 join query1 q1 on t1.col1 =q1.col1 I am confused about the statement table1 t1 and query1 q1 what does that mean? should it be From table1 join query1 on table1.col1 = query1.col1
  17. proteome

    Insert nto command trouble

    thanks I shall give it a try
  18. proteome

    Insert nto command trouble

    There is no key set up at the moment. The data in col1 of table1 can be found also in col1 of query 1.
  19. proteome

    Insert nto command trouble

    How can I insert data from a query into a table that already exists. I have tried using the insert into command but it seems to add the data from the query into the appropriate column but below blank rows. table1 before sql statement: col1 col2 data1 data2 data3 After following sql...

Part and Inventory Search

Back
Top