entry for sde instance not found in services file解决方法[转]

当使用如下连接:

ipropertyset ppropertyset;

ppropertyset = new propertysetclass();

ppropertyset.setproperty("server", "服务器名");

ppropertyset.setproperties("database","sde");

ppropertyset.setproperty("instance", " esri_sde");

ppropertyset.setproperty("user", "sde");

ppropertyset.setproperty("password", "sde");

ppropertyset.setproperty("version", "sde.default");

二、解决办法

解决办法1:

在客户机“c:/windows/system32/drivers/etc”文件夹下services文件添加:

esri_sde    5151/tcp    #arcsde for oracle

在客户机“c:/windows/system32/drivers/etc”文件夹下host文件添加:

ip地址  服务器名

解决办法2:

将实例属性设置为:

ppropertyset.setproperty("instance", "port:5151");

时间: 2024-10-24 03:04:43

entry for sde instance not found in services file解决方法[转]的相关文章

java中"no enclosing instance of type * is accessible"的解决方法

这种情况一般发生在“在静态方法里面使用内部类” 测试代码: public class Test { public static void main(String[] args) { A a = new A(1); } class A { int x; public A() {} public A(int x) { this.x = x; } } } 上面这份代码在main函数里面会发生编译错误,为了解决问题,让我们先看看编译器的提示: 编译器告诉我们,没有可访问的Test类的实例,意味着下面将要

the service mysql56 was not found in the Windows services的解决办法

mysql无法启动,无法改变状态-CSDN论坛-CSDN.NET-中国最大的IT技术社区 http://bbs.csdn.net/topics/390943788   具体描述: 关闭,重启mysql时提示如下错误: the the service mysql56 failed the most recent status change request with the message the service mysql56 was not found in the Windows servic

出现“unrecognized selector sent to instance”问题原因之一及解决方法。

? 对于iPhone开发初学者来说,很想实现自己在iPhone上的第一个小程序,准备工作就绪侯就信心满满的开始了!一般来说大家可能都是从Hello World做起吧. 反正我是的,:),如果按照文档上的说明去做,一般也不会出现什么问题.也建议初学者这样开始,毕竟会增强我们自己的信心. 但是当我们自己独立去做一个Button实现响应事件的小程序的时候,有时候确给我们出现了一点点小问题.也就是我题目所说的.下边我就列出出现此问题的 错误代码以及解决方式. code: [cpp] view plain

从 A/Looper: Could not create epoll instance. errno=24 错误浅谈解决各种 bug 的思路

今天代码写着写着就莫名闪退了,手机也没有“程序停止运行”的提示,logcat也没有看到蓝色的调用栈log,这样的闪退最是蛋疼了,还好必现.复现几次之后,终于从logcat中看到了一行可疑的log: A/Looper: Could not create epoll instance. errno=24 ,看起来又是在native层闪退了.本文就把这个问题的分析解决过程记录了下来. 方法论 遇见没填过的坑,第一反应就是Google之,果然前几个结果中一个 Stack Overflow的问答 就为这个

null id in entry (don't flush the Session after an exception occurs) 解决方法

最近在学习基于ssh的注解的系统,然后在实现往数据库增加记录时可以增加第一个,第二个就报错,在网上查了很多资料,大多都是 该异常信息是在提示我们没有为数据中的非空字段设置值. 然后就一直没有明白 明明都赋值了 为什么还会这样 ,然后我把unique字段和非空字段去掉即//@Column(name = "zh", unique = true, nullable = false)就好了. null id in entry (don't flush the Session after an

我的Android进阶之旅------>Android无第三方Jar包的源代报错:The current class path entry belongs to container ...的解决方法

今天使用第三方Jar包afinal.jar时候,想看一下源代码,无法看 然后像添加jar对应的源码包,也无法添加相应的源代码,报错如下:The current class path entry belongs to container 'Android Dependencies' which does not allow user modifications to source attachments on its entries . 如下图所示: 解决方法: 1.接着在工程目录下新建一个lib

我的Android进阶之旅------>Android编译错误java.util.zip.ZipException: duplicate entry的解决方法

今天在Android Studio中把另外一个项目引入当前项目,编译的时候出现了java.util.zip.ZipException: duplicate entry错误. 错误例如以下所看到的: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':watch:packageAllDebugClassesForMultiDex'. > java.util.zip.ZipEx

xcode开发中遇到unrecognized selector sent to instance 0x........的解决方法

首先贴一下问题代码 1 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { 2 if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) { 3 UIButton *numberButton = [UIButton buttonWithType:UIButtonTypeCustom]; 4 numbe

sde库缺少lib包解决方法

缺少lib包解决方法: 10.0                               配置ST_Geometry SDE安装后的类库: 修改listener.ora文件 修改tnsnames.ora文件 修改oracle用户的.profile文件,加入SDEHOME/lib路径 监听重启前状态(动态监听): 重启监听,重启后为静态监听 验证配置是否成功,打开pl/sql,输入select sde.st_astext(shape) from china进行测试. 配置成功.   10.1