According to documentation on loopback, lb soap creates models of underlying soap based datasource. Is there a programmatic way to do this? I want to do it programmatically to facilitate a dynamic soap consumption through dynamically created models and datasources.
Is there an equivalent way of doing 'lb soap' programmatically with loopback?
94 Views Asked by Technoshaft At
1
There are 1 best solutions below
Related Questions in LOOPBACKJS
- Alternative for creating Loopback REST Object?
- Loopback and passport - AccessToken 401 Permission denied
- How to setup Nginx as a load balancer using the StrongLoop Nginx Controller
- What's the difference between embedsMany and hasMany in Strongloop loopback
- Loopback passport mobile login
- Add custom route in Loopback over nginx proxy
- How can I easily copy models and related models in Loopback JS
- Impose max limit in Loopback
- Amazon S3 browser direct upload unique file name
- Modifying ctx.result does not change POST response
- StrongLoop: mutual Model Relations
- Filters - nin not working with near.
- passing callback or promise to the different module , which one is better and efficient?
- Twitter third party app not retrieving email
- Get full json struct in a belongsTo relation
Related Questions in STRONG-SOAP
- XML Request from strong-soap
- Soap client with Node and strong-soap returning error with cerficate
- strong-soap: call service method over https
- 'Cannot read property methodName of undefined' consuming a NodeJS SOAP method with document style
- I want to convert attributes to elements in Strong-SOAP xmlToJson
- How to stub SOAP client request with sinon in Node JS?
- Forming an ExecuteSearch Soap action for Filenet
- LoopBack 4: Adding type attribute to an element in a SOAP request
- Authentication in Node JS soap request
- Using Strong-soap node module, It is not adding namespace to the attributes of the elements
- Strong Soap in Node - Connect to Netsuite
- NodeJS Soap service - Return synchronous response client
- How do you get the server url to give to the client when using Node-soap or Strong-soap
- Simple SOAP call with Node using Strong-Soap
- NODEJS SOAP: Object reference not set to an instance of an object
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Disclaimer: I am a co-author and maintainer of LoopBack.
Here is the source code implementing the command
lb soap:Here is the code that's generating models definition and method source code:
As you can see, most of the work is delegated to
soapGenerator, which refers to loopback-soap - a lower-level module maintained by the LoopBack team too. In your application, you can useloopback-soapdirectly (no need to depend on our CLI tooling) and call its API to generate SOAP-related models.Unfortunately we don't have much documentation for
loopback-soapsince it has been mostly an internal module so far. You will have to read the source code to build a better understanding. If you do so, then we would gladly accept contributions improving the documentation for future users.