Questions tagged [thin-client]

A thin client is a computer or a computer program that depends heavily on some other computer (its server) to fulfill its computational roles.

Thin clients occur as components of a broader computer infrastructure, where many clients share their computations with the same server. As such, thin client infrastructures can be viewed as providing some computing service via several user interfaces. This is desirable in contexts where individual fat clients have much more functionality or power than the infrastructure requires.

The most common type of modern thin client is a low-end computer terminal which only provides a graphical user interface - or more recently, in some cases, a web browser - to the end user.

74 questions
0
votes
1 answer

Is there a way to set an Ignite thin Client ClassLoader?

The Ignite thick client provides a method to set the class loader. I have successfully used this to avoid class not found exception when removing values from Ignite Caches. Otherwise I get conflicts with the class loader from my tomcat application.…
RichardFeynman
  • 478
  • 1
  • 6
  • 16
0
votes
1 answer

Web Application on a Thin Client Based Network

I am currently developing a web application with rich interfaces using JSF. My application is deployed on Tomcat on a server in the network and majority of users access the server with Remote Desktop Protocol (RDP) on that server then they use…
Mustafa
  • 443
  • 1
  • 4
  • 15
0
votes
1 answer

SessionStateStoreProvider implementation using Ignite thin client

We are attempting to use Apache Ignite as a distributed storage for session variables in a web farm environment. I know that Apache Ignite already has a thick client session state provider in nuget but it is too heavy and too complex for our current…
Kaizer69
  • 373
  • 4
  • 18
0
votes
1 answer

Is there efficient way to load data to cache with ignite python thin client?

using put() and put_all() is very inefficient to load large amount of data. And there is no interface in python thin client ( pyignite ) to use data streamer. Is there better way?
Top Market
  • 11
  • 2
0
votes
1 answer

ClassCastException on thinClient in Apache Ignite

ClientConfiguration cfg = new ClientConfiguration().setAddresses("127.0.0.1:10800"); try (IgniteClient igniteClient = Ignition.startClient(cfg)) { System.out.println(">>> Thin client put-get example started."); final…
이평범
  • 1
  • 1
0
votes
1 answer

Why IgniteClient doesnot support atomic sequence?

I am setting up JavathinClient. Need to understand how can i get hold of atomic sequence? getAtomicSeq() is accessible through ignite instance but not with IgniteClient. private void init(IgniteClient client, String tableName) { ClientCache…
user10202788
  • 17
  • 1
  • 5
0
votes
1 answer

How can I get an Electron and Socket.io app to run in a thin client architecture?

I created an Electron for a tiny company that connects to a Socket.io server. This app obtains the username of the logged in user and the MAC address and sends this info to the server for processing. All of this is working fine with regular…
Rookie
  • 859
  • 8
  • 22
0
votes
1 answer

tns run android displays colours instead of actual application

I'm following the tutorial on how to setup the android emulator through https://docs.nativescript.org/angular/tooling/android-virtual-devices. I ran these commands Change into the tools bin dir : cd /usr/local/android/sdk/tools/bin : sudo chmod…
map7
  • 5,096
  • 6
  • 65
  • 128
0
votes
0 answers

Ignite cluster is unavailable when attempting to put values in an ignite cache

For integration testing, I have spun up an ignite client inside a docker test container to which I connect with an ignite thin client. I then create a test cache by calling getOrCreateCache and store the reference to it. However, when I try to call…
Rayan
  • 1
  • 1
0
votes
0 answers

Server to provide VM to a thin client

I have a strong server and 2 thin clients. I'm looking for opensource software so i can stream or provide a VM from the server to the thin client. My plan is that the thin client will have to use pxe boot, to boot into the vm. Anyone has a solution…
KHaemels
  • 85
  • 1
  • 3
  • 15
0
votes
1 answer

Load SSL configuration via JVM arguments relative path

Trying to load sas.client.props file present in classpath I have configuration inside resource/conf directory. I would like to send this file as argument to my program via JVM arguments -D. This works:…
Levijatanu
  • 371
  • 2
  • 17
0
votes
1 answer

java.sql.SQLException: Oracle Error ORA-12650DSRA0010E: SQL State = 99999, Error Code = 1,265

I have a WAS 6.1 version insallted and it is using Java 1.5. Recently we have updated the database to Oracle 12c. When I try to connect to the 12c Data source Im getting the error "java.sql.SQLException: Oracle Error ORA-12650DSRA0010E: SQL…
Sreejith
  • 1
  • 2
0
votes
1 answer

AllJoyn Thin Client - Building the services samples on Linux

I have tried to build the service samples AllJoyn Thin Client on Linux but I'm getting an error. Does anyone know how to resolve this problem? The problem is probably in one file called Debug.h, which is missing. The prompt returns this message:…
0
votes
2 answers

Building the services samples AllJoyn Thin Client on Linux

I have tried to build the service samples AllJoyn Thin Client on Linux but I'm getting an error. Does anyone know how to resolve this problem ? I have searched some solutions but I couldn't find any answer that fit into my problem. The prompt…
0
votes
1 answer

Unable to Enumerate and Delete Registry Values Using VBScript

I need to iterate through the registry foe each application for which the following key exists: HKCU\Software\Microsoft\Office\15.0\[NAME OF APPLICATION]\Resiliency\DisabledItems So that I can delete any values stored here. I wrote the below…
Bassie
  • 9,529
  • 8
  • 68
  • 159