Java Code Examples for org.fisco.bcos.channel.client.Service#setOrgID()
The following examples show how to use
org.fisco.bcos.channel.client.Service#setOrgID() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Web3Config.java From WeBASE-Front with Apache License 2.0 | 6 votes |
/** * init Web3j of default group id 1 */ @Bean public Web3j getWeb3j(GroupChannelConnectionsConfig groupChannelConnectionsConfig) throws Exception { Service service = new Service(); service.setOrgID(orgName); service.setGroupId(independentGroupId); service.setThreadPool(sdkThreadPool()); service.setAllChannelConnections(groupChannelConnectionsConfig); service.run(); ChannelEthereumService channelEthereumService = new ChannelEthereumService(); channelEthereumService.setTimeout(timeout); channelEthereumService.setChannelService(service); Web3j web3j = Web3j.build(channelEthereumService, service.getGroupId()); // init node version NodeVersion version = web3j.getNodeVersion().send(); Constants.version = version.getNodeVersion().getVersion(); Constants.chainId = version.getNodeVersion().getChainID(); log.info("Chain's clientVersion:{}", Constants.version); return web3j; }
Example 2
Source File: Web3SDKConnector.java From WeEvent with Apache License 2.0 | 5 votes |
public static Service initService(Long groupId, FiscoConfig fiscoConfig) throws BrokerException { log.info("begin to initialize web3sdk's Service, group id: {}", groupId); try { int web3sdkTimeout = fiscoConfig.getWeb3sdkTimeout(); Service service = new Service(); // change jdk.tls.namedGroups will cause https's bug: ERR_SSL_VERSION_OR_CIPHER_MISMATCH service.setSetJavaOpt(false); // group info service.setOrgID(fiscoConfig.getOrgId()); service.setGroupId(groupId.intValue()); service.setConnectSeconds(web3sdkTimeout / 1000); // reconnect idle time 100ms service.setConnectSleepPerMillis(100); // connect key and string GroupChannelConnectionsConfig connectionsConfig = new GroupChannelConnectionsConfig(); PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); connectionsConfig.setCaCert(resolver.getResource("classpath:" + fiscoConfig.getCaCrtPath())); connectionsConfig.setSslCert(resolver.getResource("classpath:" + fiscoConfig.getSdkCrtPath())); connectionsConfig.setSslKey(resolver.getResource("classpath:" + fiscoConfig.getSdkKeyPath())); ChannelConnections channelConnections = new ChannelConnections(); channelConnections.setGroupId(groupId.intValue()); channelConnections.setConnectionsStr(Arrays.asList(fiscoConfig.getNodes().split(";"))); connectionsConfig.setAllChannelConnections(Collections.singletonList(channelConnections)); service.setAllChannelConnections(connectionsConfig); return service; } catch (Exception e) { log.error("init web3sdk's Service failed", e); throw new BrokerException(ErrorCode.WEB3SDK_INIT_SERVICE_ERROR); } }