15,611,207 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Python questions
View Javascript questions
View C++ questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Ashwin. Shetty (Top 19 by date)
Ashwin. Shetty
5-Feb-17 23:39pm
View
Please do share your error message
Ashwin. Shetty
31-Jan-17 6:34am
View
Oops, they changed recently, My account is running for free on v2. You will get many providers for free on mean stack. One of them is https://www.heroku.com/pricing look for free tier. This one goes down in 30 mins of non usuage
Ashwin. Shetty
31-Jan-17 5:14am
View
https://technet.microsoft.com/en-us/sysinternals/pxexec.aspx
Ashwin. Shetty
30-Jan-17 12:29pm
View
I have not tried it but psexec should work in your scenario. If you have control to install a service on removed machine then try Windows service which Can host wcf service. You Can implementation security on top of wcf service. Your wcf service will validate the request and than execute bat on separate thread
Ashwin. Shetty
30-Jan-17 12:28pm
View
Deleted
I have not tried it but psexec should work in your scenario. If you have control to install a service on removed machine then try Windows service which Can host wcf service. You Can implementation security on top of wcf service. Your wcf service will validate the request and than execute bat on separate thread
Ashwin. Shetty
30-Jan-17 1:55am
View
It will be difficult to point you to complete code, but you may look for wcf self hosting. After validation from WCF service endpoint raise event which is registered by windows service internally. Register method to this event which will create a new thread and attach function which can carry out above task
Ashwin. Shetty
30-Jan-17 1:12am
View
Web base app can only validate the size on request to a server. if you try to run it in the background it won't be reliable. IIS may also timeout and stop the execution thread. If I would be in your place I would have hosted WCF service inside Windows Service (Self-hosted) and expose WCF API which will take two parameters ( Folder to monitor & Email Id for an alert). Monitor folder which was received in the separate thread and alert user based on the threshold. This WCF service will be called internally from my website.
You are right link which I have shared is for create, change and delete file. Isnt that will resize your folder ??
Ashwin. Shetty
30-Jan-17 0:48am
View
The article does have feature to add and search in an array. To be specific search feature is available here http://fahad-cprogramming.blogspot.in/2014/02/linear-search-program-in-c-using.html
Ashwin. Shetty
29-Jan-17 23:26pm
View
Please post complete error message
Ashwin. Shetty
19-Jan-17 3:34am
View
Can you confirm, you are able to access SQL server from your development enviroment
Ashwin. Shetty
19-Jan-17 0:18am
View
https://msdn.microsoft.com/en-us/library/ms156450.aspx#Common connection string examples
Ashwin. Shetty
19-Jan-17 0:01am
View
can you add trace from your debugger, above one is hard to understand
Ashwin. Shetty
18-Jan-17 23:45pm
View
stack trace of your error
Ashwin. Shetty
18-Jan-17 23:21pm
View
please share complete stack trace of error
Ashwin. Shetty
18-Jan-17 4:22am
View
Google have a documentation for OAuth, did you check this https://developers.google.com/gmail/xoauth2_protocol
Ashwin. Shetty
17-Jan-17 6:27am
View
Can you check DataDirectory value and check the file path you verifying from. Also check if data file is getting redeployed at every build The code seems to be ok to me.
Ashwin. Shetty
17-Jan-17 3:45am
View
Can you share function input data.
Ashwin. Shetty
4-Jan-17 4:47am
View
In case of error, you can return http error code 500. Try setting content type while responding back from server
Ashwin. Shetty
4-Jan-17 4:22am
View
When you are making a call from ajax (within browser), you are setting content type to application/json but at server, you are expecting file. For file upload content type should be set to multipart/form-data.
Show More