Executing an external Java Program from Siebel [closed] - siebel

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
How can I trigger an external Java Program from Siebel? The Java program was custom written, when it is triggered it does some transformation on data. I would like to execute the Java program from within Siebel, is there a way to do that with Workflows or Business Service ?

Another way of implementing the solution is to bring the program into Siebel and call it as a Java Business Service. This methodology only works, if you have access to the source code and can invoke it. For more information on the methodology, a primer from the same author can be found here
http://www.impossiblesiebel.com/2010/04/java-business-service-jbs-tutorial.html

Expose Java program as a web service then create outbound web service in Seibel to call it, this tutorial explains how http://siebelunleashed.com/siebel-outbound-webservice-tutorial/

Related

Preventing code entries containing malicious shell script [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm creating a programming platform, where people are given c++ programming tasks, their code gets uploaded to Amazon linux EC2 instance, compiled, executed and compared to expected output.
What measures should I take to prevent people from writing malicious code, which could, for example, delete everything from EC2 instance? Would dockerizing compilation/execution process be sufficient?
I'm creating a programming platform, where people are given c++ programming tasks, their code gets uploaded to Amazon linux EC2 instance, compiled, executed and compared to expected output.
If you're a professor who checks your student code i think github education (https://classroom.github.com/) is good for you and implement github actions to test the output of the program.
Would dockerizing compilation/execution process be sufficient?
It's good enough. just to be sure run the program inside the container without root permission.

Make my Django app into a rentable service for companies [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a webapp running with Django. I would like to make an Enterprise Edition of this website. In exchange for a yearly fee, I would like to allow companies to host the webapp on their own server and benefit from unique features
The problem is that I have no idea how to proceed. How can I execute this, without sending my whole code over to their computer and launching the django app there?
Is there something like generating an .exe that would run the django app without sending my code? How do companies usually proceed to make their tools available on another company's intranet?
well I haven't heard something like that, but what you can do is using a license in your code, there are many types of licenses, from open source to trade secret license, read more about it

Testing if a web service API is RESTful [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
One of the technical requirements of the software I am working on is to provide a REST web service API.
As a consequence, I am now asked to create a manual or automated test checking if the software provides a REST web service API.
My initial thought is that this is not possible, as REST is not formally defined and is not a protocol. Some might even say that my API is not RESTful.
Is there any way for me to provide such a test?
Given that, as you said, REST is not formally defined, I think you'd need to go to the requirements writer and ask them what satisfies their criteria for being RESTful.

amazon web server guider for beginner [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I need to open a web application server on the amazon AWS.
can someone guide me which services I would need to run :
.net web application.
office 2013.
I'm new in that so please elaborate.
You can use EC2 Instances (virtual private servers) for that. Check out the getting started for windows guide:
http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/EC2Win_GetStarted.html
And take a free lab at http://run.qwiklabs.com

How to write a web server (service) in OCaml? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 11 months ago.
Improve this question
I wish to write a web service server (using http protocol) in OCaml.
For a simple example, I want to write a http server. User can access it and provide parameter like http://myservice.com?i=1&j=2. Then my server get the request and parameters and calculate i+j and return the result.
Of course, my service will be more complicated for the calculation part. Instead of this simple example of calculation, what I really need to do is to
access the database (MongoDB) to get some data
access another 3rd party web service to get more data
calculate all data to get a result and return to the user.
So, I also need to consider parallelism / multi-threading, although I want to start with simple case first.
My questions are:
Which library should I use to first set up such a http server? I have looked into Ocamlnet 3 and think it might be a good candidate, but it lacks good tutorial and I still don't know how to use nethttpd or netplex etc.
How should I design the architecture of my web application? I know OCaml is not good at parallelism, then how can I make each service instance not blocking?