GithubHelp home page GithubHelp logo

spring-boot-prototype's Introduction

prototype-application

To run this application you will need to download Project Lombok to your IDE.

GetAllSubscribers - Example Input

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prot="http://serdarkucuklu.com/prototype">
   <soapenv:Header/>
   <soapenv:Body>
      <prot:GetAllSubscribersRequest/>
   </soapenv:Body>
</soapenv:Envelope>

GetAllSubscribers - Example Output

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <ns2:GetAllSubscribersResponse xmlns:ns2="http://serdarkucuklu.com/prototype">
         <ns2:GetSubscriberById>
            <ns2:id>1</ns2:id>
            <ns2:name>Stephan King</ns2:name>
            <ns2:msisdn>905552551122</ns2:msisdn>
         </ns2:GetSubscriberById>
         <ns2:GetSubscriberById>
            <ns2:id>2</ns2:id>
            <ns2:name>Alice Gracy</ns2:name>
            <ns2:msisdn>905552551133</ns2:msisdn>
         </ns2:GetSubscriberById>
         <ns2:GetSubscriberById>
            <ns2:id>3</ns2:id>
            <ns2:name>Glory Wisdom</ns2:name>
            <ns2:msisdn>905552551144</ns2:msisdn>
         </ns2:GetSubscriberById>
      </ns2:GetAllSubscribersResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

GetSubscriberById - Example Input

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prot="http://serdarkucuklu.com/prototype">
   <soapenv:Header/>
   <soapenv:Body>
      <prot:GetSubscriberByIdRequest>
         <prot:id>2</prot:id>
      </prot:GetSubscriberByIdRequest>
   </soapenv:Body>
</soapenv:Envelope>

GetSubscriberById - Example Output

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <ns2:GetSubscriberByIdResponse xmlns:ns2="http://serdarkucuklu.com/prototype">
         <ns2:GetSubscriberById>
            <ns2:id>2</ns2:id>
            <ns2:name>Alice Gracy</ns2:name>
            <ns2:msisdn>905552551133</ns2:msisdn>
         </ns2:GetSubscriberById>
      </ns2:GetSubscriberByIdResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

create REST project

Send POST request with http://localhost:8080 endpoint and example /subscribers/subscriber/12&Serdar&905547906654 Send PUT request with http://localhost:8080 endpoint and example /subscribers/subscriber/3&Hakan&905438915178 Send DELETE request with http://localhost:8080 endpoint and example /subscribers/subscriber/3

$ mvn spring-boot:run

spring-boot-prototype's People

Contributors

serdarkucuklu avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.