Веб-сервис и клиент на другой машине..Net и JAVA - PullRequest
0 голосов
/ 06 февраля 2012

Я создал веб-сервисы и их веб-клиенты, использующие C # и Java, и они работают на одной машине, но я не знаю, как я могу использовать сервисы с другой машины. Кто-нибудь знает, какие шаги мне нужно предпринять или, по крайней мере, указывает мне правильное направление?

Это выдержка из моего веб-сервиса. (.Net)

using System;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Data;
using System.Data.SqlClient;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.OleDb;

/// <summary>
/// Summary description for WebService
/// </summary>
[WebService(Namespace = "http://deitel.com/", Description = "")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
// [System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.WebService
{
    SqlConnection conn;
    SqlDataReader dr;


    public WebService()
    {

        conn = new SqlConnection("Data Source=Owner-PC\\SQLEXPRESS;Initial Catalog=myDatabase;Integrated Security=True");
    }

    [WebMethod(Description = "Insert Person into People table.")]
    public void insertPerson(long id, string name, string surname, int age, long contact, string location)
    {
        SqlCommand command = new SqlCommand("INSERT INTO People(ID, Name, Surname, Age, Contact, Location) VALUES ('" + id
            + "','" + name + "','" + surname + "','" + age + "','"+ contact + "','" + location + "')", conn);

        conn.Open();
        command.ExecuteNonQuery();
        conn.Close();
    }

}
...