Pass Arguments To Service?

Jun 16, 2009

I have an application which sits on general users machines. What I want to be able to do is for the users to create a new directory through the application that will create a directory on a server that they do not have access to for secutiry reasons. Then the users can create a file within the new folder through the application, again which they do not have access to. The whole idea is to have an application that manages files that are able to be accessed by many users through the application / backend database, and therefore we do not want the user to be able to manipluate the folder / files by mapping to the location. Then if the user wants to work on the file he requests it through the application which then copies it locally to their machine.

The way that I can see this working is by having a service running on the server that has access to create folders and files in this location. The user can then request the creation of a folder / file through the application which then instructs the service to create the folder / file.

Is there anyway that I can pass arguments directly into the service on the server, or would I have to create an entry in a database on the server that the service is monitoring and then performs the request?2a. If I do have to have the service monitoring the database if I make the service check this every second will this slow the server down and will the server guys at a company be OK with this running this quick?I also need to be able to let the user know through my application that the folder / file has been created successfully, therefore what is the best way to do this? Again get the service to write to the database that the request has been completed? If this is the case then my app will have to poll the database continually to check the database that the request has been completed, this could slow the application down?

View 3 Replies


ADVERTISEMENT

Making An App To Pass URI Arguments?

Feb 2, 2011

im trying to make a little app that you can run from a web address bar... some games we play has that function in the game but some dont... so i found some source code online on how to insert data into registry and i can launch the game from a web browser address bar... BUT i need to pass another argument path to game\game.exe -mod:"modname here" -server:"server ip here":"server port here" -noautoplay now i can get it to load with path to game\game.exe -server:%Host%:%Port% -noautoplay some code from the app....

Dim u As New Uri(args(0))
Dim arguments As String = reg.GetValue("HeatLinkArguments").ToString()
arguments = arguments.Replace("%Authority%", u.Authority)

[code]....

but how can i add a string in of my own??? i want to have something like this....

path to game\game.exe -mod:%ModName% -server:%Host%:%Port% -noautoplay
arguments = arguments.Replace("%ModName%", "name of mod")

how would i insert "name of mod" in to the replace?

View 2 Replies

Pass Arguments To A BackGroundWorker?

Feb 7, 2011

Imports SpeechLib
Public Class Form1
Public vox = CreateObject("sapi.spvoice")

[Code].....

How can I pass text2 to vox.speak?

View 1 Replies

Pass Runtime Arguments To Exe?

Aug 25, 2009

i want to call one (executable) file form another Application's (Main) mnu_Click event.how to call exe in Main Application.what code should be written in Config.exe?

View 2 Replies

C# - Cannot Pass Arguments In Dispatcher.invoke?

Mar 16, 2012

I will need to convert the following VB Form code to WPF C#:

// VB Me.Invoke(New FooDelegate(AddressOf Foo), New Object() {cmd})

Where Foo is just a method taking a string argument cmd.

I tried all the following in WPF C#, but all giving me exception:

//C#
dispatcher.Invoke(new FooDelegate(Foo()), cmd);
dispatcher.Invoke(new FooDelegate(Foo(cmd)), cmd);
dispatcher.Invoke(new FooDelegate(Foo()), new object() {cmd});

What is the correct formatting?

View 1 Replies

How To Pass Arguments In A Thread Call In VB

Feb 21, 2010

Im trying to call a procedure to run into a thread..But this procedure requires two arguments. How can I pass these arguments in to the function when the thread call:

