Webcam Application As Service
Jun 30, 2009
I have created a webcam application. It uses a PictureBox to display the image and saves the image to file via the clipboard. I've used code found on this forum and all works fine.
What I'd like to do now is to convert the application into a service.
I know how to create a service, but does the webcam image have to actually appear on the screen to save the image? My goal is not to have any forms display on screen, therefore conforming to typical service operation.
View 3 Replies
ADVERTISEMENT
Jul 14, 2011
i have a Windows service that is hosting a WCF service through net.tcp and this is working great. I have also created a WCF service application. I am trying to add the net.tcp service reference to the service application. Then I add it to the GAC that goes ok but if I try to RegAsm the WCF service application to allow it to be called from Server.CreateObject I get the error:
Warning: Type library exporter encountered a type that derives from a
generic class and is not marked as
[ClassInterface(ClassInterfaceType.None)]. Class interfaces cannot be
exposed for such types. Consider marking the type with
[ClassInterface(ClassInterfaceType.None)] and exposing an explicit
interface as the default interface to COM using the
ComDefaultInterface attribute.
It does not work. I have tried to call it through a class library but this does not work either as the end point is not set correctly.
View 1 Replies
Apr 28, 2009
This is a bit of unusual problem that I'm experiencing, but recently one of the users of a production application started reporting errors in the system. These were traced to a 503 Service Unavailable error when making a call to a web service used by the application.
Now here's the odd part, only the one user is affected by this issue. Other users of the application have not reported any errors. When the user logged on to a different machine that worked for another user, they still received the error.
View 1 Replies
Mar 28, 2012
I have a logitech webcam that I use to take pictures of customers to submit to a server/database. Utilizing AVICAP32.DLL calls, I was able to modify my VB.NET program to take these pictures via a button in my program.
My question is, it would me more convenient to my intended users to click the webcam button, instead of clicking on the button in my program.
Is this possible to do in VB.NET? and how can I do this?
If this is not possible to do with my logitech webcam than is there a Microsoft Webcam that can do this?
View 1 Replies
Dec 5, 2009
How can i record a video via webcam in visual basic application and then display the video on user's request either live or recorded video.
how to develop video webcam recording application.
View 4 Replies
Aug 5, 2009
I am building a windows based application using Visual basic.net , for Real estate management office and I want my software to send SMS messages to the tenant that it's time to pay for the rent.
View 3 Replies
Oct 18, 2011
We have made a console application in vb2008/2010. Is there any possibillity to make from this a service?
View 1 Replies
Jun 14, 2012
I have just started to check WCF services so have created a sample WCF service application with two methods IService
[ServiceContract]
public interface IService1
{
[Code]....
But when am trying to execute the button click am getting the TimeOut Exception.
View 1 Replies
May 16, 2012
I have one windows applciaction and a windows service, I need my WinApp running all the time and if it is not runing I need the service to run it.the question is how can I run my app from the windows service, I dont need any interaction between them I just need the service as an agent that secure the winApp is running and if not, make it run.I got the service and winthin I got a timer that every minuto will check for the running app the questions are:
1-How the service cheks for the application
2-How the service can lunch the application??
View 2 Replies
Oct 28, 2009
I have a windows application that updates somedata every 10 mins. I need to make sure that this application keeps running.I was thinking of having a service with a timer that checks if the application is running and if not it fires it up.
View 4 Replies
Feb 25, 2010
I am having a hard time figuring out how would my vb.net application to run as window service so that it would not appear in the task manager's processes list so that it can't be terminated and would constantly run in a background. Is there anyway we could make to run our vb.net application as Windows Service, programmatically? If not, could you provide me sample code that has this Windows Service that's constantly from time to time check whether my application is running or not? If not, then the Windows Service will rerun it for me.?
View 4 Replies
Nov 9, 2010
I am trying to start a service on my machine from one of my applications and I get the following exception. I am using Windows 7 by the way.[code]...
View 1 Replies
Jul 14, 2009
I created a very simple web service on my godaddy shared hosting web site, using VWD. I wrote a VB app to use some web services. I added a web reference to another web service with no problem. But I could not add a web reference to MY OWN web service. It was blocked by a Discovery Credential dialog that could not succeed. After days of communication with godaddy tech support they stated it could not be done (for security reasons).
View 4 Replies
Apr 10, 2011
I am creating a desktop application that uses a SQL database to store information about different movies. Instead of having to type in the information I want (Barcode code, DVD ID, Title etc.), I want to use a web service. However, I don't know any web services like this and I am new to trying to implement them. Can anyone suggest a good one and briefly tell me how to implement it into my app?
View 2 Replies
Feb 3, 2010
I have a VB2008 application which can control a windows service i.e. start, stop, pause etc. This runs ok on a Windows XP machine but not on a Win 7 machine (message is - Service error cannot open <service name> service on computer '.') ( if I stop the UAC then it runs ok ). It seems to be a rights issue,
View 3 Replies
Feb 16, 2012
I've just created my first web application project.Now I want to add a RESTFul service.It can be pretty simple, all I need is to pass 1 string (userid) and 1 integer (objecttype) and return a json result.
View 1 Replies
May 4, 2012
I am facing some problem when sending the input to webservice.
Here my code :
Protected Sub Button5_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Saman.Click
SamanDB.DataSource = Nothing
[Code].....
View 2 Replies
Apr 18, 2006
Can somebody tell me the steps to follow so that i can call my windows application (.exe) file from my windows service in C# (.Net 2003
View 2 Replies
Sep 1, 2011
I have created and deployed a windows service application and I added this line of code "System.Diagnostics.Debugger.Launch()" in the beginning of OnStart method in order to be able to debug the service but when I start the service the nothing is happened. I think the OnStart method have never fired otherwise the visual studio will popup once the debugger.launch line is executed even I tried to write some text to the event viewer to make sure but nothing gets written to the events viewer after I started the service. I included also the debugging symbol in my windows service setup project but I end up with the same result.Why it's not working? How can I make sure that the OnStart method gets fired or not?
View 2 Replies
Jul 20, 2009
I created a VB.NET Service application and I have decided to install it on my computer using installutils.exe. After building the application, I open the SDK framework command line and ran the following command:
installutil KleinDevortService.exe
KleinDevortService.exe being the built assembly for the service application. After running this command, I get the following:
*********************************************************************************************************************************Microsoft (R) .NET Framework Installation utility Version
[code].....
View 3 Replies
Apr 17, 2010
I'm developing a program working with database. Id like to use the Service base database but it gives me an error when I try to add it in my project Project > Add new Item > Service-based database
I wanted to use this database so I could make a table in it.
Error:
Connections to SQL Server Files (*.mdf) requires SQL Server Express 2005 to function properly. Pls verify of the component or download from the URL
go.microsoft.com/fwlink/?LinkId=49251
But when i go to that site its just the vs express websites.
Im using VS2008 Pro. I also installed other files like SQLEXPRADV_x64_ENU
Am I missing something that i need to install?
I already have "SQL Server Management Studio" listed in All Programs> Microsoft SQL Server 2008
Even the SQL Server Compact 3.5 is already installed
How will I know if I properly installed the required components or application?
View 1 Replies
Feb 18, 2011
I made a client/server application and I want the server application to be a service that can have it's setting managed through a GUI.I know how to make an application a service, but how would I give it the ability to have its settings changed and start/stopped through GUI?Or would you just make a program that can edit a certain server's config files and just restart it to pick up the changes?
View 4 Replies
Oct 19, 2011
I know how to communicate with a web service from VB6 application using SOAP messages.
But I want to develop something like---- a Web Service will listen to request from other applications, and after receiving any such request it will send a message to process that request to my VB6 application.
View 6 Replies
Jun 2, 2008
I have just developed a solution with a Windows Service Application project and an accompanying Setup project. Is there a way to specify in either project the domain account under which the service should run?
View 3 Replies
May 19, 2009
I am using Vb 2005 to develope a windows service, i have completed a long flow,but at the end i am having a little problem.When i use process.start("abc.exe"), it didnt show me But when i have a little more analysis of the problem i noticed that its running in background by making windows service as its parten process, So it means process runs but as a service how i can show that application on desktop?
View 3 Replies
Apr 15, 2009
I created new windows service with timer inside it for scheduler purpose and it can run successfully but it can't run other application (ex: notepad) when the timer elapsed. I can see the process running in Task Manager but the notepad windows is not open. I used this code in timer_elapsed event.
AppLauncher oAppLauncher = new AppLauncher(@"C:WindowsRegedit.exe");
new Thread(new ThreadStart(oAppLauncher.StartProcess)).Start();
where applauncher is a Class
Class AppLauncher {
string myAppPath = string.Empty;
[Code] .....
When I build windows App I can see Notepad open using the same code.
View 4 Replies
Aug 4, 2009
I have an application right now that requires a few different DLL's and some other command files and such. The problem I have with running it the way it is that it requires me to transfer the installer to my customers machine and then install the app i have built run it to get the report back i need.Network based to run this wouldnt work as all the customers are behind firewalls and it would take a miracle to get it opened up to make this work. So what i was hoping was to convert it to a web service/web app where i can have it run that report.
View 1 Replies
Jan 25, 2012
is there any way to speed up web service application
View 7 Replies
Jun 11, 2009
I have this code for a Windows service I am writing in .NET....However the TICK function never gets executed regardless of what interval I put in the tmrRun properties. What am I missing? I am sure its something stupid I am not seeing.
View 6 Replies
Feb 14, 2012
I made a program that makes backups of a database when the user runs the application, etc. But now my new work is to make it as a Windows Service, to run on the days and time that the person choose, how do I do it ? I never created something like this. I got all the code to make the backup, now the problem is to create it as a service.
This is my form to the person choose the days and the hour to the process runs and install it as a service, and when it runs to be minimizated on the windows icons near clock and date and another option on another button to make it a service too, but now to load all the time that the windows starts :s
View 10 Replies