DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Curious about the future of data-driven systems? Join our Data Engineering roundtable and learn how to build scalable data platforms.

Data Engineering: The industry has come a long way from organizing unstructured data to adopting today's modern data pipelines. See how.

Threat Detection: Learn core practices for managing security risks and vulnerabilities in your organization — don't regret those threats!

Managing API integrations: Assess your use case and needs — plus learn patterns for the design, build, and maintenance of your integrations.

Avatar

Abhijit Pritam Dutta

Senior Consultant at Credit-Suisse

London, GB

Joined Mar 2018

Stats

Reputation: 896
Pageviews: 1.9M
Articles: 12
Comments: 30
  • Articles
  • Comments

Articles

article thumbnail
How to Develop Microservices With Spring Cloud and Netflix Discovery
Today I am going to provide an example of a small microservices-based application with a Eureka discovery server to register all the microservice in it.
June 18, 2020
· 9,211 Views · 3 Likes
article thumbnail
SSL-Based/Secured FeignClient Example in Java Microservices With Eureka
In this article, I will explain how to develop a Feign Client application/service to establish two way SSL based communication.
June 16, 2020
· 33,882 Views · 2 Likes
article thumbnail
Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C
Learn how to use the C language to use a TCP/IP server to receive multiple client requests at the same time and run each client request in parallel.
Updated June 16, 2020
· 254,912 Views · 7 Likes
article thumbnail
Step-by-Step ASP.NET Core RESTful Web Service Development
In this post, we take a look at ASP.NET Core, and how to use this framework to create a RESTful web service and deploy that service.
Updated September 17, 2018
· 194,457 Views · 10 Likes
article thumbnail
How to Develop a RESTful Web Service in ASP.NET Web API
Let's take a look at a tutorial that explains how to develop a RESTful web service in ASP .NET with a web API.
Updated September 13, 2018
· 149,356 Views · 9 Likes
article thumbnail
Step-By-Step Spring Boot RESTful Web Service Complete Example
Let's take a look at a tutorial that explains all of the REST calls: GET, POST, PUT, and DELETE.
Updated September 13, 2018
· 550,154 Views · 41 Likes
article thumbnail
How to Fix the ''Not a Trusted Site'' Error on Your Client Application
Need help resolving the ''Not a trusted site'' error on your application? Check out this tutorial to learn how to establish an SSL-based connection to a remote server.
August 31, 2018
· 7,660 Views · 3 Likes
article thumbnail
Spring Boot RESTful Web Service Example
Does your Java app look sluggish and tired all the time? Learn how to make sure your Spring Boot application is well rested!
Updated July 11, 2018
· 271,618 Views · 28 Likes
article thumbnail
SSL-Based HTTPS SOAP and RESTful Web Service Client Application in Java
In this post, we'll discuss how to create a Java, SSL-based client which facilitates both RESTFul and SOAP web service calls to different servers.
May 22, 2018
· 152,805 Views · 12 Likes
article thumbnail
How Can We Control/Schedule Execution of Threads in C, C++?
In this article, we dig into a rather low-level topic, how to schedule and control the execution of threads in a program. To do so, we'll use both C and C++.
Updated April 10, 2018
· 51,773 Views · 4 Likes
article thumbnail
SSL-Based REST Web Service in Java JAX-RS With Spring
In this post, we go over how to add an SSL-based REST web service to a web applicaiton based on the Spring framework. Let's get started!
Updated April 9, 2018
· 43,968 Views · 17 Likes
article thumbnail
A RESTful Web Service Project in Java JAX-RS with Spring and Apache CXF
We show you step-by-step, how to use these tools and frameworks to create a callable, REST web service. Let's get started!
Updated April 9, 2018
· 76,110 Views · 15 Likes

Comments

Step-By-Step Spring Boot RESTful Web Service Complete Example

May 09, 2022 · Abhijit Pritam Dutta

Thank you Pari.

How to Develop Microservices With Spring Cloud and Netflix Discovery

Nov 11, 2020 · Abhijit Pritam Dutta

You microservice is independent and not relied on your discovery server. It just registers itself with discovery so that other application registered in discovery server can retrieve host and port detail.

Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C

Jun 11, 2020 · Abhijit Pritam Dutta

You are right. please correct the below like

if( pthread_create(&tid[I++], NULL, socketThread, &newSocket) != 0 )

Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C

Jun 11, 2020 · Abhijit Pritam Dutta

