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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ifssolution

  1. ifssolution

    Invoke external Web Services

    The client use ASP. NET too. Thanks
  2. ifssolution

    Invoke external Web Services

    How can I Invoke my ASP.NET Web services from an external server and a different platform? For example: [WebMethod] public string Hello(string name) { return "Hello " + name; } Thanks
  3. ifssolution

    Web Services response

    Well I´m using this WebMethod: [WebMethod] public language[] GetLanguages() { int i=0; ArrayList Lang_Array = ... language[] Lang_Info = new language[Lang_Array.Count]; foreach (ArrayList item in Lang_Array) { Lang_Info[i].code = item[0].ToString()...
  4. ifssolution

    Web Services response

    Am I asking for Web Services problems in the correct forum?
  5. ifssolution

    Web Services response

    Dear: I have a Web Services with a WebMethod: public ArrayList GetLanguages() { ArrayList Lang_Array = ...; return Lang_Array; } and the response is: <?xml version="1.0" encoding="utf-8" ?> <ArrayOfAnyType xmlns:xsd="http://www.w3.org/2001/XMLSchema"...

Part and Inventory Search

Back
Top