Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have an ASP.NET application which is configured to run on my local IIS.
Anyone knows any Free Record/Replay Web Testing Tool so that I can test the pages with e.g. 10 concurrent users?
(I don't have access to Visual Studio Test/Ultimate edition to use its Web Testing tools.)
Thanks
You may checkout the soapUI/loadUI suite.
check Selenium tool http://seleniumhq.org/
and seleniumgrid http://seleniumgrid.thoughtworks.com/
Selenium Grid allows you to run Selenium tests in parallel, cutting
down the time required for running acceptance tests to a fraction of
the total time it currently takes.
Automate web application UI testing with Selenium
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a quick way to create a web application that accesses an SQL server database and displays tables of choice, enabling me to create new entries in those tables.
Any built in frameworks in Visual Studio 2017 that can be used? Or other easy to use ones?
Thanks
Probably the most simple way to create website that performs simple CRUD maintenance on database tables is to use MVC scaffolding, which will generate simple screens and code to work with data. There's a nice "how to" blog entry at https://www.red-gate.com/simple-talk/dotnet/asp-net/using-scaffolding-to-create-mvc-applications-with-visual-studio/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am trying to visualize a VXML file, and have been searching for hours for a free and if possible open-source application, that would run on Windows, despite my intensive search I could not find any application.
Does anyone know a VXML visualizer?
Take a look at the Eclipse Voice Tools Project. This open source tool lets you visually develop a voice application that runs on any VoiceXML 2.1 compatible system. The only problem with this tool, and any other VoiceXML tool, is they store the information as meta-data that is translated to VoiceXML either at deployment or at run-time. This will lock you into a tool vendor since it will not be portable from one tool to another. There are not any tools, open source or commercial, that can take straight VoiceXML and visually represent a higher level abstraction of the voice application.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to test my C# application that uses WCF for slow network speeds on Windows 7.
Are there any free tools out their that can reduce my network speed?
Clumsy does a pretty good job as well.
http://bandwidthcontroller.com/trafficShaperXp.html
A Google search will give you some more ...
--[EDIT---
This runs on Win7 x64
http://www.softperfect.com/products/bandwidth/
This is not free, but trial version available. Has a lite version also.
Set up a linux machine (on a cheap Atom is fine) and use CBQ .. more details at http://www.faqs.org/docs/Linux-HOWTO/Bandwidth-Limiting-HOWTO.html#CBQ
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In some crucial projects I relelized that time is one of the biggest concern while developing a project, specially a web application.
Specifically about ASP.NET, does any Open Source tools exists for generating code for helping developers [like codesmith] to work smarter rather than work harder?
I think T4 templates is what you need.
Check this out: http://msdn.microsoft.com/en-us/library/bb126445.aspx
I'm not sure if your problem is that you want a code generator or something to help you generate automated tests to be run in different browsers. Since codesmith does .NET I'll assume you wanted automated tests for various browsers.
Check out selenium
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any free web based cron that can do scheduled jobs ....
http://www.mywebcron.com/
but why would you want a web based cron over a standard crontab?
You can do (for free, unless your load's very heavy) periodic cron-like "sending of mails" with Google's App Engine, with Java or Python -- but I don't know of a free service that will let you do that with asp.net (or other .NET code).
Here's an couple of old articles on how to implement a cron job with ASP.NET: Simulate a Windows Service using ASP.NET to run scheduled jobs and Scheduled ASP.NET Task (ASP.NET Cron Jobs).
You basically just add something to the cache, and when the item expire you can use that event to trigger your code. Simple.
You can also try www.thecloudblocks.com which includes a web UI and RESTful API