pthread_join(tid[i++],NULL);

Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C

Jun 11, 2020 · Abhijit Pritam Dutta

i is incremented here - pthread_join(tid[i++],NULL);

Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C

Jun 11, 2020 · Abhijit Pritam Dutta

i is incremented here - pthread_join(tid[i++],NULL);

How to Develop a RESTful Web Service in ASP.NET Web API

Nov 13, 2019 · Abhijit Pritam Dutta

Just check for tutorial about database transaction in C#

SSL-Based HTTPS SOAP and RESTful Web Service Client Application in Java

Aug 09, 2019 · Abhijit Pritam Dutta

You should have a trust store. Either you can use java trust store or your own trust store. To use java trust store you have to export the trust store certificate to java trust store.

Step-By-Step Spring Boot RESTful Web Service Complete Example

Jun 17, 2019 · Abhijit Pritam Dutta

:-)


How to Develop a RESTful Web Service in ASP.NET Web API

Jun 12, 2019 · Abhijit Pritam Dutta

Thanks for your valuable comment.

Step-By-Step Spring Boot RESTful Web Service Complete Example

Jun 12, 2019 · Abhijit Pritam Dutta

No idea why your server got terminated. Check online for help. Sorry dear

Step-By-Step Spring Boot RESTful Web Service Complete Example

Jun 11, 2019 · Abhijit Pritam Dutta

Thanks!

Step-By-Step Spring Boot RESTful Web Service Complete Example

May 20, 2019 · Abhijit Pritam Dutta

Thanks :-)


How to Develop a RESTful Web Service in ASP.NET Web API

Apr 06, 2019 · Abhijit Pritam Dutta

Thanks

Spring Boot RESTful Web Service Example

Mar 03, 2019 · Abhijit Pritam Dutta

Thanks

Spring Boot RESTful Web Service Example

Mar 03, 2019 · Abhijit Pritam Dutta

You can deploy it as standalone application also. For that you have to modify the main function.

Step-By-Step Spring Boot RESTful Web Service Complete Example

Jan 30, 2019 · Abhijit Pritam Dutta

Thanks

SSL-Based HTTPS SOAP and RESTful Web Service Client Application in Java

Nov 13, 2018 · Abhijit Pritam Dutta

Make sure you have all the library available in class path.

How to Develop a RESTful Web Service in ASP.NET Web API

Oct 18, 2018 · Abhijit Pritam Dutta

Thank you Billy for such nice words. Sure will do :-)

Spring Boot RESTful Web Service Example

Sep 24, 2018 · Abhijit Pritam Dutta

Thanks for your compliment. You can also read this https://dzone.com/articles/spring-boot-restful-web-service-complete-example


Step-By-Step Spring Boot RESTful Web Service Complete Example

Sep 21, 2018 · Abhijit Pritam Dutta

Nice idea! Actually I used the 'delete' keyword for clear understanding. Thanks for your suggestion

Spring Boot RESTful Web Service Example

Sep 18, 2018 · Abhijit Pritam Dutta

That is a problem with this portal. I have submitted formated code only. I will contact the help centre to fix this issue

How to Develop a RESTful Web Service in ASP.NET Web API

Sep 18, 2018 · Abhijit Pritam Dutta

You are welcome.

Spring Boot RESTful Web Service Example

Sep 17, 2018 · Abhijit Pritam Dutta

That is a problem with this portal. I have submitted formated code only. I will contact the help centre to fix this issue.

Parallel TCP/IP Socket Server With Multithreading and Multiprocessing in C

Aug 13, 2018 · Abhijit Pritam Dutta

Thanks for your comment. Will do.

Spring Boot RESTful Web Service Example

Aug 13, 2018 · Abhijit Pritam Dutta

Check your url.

Spring Boot RESTful Web Service Example

Aug 13, 2018 · Abhijit Pritam Dutta

Once you create a Mavan project as per my direction a pom.xml file will be created by default. You just need to add my section in it.

Spring Boot RESTful Web Service Example

Jul 11, 2018 · Abhijit Pritam Dutta

Updated


Spring Boot RESTful Web Service Example

Jun 14, 2018 · Abhijit Pritam Dutta

sure


A RESTful Web Service Project in Java JAX-RS with Spring and Apache CXF

Mar 07, 2018 · Abhijit Pritam Dutta

Thanks for your advice. Will do. Thanks


User has been successfully modified

Failed to modify user

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: