zoukankan      html  css  js  c++  java
  • 连接服务器方法

    在APP.confge中

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <appSettings>
    <add key="RepositoryAccount" value="sa"/>
    <add key="RepositoryPassword" value="sa"/>
    <add key="RepositoryServer" value="127.0.0.1"/>
    <add key="RepositoryPort" value=" 5060"/>
    </appSettings>
    <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
    </configuration>

    代码页

    一、//string UserAccount = ConfigurationManager.AppSettings["RepositoryAccount"];//获取位置文件里的用户登录账号
    //string UserPassword = ConfigurationManager.AppSettings["RepositoryPassword"];//获取位置文件里的用户登录密码
    //string Server = ConfigurationManager.AppSettings["RepositoryServer"];//获取位置文件里的服务器
    //string Port = ConfigurationManager.AppSettings["RepositoryPort"];//获取位置文件里的端口号
    //int port = Convert.ToInt32(Port);

    二、

    string UserAccount = UserName.Text;//获取输入的用户登录账号
    string UserPassword = Password.Text;//获取输入的用户登录密码
    string Server = TBServiceIp.Text;//获取输入的服务器IP
    string Port = TBPort.Text;//获取输入的的端口号
    int port = Convert.ToInt32(Port);

    AMConnection connection = new Gisquest.AM.Interfaces.AMConnection(Server, port);
    connection.Connect(UserAccount, UserPassword);
    clientInterface = new AMClient(connection);
    if(connection!=null)
    {
    MessageBox.Show("连接档案服务成功!!!");

    }

  • 相关阅读:
    Windows如何使用jstack跟踪异常代码
    内存溢出和内存泄漏的区别
    Tomcat 服务器性能优化
    Spotlight on oracle
    JVM性能调优监控工具jps、jstack、jmap、jhat、jstat使用详解(转VIII)
    linux下使用yum安装mysql
    MySQL监控系统MySQL MTOP的搭建(转VIII)
    SQL中Group By的使用
    视图
    触发器
  • 原文地址:https://www.cnblogs.com/ylldbk/p/5544794.html
Copyright © 2011-2022 走看看