Skip to main content

Dubbo Telnet Client of python

Project description

通过telnet调用Dubbo接口

### Example

```python
import dubbo_telnet

Host = '192.168.1.203' # Doubble服务器IP
Port = 28008 # Doubble服务端口

# 初始化dubbo对象
conn = dubbo_telnet.connect(Host, Port)

# 设置telnet连接超时时间
conn.set_connect_timeout(10)

# 设置dubbo服务返回响应的编码
conn.set_encoding('gbk')

interface = 'com.zrj.pay.trade.api.QueryTradeService'
method = 'tradeDetailQuery'
param = '{"message": "HelloWorld"}'
print conn.invoke(interface, method, param)

command = 'invoke com.zrj.pay.trade.api.QueryTradeService.tradeDetailQuery({"message":"HelloWorld"})'
print conn.do(command)
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dubbo_telnet-1.0.1b3.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page