Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I've built an application with the following components:
ASP.NET MVC 4
SQL Server Reporting Services
SQL Server Integration Services
SQL Server 2012 database
Is there a platform as a service (PaaS) that will host all the code or will I have to use multiple services?
The goal for this deploy is for user testing. Eventually, the application will be migrated to an already existing .NET infrastructure so I'm looking for a transient environment.
Thank you!
Best bet is to use something like an aws ec2 instance where you can install everything you need on a box, pay by the hour to use it, and simply terminate it when you are done.
Very cost effective for temporary servers like this.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have been learning about Rest APIs and I just created my first one in Visual Studio. Now I would like to put it on the internet so I can call to it rather than calling localhost. For the amount of information on how to create an API there isn't much information on how to deploy it.
My API is very simple and not very useful. It is more of a learning exercise to me. So I was wondering what is the free or cheap way of getting it on the internet.
Every ASP.NET project is deployed the same way. You hit publish and upload the files to a web server (be it your own computer with public IP address or hosting you pay for). If you are using a database you may need to setup that too and tweak the connection string in the config file.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am currently exposing an API endpoint for my .net services which uses WCF Rest API, ASP.NET Web API and ServiceStack.
I want to add rate limiting and authentication for my API, to add this I don't want to implement authentication/rate limit in each service.
Do you know if there is some platform (open source is a must) that I can put after my services that will manage it? like apigee?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a long list of categories and keywords provided by one client.Is there any way/tool to avoid one by one manual creation of them.
I'm not aware of any existing tools to do this, but it would be possible to build one that uses either the Content Manager .Net API or the Core Service (WCF web service) interface to programmatically create the C&Ks for you. Personally I'd probably go with the Core Service - if you google "sdl tridion core service" there is a wealth of information already in the public domain to help you get a better understanding of how to use it.
There's a particularly good article here - http://blog.building-blocks.com/creating-keywords-using-the-core-service-in-sdl-tridion-2011
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking into JSON RPC libraries for .net that are free to use in commercial applications. Up until now i just seem to have found JROCK.
What other libraries, architecture have i got similar to JRock for .NET 2.0
What is the difference between a [WebMethod] in asmx web-service returning a instance of a class and a JSON Rpc method as in the JRock website page. Do i have any usability benefits, performance benefits or any benefits of using one over the other
JSON-RPC.NET http://jsonrpc2.codeplex.com/ is under a BSD license so you can use it in your commercial application. It has a ASP.net handler, but ASP.NET is not required. I have examples that run the server from a console application. It can work with sockets or pipes, or any transport you would like to plug into it. So you are not forced to use HTTP, but its there if you want to.
You should find that json rpc is more compact then asmx. It should reduce bandwidth, and could perform better for you, but you would want to test that.
I'm a contributer on the project, and would be interested to know if it meets your needs.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a web application deployed on a jboss server running on a unix machine.
I want to be able to monitor threads, CPU times ,requests, etc. , for gauging application performance on the server.
What might be the best way to do this?
The jboss.system:type=ServerInfo MBean provides several attributes that can be used to monitor the thread and memory usage in a JBoss instance.
A few open source tools for remote monitoring and administration using Java Management Extensions (JMX)
Jmanage
mx4j
mc4j
There is also RHQ that offers a lot more than just monitoring like alerting on (changed) values, can run operations on the servers (restart etc), can make config changes and also deploy applications on the server (or whole servers on a machine).
Solaris/Linux/*BSD? On Solaris and *BSD, you can consider using DTrace as a general application monitoring tool.