Dim myThread As New Threading.Thread(New Threading.ThreadStart(AddressOf PopulateTermList myThread.Start()

addressof PopulateTermList should only be called without parenthesis(the VB tells me this)

View 5 Replies

Pass Arguments While Form Is Loading?

Jan 19, 2010

I have a listView control on one of my form. It contains no of records. Now my question is how to pass a particular record or its reference to another form i.e. I have designed a form which display's the details of a particular record (Searching facility is there in that form.). When user double clicks on the particular recode in the listView, I want to load that record into the 'search form' (i.e. the form which displays the full details of a particular record).

View 2 Replies

Start A Program And Pass It Arguments?

Feb 20, 2010

Is possible? I plan to backup mysql database using vb.net.

View 1 Replies

VS 2008 - Updater.exe - How To Pass Arguments

Oct 19, 2009

Ok im going to make a updater for a current program. And I found this code on this website.

Dim OnlineLocation As String = My.Application.CommandLineArgs(0)
Dim LocalLocation As String = My.Application.CommandLineArgs(1)
My.Computer.Network.DownloadFile(OnlineLocation, LocalLocation)
MessageBox.Show("Update Complete")

But i was wondering, once ive made it. How do u actually pass arguments to it.

View 7 Replies

Pass Parameters Using Process.startinfo.arguments?

May 15, 2009

I am running an exe program from VB (Visual Studio 2005). This exe program accepts 3 parameters.I am passing the first parameter as a string and the next 2 as parameters from the Sub. However, the exe program treats all of them as string. I tried to use "&" and "+" between arguments and got the same results.[code]...

View 4 Replies

VS 2010 Pass Arguments To Application After Started?

Sep 4, 2009

how to use Visual Basic to pass arguments to an application after said application was started. Example, "myapp.exe -d" enables debug mode, I want to be able to start myapp.exe then have a checkbox labeled "Debug mode" in Visual Basic. Upon "Debug Mode" being checked, it passes the argument -d to myapp.exe. Upon it being unchecked, it withdraws that argument from myapp.exe.

View 4 Replies

Pass Constructor Arguments To Application Main Form?

Oct 23, 2010

I've constructed a custom System.Windows.Forms.Form that requires arguments to New. I want to use one of these as the MainForm in a Windows Forms Application. How do I get the Application Framework to pass those arguments as needed?

View 1 Replies

Windows Service & Command Line Arguments?

Mar 9, 2009

I have a simple question that I can not figure out.I have a service (service.exe) that is running as SYSTEM.I want to be able to send this service command line arguments. How would I do this? I am not able to just service.exe /arg because the service is running as SYSTEM and I am logged in as an admin. Is there way?

View 10 Replies

Pass Multiple Arguments To A Delegate Method From A List(Of T).ForEach Call?

Sep 6, 2011

Is it possible to pass multiple arguments to a delegate method from a list(Of T).ForEach call?So, I'd like to pass a listbox object to the delegate routine below:

Sub test()
Dim names As New List(Of String)
names.Add("Bruce")
names.Add("Alfred")

[code]....

View 4 Replies

How To Pass Array To Web Service

Jan 13, 2011

i have collection of data in an array. i need to pass it to web service as an array. how can i do that?

View 2 Replies

Pass A List Of Objects To WCF Service?

Apr 26, 2011

I'm trying to pass a list of objects to my WCF service, but it doesn't seem I can pass an object list from my console test application. I have an error that states:

Value of type
'System.Collections.Generic.List(Of
ConsoleTestingApp.ServiceReference1.LetterVariables)'

[code]....

View 1 Replies

Pass Parameters Back And Forth Between A Windows Service And .NET Program?

Aug 29, 2011

Can I pass parameters back and forth between a Windows Service and .NET program? For ex: I want to pass a compressed/encrypted byte paramater to the Windows Service, who then decompress/decrypt it and return back the decompressed/decrypted bytes.

View 1 Replies

Pass The Values From The Dynamically Added Textbox To A Web Service?

Jan 12, 2011

I created 5 textboxes using runtime controls:

For i As Integer = 0 To 4
Dim custom As New TextBox
custom.Name = "Custom" & i

[Code]....

how can I get those values and then pass it to a web service? (This should happen when i click the submit button)

View 6 Replies

Web Service To Deserilize JSON Http Request - Pass To Stored Procedure To Retrieve Data From SQL Server

Aug 23, 2011

I have a task to create a web service to receive client-side app's http request(with rpc={json data} in the end), deserilize it and put he parameter in stored Procedure in order to retrive data from sql server. the procedure query and client-side's app are already there and the return data to client-side app is JSON too

View 1 Replies

.net - WCF Service Hosted In A Managed Windows Service Connect Using A WCF Service Application

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

Service Error Cannot Open <service Name> Service On Computer '.'

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

Start A Folder Monitor Service At Runtime And Pass On The Folder Path To Monitor?

May 27, 2010

I have the following windows service file:

Imports System.ServiceProcess
Imports System.IO
Public Class fswService

[Code].....

2 problems: first, intellisense error saying: 'fswService' is a type and cannot be used as an expression. second, I can not figure out a way to pass on to the service the path of the folder to watch (which is stored at My.Settings.userPath).

View 2 Replies

VS 2005 Update Table - If All Results Is PASS Then The Table2 Should Be Updated As Pass

Jun 8, 2012

I have two tables:

table1

case_no flow result
tc_1 001 pass
tc_1 002 pass
tc_1 003 pass
tc_2 001 pass
tc_2 002 fail
tc_2 003 pass


table2"

case_no result
tc_1 pass
tc_2 fail

Table2 should be updates from table based on the results... If all results is PASS then the table2 should be updated as pass... if any result is FAIL then the entire case_no should be updates a s fail..

View 7 Replies

Sockets - VB9 .Net 3.5 (2008) Code Works On The First Pass.Then Second Pass It Just Hangs On

Jun 19, 2009

This code was working consistently, but now...This code works on the first pass.Then second pass it just hangs on Code:Dim tcpClient As TcpClient = tcpListener.AcceptTcpClient() for about 2 minutesThen the code will fork for another pass, then fail.....

Code:Imports SystemImports System.TextImports System.Collections.GenericImports System.XmlImports System.Xml.LinqImports System.Net.Sockets

[CODE]....

View 2 Replies

Pass Data To Dialog - Manipulate And Pass Back?

Jan 15, 2010

Just started VB programming this week and have found a wealth of information about what I'm trying to do. Problem is, some of it is more complete than others.Here's what I'm trying to do:In Form1 (my main form), I want to instantiate a class that contains a couple of properties (speed setpoint and position setpoint). When I click a button, I want to pass this data to Form2 and populate two textboxes on Form2 with the properties of this object. I want to manipulate the property values on Form2 and click an OK button which closes the dialog and returns the manipulated data, updating the property values of the object. Here's the algorithm I'm following:1) On Form1, instantiate the class2) On Form1's "Pass Data" button click event handler, instantiate a Form2 object and invoke the ShowDialog method, passing the object as a parameter.

3) On Form2, overload the ShowDialog method to accept the object as a parameter and modify the method so that it returns the manipulated class data.4) On Form2, in the ShowDialog method, populate the textboxes with the class data that was passed in.Here's where I get stuck. If I press the OK button on Form2 (DialogResult.OK), it returns me to Form1, but what hook do I have in Form1 to receive the manipulated class data that the ShowDialog method is returning?Here's an example of what I'm thinking about:

