Home New Trending Search
About Privacy Terms
#
#WebClient
Posts tagged #WebClient on Bluesky

Brutalsky when?!

#atproto #brutalism #microblog #frontend #webclient

0 0 1 0
Preview
📡 Modernizing .NET — Part 11 Migrating WebClient and RestSharp to HttpClientFactory This post gives a production‑ready migration path for replacing WebClient and RestSharp with HttpClient backed by IHttpClientFactory. It…

📡 New post: Modernizing .NET – Part 11
Migrate from WebClient and RestSharp to HttpClientFactory.
Full code for performance boost.
Read → medium.com/@michael.kop...
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #CSharp #Linux #RestShart #WebClient #DepedencyInjection

0 0 0 0
Making sure you're not a bot!

In the end, it took just some Javascript deobfuscation to resolve this Web - Client/Javascript - Native code challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 0 0 0
Preview
la root est longue mais la voie est Libre

Just solved : Web - Client/Javascript - Obfuscation 2 challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 0 0 0
la root est longue mais la voie est Libre

Just solved : Web - Client/Javascript - Obfuscation 1 challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 0 0 0
la root est longue mais la voie est Libre

Just solved : Web - Client/Javascript - Authentification 2 challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 0 0 0
la root est longue mais la voie est Libre

Just solved : Web - Client/Javascript - Source challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 1 0 0
Making sure you're not a bot!

Just solved : Web - Client/Javascript - Authentification challenge on Root-Me :þ

www.root-me.org?page=validat...

@rootme_org

#hacking #challenge #WebClient

0 0 0 0

Rendez votre Fediverse plus léger ! 💡

#BlablaLinux #Fediverse #OpenSource #WebClient

1 0 0 0
ConverseConverse Converse.js - Open source, web-based XMPP chat client. Self-hosted, customizable web chat with end-to-end encryption.

#ConverseDesktop 11.0.1 has been released ( #XMPP / #Jabber / #Converse.js / #Converse / #ConverseJS / #StropheJS / #JavaScript / #inVerse / #OMEMO / #WebClient / #WebChat / #SCRAM / #SCRAMSHA / #SCRAMSHA1 / #SCRAMSHA256 / #SCRAMSHA512 / #XEP0474 ) conversejs.org

0 0 0 0
ConverseConverse Converse.js - Open source, web-based XMPP chat client. Self-hosted, customizable web chat with end-to-end encryption.

#Converse.js 11.0.1 has been released ( #XMPP / #Jabber / #Converse / #ConverseJS / #StropheJS / #JavaScript / #inVerse / #OMEMO / #WebClient / #WebChat / #SCRAM / #SCRAMSHA / #SCRAMSHA1 / #SCRAMSHA256 / #SCRAMSHA512 / #XEP0474 ) conversejs.org

0 0 0 0
ConverseConverse Converse.js - Open source, web-based XMPP chat client. Self-hosted, customizable web chat with end-to-end encryption.

#Converse.js 11.0.0 has been released ( #XMPP / #Jabber / #Converse / #ConverseJS / #StropheJS / #JavaScript / #inVerse / #OMEMO / #WebClient / #WebChat / #SCRAM / #SCRAMSHA / #SCRAMSHA1 / #SCRAMSHA256 / #SCRAMSHA512 / #XEP0474 ) conversejs.org

