Questions tagged [java-client]
134 questions
0
votes
1 answer
How can I get all rows in Cassandra between a given Composite key range?
My data storage format is:
RowKey: a:b:c
=> ( counter=d:e:f:g, value=1)
where,
a: Timestamp (Format : YYYYMMDDHH, HH varies from 00 - 23)
b: encoded Url
c: id (Varies from 0 - 9)
d: string type
e: floating value
f: floating value
g:…

Sitesh Shrivastava
- 29
- 2
- 12
0
votes
1 answer
Avoiding Duplication of RiakKey in BaseEntity and derived classes
I have a base class which is a Riak entity, and some derived classes that extends BaseEntity.
BaseEntity has a field named Identifier which is annotated as @RiakKey.
but apparently this is not enought. It seems that I must have the Identifier field,…

o'mac
- 99
- 5
0
votes
1 answer
Java Client for Wcf service fedarated with Adfs
I have a wcf service which is connected to an adfs as a relaying party. This adfs is acting as a identity provider. now in client side there is a Java client which want to call the wcf service but before that it have to authenticated in adfs with…

Anup
- 1,502
- 2
- 15
- 31
0
votes
2 answers
How to send class equals implementation to client using a WCF Web Server
I'm developing an aplication in java (JSF) which communicates whith an WCF web server.
I developed the webserver using c#, and I'm havin trouble to send the equals implementation of an complex object to the java client.
For example, consider this c#…

PauloRLA
- 3
- 1
-1
votes
1 answer
what is the alternate of hz_Proxy_server_client.xml for 5.x.x series ? using javaclient
this is the xml code for the hz_proxy_server.xml and
someone please write the alternate code for this one for the hazelcast 5.2.1
…

Deepak_M
- 11
- 4
-1
votes
1 answer
create kubernetes java client controller to watch pods
I want to use the kubernetes java client to create a controller (using shared informer) to watch for create, update, and delete events for pods in a specific namespace. I've found some examples that watch deployments and list nodes...but cannot find…

coder123
- 3
- 2
-1
votes
1 answer
Java Client SDK for Hyperledger blockchain
Under https://github.com/hyperledger there are many Java Client SDK projects like fabric-gateway / fabric-gateway-java / fabric-sdk-java.
Why are there so many Java clients?
How do I choose which one to use?

indranil32
- 140
- 1
- 9
-1
votes
1 answer
Need help packaging a webservice client jar in Java
We have a series of web service APIs that we have also written clients for so that we can easily re-use them in other Java applications. I now have need to be able to use the clients in an environment outside of a webserver. I used the…

SteveS
- 1,008
- 3
- 18
- 32
-1
votes
1 answer
How to do Post for https using Apache client
Hi i am trying to do post request in SOAP for HTTPS using Apache client.However I can do easily with HTTP with Apache client.But getting difficult with HTPPS.I have tried google a lots but not getting the proper documentation.Somewhere i found, but…

Md Noorshid
- 107
- 12
-1
votes
1 answer
how to make client server program to continuously run
I am creating a Java a simple client/server program although both are just working fine. The problem is that when the client or the server encountered an error it will stop. Is there a way for my client/server app to continuously run even if it…

dimas
- 2,487
- 6
- 40
- 66
-1
votes
1 answer
SOAP UI basic authentication in java
This is my Code:
public class JavaSoapUi {
public static void main(String[] args) throws Exception {
String requestUrl = "myurl";
URLConnection connection =new URL(requestUrl).openConnection();
System.out.println( "orignal url: " +…

Rajesh kannan
- 71
- 1
- 2
- 11
-1
votes
1 answer
compability of data types between java client and wcf service
I am developing a WCF Service application with basicHttpBinding option. I chosed basicHttpBinding because my client could be a Java client, a Visual Basic Client etc.
Now i want to be sure that the datatypes which i used in my application are…

Fer
- 1,962
- 7
- 29
- 58
-2
votes
1 answer
How to listen or watch pod ip change event history in kubernetes?
I want to save the history pod ip changes for troubleshooting in future.
How can i do that ?
Is there api in k8s io.fabric client i can use?

hnd4r7
- 7
- 1
- 4
-2
votes
1 answer
which appium java-client is used to test android oreo?
I am trying to automate android oreo using appium..
My framework is built on java-client 2.x.. can I use same with android O and uiautomator2? which is the least version of appium java-client required to automate it?

thisisdude
- 543
- 1
- 7
- 31