Code:
Public Class Form1
Dim clsController1 As New MotionController

[code].....

I'm sure it's probably a very elementary question, but every explanation I've found seems to be incomplete.

View 2 Replies

Warning1 The Service System.ComponentModel.Design.IInheritanceService Already Exists In The Service Container

Mar 15, 2010

I got this warning that I don't know what it means.Warning1 The service System.ComponentModel.Design.IInheritanceService already exists in the service container.Parameter name: serviceType00

View 2 Replies

[VS 2005] Service Control Manager Privileges - Communicate With A Windows Service On A Remote Machine On The Network

Jul 23, 2009

I am trying to communicate with a Windows service on a remote machine on the network but i keep getting an exception saying the following: "System.InvalidOperationException: Cannot open Service Control Manager on computer 'machine001'. This operation might require other priviledges. ---> System.ComponentModel.Win32Exception: Access is denied.

[Code]...

View 4 Replies

Have A Dotnet Windows Service Which Monitor Other Services And Upon Stop Of Any Service?

Sep 18, 2009

Is it possible to have a dotnet windows service which monitor other services and upon stop of any service, the monitoring service would be able to start the stopped service.

View 4 Replies

.NET Application Receiving 503 Service Unavailable Error When Calling Web Service?

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

C# - Make Service Act Dynamically Based On Service Running Condition?

Jul 6, 2011

i was trying to make my service act dynamically... i have set time for my service about for 2 min ,if suppose it was doin huge amount of work means it will exceeds that 2 min time limit then we need to check the service condition if work is pending means we need to run that instance until upto finish.

public static void StartService(string serviceName, int timeoutMilliseconds)
{
ServiceController service = new ServiceController(serviceName);[code]............

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved