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
1
vote
1 answer

Raspberry Pi usb redirect issue

Okay I am going to try and be as discriptive as possible here to get this problem solved. I work at a company that makes BIG gear boxes and we have computers that run our Mills/Laths. These computers are currently FIT-PCs running XP. These computers…
Nitroxsage
  • 23
  • 1
  • 2
  • 7
1
vote
0 answers

java.lang.VerifyError in stand-alone thin client websphere 7 application

Properties properties = new Properties(); properties.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory"); properties.put(Context.PROVIDER_URL, url); InitialContext context = new…
Night Wolf
  • 23
  • 3
1
vote
4 answers

How can i get the Client Computer name

I am using C# Framework 4.0 Windows Form. My program is installed on a server TSE. There are 11 light clients that connect to this server. When one of these clients launches my progam, how can I get his PC name ?
user609511
  • 4,091
  • 12
  • 54
  • 86
1
vote
1 answer

Fat/Thick Client vs Thin Client

I have a question, I was developing a desktop web application based on a REST API in Java using Servlets and JSP, but my boss said that it's not the best way to create a web application, because servlets and JSP are working as fat/thick clients( a…
Ion Morozan
  • 783
  • 1
  • 9
  • 13
1
vote
1 answer

Flowing from a thin client (web browser) to an installed and running application

So I am working an a large scale application. We are in the process of moving from an installed java application to a web based application. During the transition release(s) we need the ability to bring up certain screens on the locally installed…
Kodi
  • 767
  • 7
  • 20
1
vote
1 answer

Java2D and ThinClients - Performance issue

I have a Swing Application which is run (among other environments) on HPUX Blades and displayed on ThinClients. Unfortunately, we developed on Windows boxes. With the Blade/ThinClient setup, we have severe performance issues, which I believe might…
Mike Adler
  • 1,199
  • 9
  • 24
0
votes
1 answer

Terminal Services - can a user's physical location be identified?

When using Terminal Services (maybe with or maybe without Citrix add-ons), can the physical location of the user be identified? The client workstation h/w is a mixture - sometimes a Windows pc, other times a thin client unit (eg Wyse, etc). Our app…
MarkL
  • 1,721
  • 1
  • 11
  • 22
0
votes
1 answer

Client failed to connect to the D-BUS daemon. Failed to connect to socket /tmp/dbus-: Connection refused

I'm seeing the error, as listed in the title, quite often. I'm using Linux Mint, a couple different versions (18.3 and 21.1 to be precise). I'm running applications, from the command-line, on a VM (under Hyper-V, if it matters) and actually driving…
Meower68
  • 929
  • 9
  • 21
0
votes
0 answers

How to get audio in & out to work on remote session using FreeRDP on HP ThinClient

I’m runnning into issues where I cannot get audio in or out to work on my Hyper-V Windows Desktops when connected from the ThinClient using FreeRDP.HP ThinClient T540ThinClient 7.2 SP 13.5FreeRDP version 2.10 These are ThinOS Ubuntu machines using…
tlbeck
  • 1
0
votes
2 answers

Thin client And Net programming

i have built a clientServer application ( C# and VS 2008 ) for a LAN network consist of several PCs . it's working fine . now we have a network consist of a server and thin clients . i do have no idea where and how to install my client application…
royasaz
  • 1
  • 1
0
votes
1 answer

Weblogic 6.1 not able to resolve Oracle DB connection string with Service_name

Working on a legacy web application developed in java 1.3, hosted using Weblogic 6.1, on a unix server that connects to two Databases maintained through connection pools. Due to industry level change, many Databases got reconfigured. Till now they…
Vishesh
  • 133
  • 3
  • 11
0
votes
0 answers

Error getting WsnNameService properties while connecting to EJB websphere

I am trying to access EJB websphere and using below dependency to have the connectivity. ibm com.ibm.ws.ejb.thinclient 8.5.0
Anshu
  • 69
  • 2
  • 18
0
votes
0 answers

Can I use Blazor Webassembly app on zero-client systems?

I'd like to develop a Blazor WASM for a company. This company uses the zero-client and virtualization to providing OS for users. Blazor WebAssembly run your application as web assembly binaries directly in the browser and so use more resources from…
0
votes
1 answer

Apache Ignite Scan Query is not working in .net

I'm using Apache Ignite on Azure Kubernetes service. I need to get the registered devices list from Ignite in lately. But the scan query is not working. Here is my device object; public class Device { [Required] public string Id { get; set; } …
OguzKaanAkyalcin
  • 621
  • 2
  • 8
  • 25
0
votes
1 answer

Map JSON CDC data in cache value to Ignite sqlline thin client tables

Basically, I am trying to send CDC JSON data via connectors from Kafka topics to Ignite Cache. And for transformation purpose I want to look up this JSON data in table view in Ignite. How can I map these JSON fields to ignite SQLline table's…