Questions tagged [client-applications]

Use this tag for questions related to client applications, that usually integrate with the processing capabilities of other applications.

The Dictionary entry on client application is:

Any software program that integrates with the processing capabilities of another program, esp. that accesses distributed objects provided by a server application.

is used for questions related to the nature/design of them, and/or how to make them work.

20 questions
12
votes
1 answer

How to run spring-boot as a client application?

I have 2 Main entry points in a single application. The first main starts the server, maps the controllers and starts some worker threads. These workers receive messages from cloud queues. In case of increased load, I want to be able to add…
amitection
  • 2,696
  • 8
  • 25
  • 46
12
votes
7 answers

What logging is good logging for your app?

So we've discussed logging in passing at my place of work and I was wondering if some of you guys here could give me some ideas of your approaches? Typically our scenario is, no logging really at all, and mostly .NET apps, winforms/WPF clients…
crucible
  • 3,109
  • 2
  • 28
  • 35
11
votes
3 answers

How to execute a method periodically from WPF client application using threading or timer

I am developing a WPF client application.This app sends data periodically to the webservice. When user logged into the app I want run particular method every 5 mts to send data to the .asmx service. My question is whether I need to use threading or…
umsateesh
  • 163
  • 1
  • 1
  • 12
4
votes
1 answer

Issue: try connect with a Socket.io Server without port using a client application

everyone! I'm in an issue. I'm trying to connect in a server with my client application. My server is hosting by Modulus that have no port to access URL. When I try to call io('my-application.onmodulus.net'), the browser (chrome) returns me a failed…
3
votes
4 answers

WebServiceTransportException: Unauthorized [401] in Spring-WS

We are struggling to configure our web app to be able to connect with web services via Spring WS. We have tried to use the example from the documentation of client-side Spring-WS, but we end up with a WebServiceTransportException. The XML config…
Keibi
  • 31
  • 1
  • 3
2
votes
5 answers

Would it be a bad idea to develop a desktop application that directly accesses the SQL server?

I want to install a desktop application (on many stations - about 10-20) should access the SQL Server directly, no Services, and no server-DALs. The application will be installed on a local network on about 10 machines, while one of them is a…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
2
votes
1 answer

Make Multiple Controls Use Same Tool Tip Message (c# Client App.)

I would like the same tool tip message (the one entered in the "ToolTip on myControlId" field) to be displayed when the mouse is hovered over an area which contains multiple controls. I tried putting the controls inside a Panel and GroupBox, but it…
StronglyTyped
  • 2,134
  • 5
  • 28
  • 48
1
vote
1 answer

Embed NoSQL document/EAV database in desktop program, like SQLite3, but NoSQL?

What's the best choice if I want to embed a document db or EAV db in client application? Something like "SQLite3 for NoSQL", small runtime library, index arbitary schema, small memory footprint, etc. C/C++ API or ActiveX/COM interface would be…
est
  • 11,429
  • 14
  • 70
  • 118
1
vote
0 answers

TLS handshake failed with error tls: first record does not look like a TLS handshake

trying to connecting to the blockchain hyperledger network using node Js app. Doing invoke() to the chaincode using client app showing this error. Can anyone please help me out for this issue
1
vote
0 answers

Spotify Web API Console

I am curious about how to get Json from a windows forms project and using a webBrowser control to simulate access to a spotify app. I know I need to pass a string of some kind such as clientid=.... etc GET …
1
vote
0 answers

Using Azure service fabric actors from a UWP client

I am interested in using Azure Service Fabric Reliable Actors, they seem like a great server-side solution for a multi-user application I am trying to develop. Unfortunately, I can find no information about how a UWP client application can utilze…
1
vote
1 answer

What are the alternatives to Windows security subsystem in .NET winforms applications

I'm about to start development work on .NET 4.0 winforms application running on top of a Microsoft SQL Server 2012 database. The number of users supposed to use the application might be any where between 2 to 10 and the application should be able to…
StackTrace
  • 9,190
  • 36
  • 114
  • 202
1
vote
10 answers

Requiring users to update .NET

I'm working on some production software, using C# on the .NET framework. I really would like to be able to use LINQ on the project. I believe it requires .NET version 3.5 (correct me if I'm wrong). This application is a commercial software app,…
Danny
  • 355
  • 1
  • 8
  • 14
0
votes
1 answer

can i put button and textbox and listview in one activity?

I am new to android and now i am developing client side application in android. I want to know can I put button , textbox and listview in an activity class.Usually we extends class from Activity but for listview extends from ListActivity. thanks
sudo
  • 1,525
  • 7
  • 34
  • 59
0
votes
1 answer

How to handle and report to client Web Service Exceptions?

I have two applications. A spring-boot web service and another that consumes it. I'm not sure how to handle exceptions and report them back to the client. The method that exposes the web-service: //web service com springboot @PostMapping(value =…
1
2