0 0 0 0
Preview
How to Upload a File with Spring WebFlux & Kotlin (When File Content Is API Request Data) I recently come across the situation where I need to Integrate an API that requires uploading the File. The content of the File is the Request Information for the API. Sometimes you need to call an API that expects you to upload a file, where the content of the file itself is the request data. This guide shows you a simple and clean way to: Create a file dynamically from your DTO data Upload that file using Spring WebFlux’s WebClient Understand why certain Spring abstractions are used 1. Create File Content from DTO & Write to Disk Assume you have a DTO representing customer data for the transfer. data class TransferRecord( val custname: String, val amount: String ) You need to convert this DTO into a formatted file content (e.g., pipe-separated values), then write that content to a file. fun createContentAndWriteToFile( record: TransferRecord, filePath: String ): File { val firstLine = "${record.custname}|C|000000|${record.amount}|0000" val secondLine = "00000000000|D|000000|${record.amount}|0000" val content = """ $firstLine $secondLine """.trimIndent() val file = File(filePath) file.writeText(content) return file } Explanation: We build the file content string based on your business logic. Then, write the content to the specified file path and return the File object. suspend fun postUploadFile( file: File, url: String, ): String { val resource = FileSystemResource(file) val multipartBody = MultipartBodyBuilder().apply { part("transferFile", resource) }.build() val responseAsString = webClient.post() .uri(url) .body(BodyInserters.fromMultipartData(multipartBody)) .awaitExchange { clientResponse -> processResponse(clientResponse) } ${objectMapper.writeValueAsString(responseAsString)}") return responseAsString.toString() } Why Use FileSystemResource? java.io.File is just a pointer to a file path — it doesn't provide streaming or metadata capabilities. Spring's Resource abstraction (e.g., FileSystemResource) wraps the file and supports streaming, metadata, and HTTP headers needed for multipart file uploads. . Multipart Form Data HTTP multipart/form-data is used for uploading files and large form data. The request body is split into multiple parts, each with headers and content. In this example, the part name is "transferFile" matching what the receiving API expects. 1. Controller Side (Handling Multipart File Upload) When you create the receiving endpoint, use @RequestPart to bind the file part: @PostMapping("/upload") suspend fun uploadFile(@RequestPart("transferFile") file: FilePart): string{ // Process the file content val content = file.content().map { buffer -> buffer.toString(StandardCharsets.UTF_8) }.reduce { acc, next -> acc + next } // Your business logic with file content return ResponseEntity.ok("File uploaded successfully").toString() }
0 0 0 0
brief alt text description of the first image

brief alt text description of the first image

Calling on WhatsApp web? It might be coming soon. Looks like voice and video calls are heading to the browser client, making it easier to connect without the desktop app.
#WhatsApp #WebClient #Updates

1 0 0 0

You can bootstrap an Open Web Desktop client with:
𝘯𝘱𝘮 𝘤𝘳𝘦𝘢𝘵𝘦 𝘰𝘸𝘥

#web #desktop #webos #framework #frontend #development #webdevelopment #vue #nuxt #primevue #tailwind #vuejs #nuxtjs #webclient #webdesktop #javascript #typescript #windows95

4 0 0 0
Post image

View my verified achievement from @IBM.
Badge link: www.credly.com/badges/9e25d... via @credly #Regex #BusinessAutomation #DataTable #WebClient #SpringBoot #NLP

1 1 0 0
Preview
IBM Robotic Process Automation - Advanced was issued by IBM to Jose Antonio Lopez Tellez. This badge earner can implement databases on the WDG Automation platform, connect with various database management systems, and manipulate data and procedures. They can use regular expressions (Regex)...

View my verified achievement from @IBM. www.credly.com/badges/9e25d... via @credly #Regex #BusinessAutomation #DataTable #WebClient #SpringBoot #NLP

1 1 0 0
Preview
IBM Robotic Process Automation - Intermediate was issued by IBM to Jose Antonio Lopez Tellez. This badge earner can use complex features of WDG Automation Studio for the development of robust and complete bots, such as automation of web pages, automation of windows systems, and manipulation of...

View my verified achievement from @IBM. credly.com/badges/74534... via @credly #BusinessAutomation #DataTable #WebClient #SpringBoot

1 1 0 0
Preview
IBM Robotic Process Automation - Basic was issued by IBM to Jose Antonio Lopez Tellez. Badge earners are able to install WDG Automation with all of its programs and features, and address problems that may occur in the process. They can perform basic tasks in WDG Studio such as inserting...

View my verified achievement from @IBM. www.credly.com/badges/f8d1f... via @credly #RBA #BusinessAutomation #DataTable #WebClient #SpringBoot

1 1 0 0
Awakari App

Set Multiple Headers at Once in Spring WebClient Explore how Spring WebClient handles headers and...

www.baeldung.com/java-spring-webclient-se...

#Spring #WebFlux #WebClient

Event Attributes

0 0 0 0
Awakari App

Set Multiple Headers at Once in Spring WebClient Explore how Spring WebClient handles headers and...

feeds.feedblitz.com/~/916791077/0/baeldung~S...

#Spring #WebFlux #WebClient

Event Attributes

1 0 0 0
Awakari App

Set Multiple Headers at Once in Spring WebClient Explore how Spring WebClient handles headers and...

www.baeldung.com/java-spring-webclient-se...

#Spring #WebFlux #WebClient

Result Details

0 0 0 0
Awakari App

Set Multiple Headers at Once in Spring WebClient Explore how Spring WebClient handles headers and...

feeds.feedblitz.com/~/916791077/0/baeldung~S...

#Spring #WebFlux #WebClient

Event Attributes

0 0 0 0
Video thumbnail

A short changelog:

- feat: show post threads
- style: improve the UI

#buildinpublic #indiedev #webclient

2 0 0 0

🎉

#WebClient #client #SpotifyClient #Qt #music #streaming #musicStreaming

0 0 0 0
MansionNET - IRC Chat

Check out the new #IRC web client I’ve been developing as a part of the MansionNET self hosted project! It’s still in the works, and I’d love for you to test it out and send feedback! 🙌 . 🔗 development.inthemansion.com/irc/

#IRCchat #WebClient #TechDev #OpenSource #Testing

0 0 0 0
Preview
Solución al error 400 de vCenter Single Sign-On en acceso a VMware vCenter Web Client » Proyecto A Por qué se producen los errores [400] Se produjo un error al enviar una solicitud de autenticación al servidor de vCenter Single Sign-On: Se produjo un error al procesar los metadatos durante la confi...

Solución al error 400 de vCenter Single Sign-On en acceso a VMware vCenter Web Client: proyectoa.com/solucion-al-...

#vmware #vcenter #vcenterserver #error400 #singlesignon #webclient #solución #solucionado #ajpdsoft #proyectoa

0 0 0 0