Access difference Windows Service - UserWhat is the difference between String and string in C#?How do I get the path of the assembly the code is in?How do I uninstall a Windows service if the files do not exist anymore?What is the difference between an abstract function and a virtual function?Understanding REST: Verbs, error codes, and authenticationRestful API serviceWindows Service will not start as Local UserSOAP vs REST (differences)Why not inherit from List<T>?Impersonate user in Windows Service

How to write a 12-bar blues melody

Chapter style minimal design

PWM 1Hz on solid state relay

How do LIGO and VIRGO know that a gravitational wave has its origin in a neutron star or a black hole?

In Russian, how do you idiomatically express the idea of the figurative "overnight"?

What was the first sci-fi story to feature the plot "the humans were the monsters all along"?

Uniform boundedness of the number of number fields having fixed discriminant

What exactly are the `size issues' preventing formation of presheaves being a left adjoint to some forgetful functor?

What are the differences between credential stuffing and password spraying?

How do inspiraling black holes get closer?

Is there an official reason for not adding a post-credits scene?

Wrong answer from DSolve when solving a differential equation

Are there any of the Children of the Forest left, or are they extinct?

Has a commercial or military jet bi-plane ever been manufactured?

Target/total memory is higher than max_server_memory

IP addresses from public IP block in my LAN

How can I support myself financially as a 17 year old with a loan?

Why do people keep telling me that I am a bad photographer?

How should I tell my manager I'm not paying for an optional after work event I'm not going to?

Where is the documentation for this ex command?

What to use instead of cling film to wrap pastry

Are Finitely generated modules over a ring also finitely generated over a subring containing the identity?

Should I decline this job offer that requires relocating to an area with high cost of living?

How I can I roll a number of non-digital dice to get a random number between 1 and 150?



Access difference Windows Service - User


What is the difference between String and string in C#?How do I get the path of the assembly the code is in?How do I uninstall a Windows service if the files do not exist anymore?What is the difference between an abstract function and a virtual function?Understanding REST: Verbs, error codes, and authenticationRestful API serviceWindows Service will not start as Local UserSOAP vs REST (differences)Why not inherit from List<T>?Impersonate user in Windows Service






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have the problem that I have a different behaviour of the same code when it runs as a local system service or as a user



I am trying to access some "etas" hardware which is connected with Ethernet which is purely for this hardware.



IPMSERVERLib.CIPManagerCom2 cip2 = new IPMSERVERLib.CIPManagerCom2();
cip2.CreateIPManager(0, 1);
IPMSERVERLib.ICGetConnectedSystems cs2;
cs2 = cip2.getNewConnectedSystemsObject();
cs2.update();
Console.WriteLine(cs2.getNoOfConnectedSystems()));


When i run the code as a user I get always on all computers the correct number of two (two systems)



When i run the code as a windows service (Web-service) i get on 20% of the systems the wrong number.



I don't get an error so the code always runs through.
The local system should have more access rights then the user. So i am completely struct why this is not working.
The windows version, software version of the products are always the same.



What is really the different from accessing from a windows web service then from a user?










share|improve this question






















  • What is a “windows web service”?

    – stuartd
    Mar 23 at 0:02












  • sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

    – user3077796
    Mar 23 at 11:57

















0















I have the problem that I have a different behaviour of the same code when it runs as a local system service or as a user



I am trying to access some "etas" hardware which is connected with Ethernet which is purely for this hardware.



IPMSERVERLib.CIPManagerCom2 cip2 = new IPMSERVERLib.CIPManagerCom2();
cip2.CreateIPManager(0, 1);
IPMSERVERLib.ICGetConnectedSystems cs2;
cs2 = cip2.getNewConnectedSystemsObject();
cs2.update();
Console.WriteLine(cs2.getNoOfConnectedSystems()));


When i run the code as a user I get always on all computers the correct number of two (two systems)



When i run the code as a windows service (Web-service) i get on 20% of the systems the wrong number.



I don't get an error so the code always runs through.
The local system should have more access rights then the user. So i am completely struct why this is not working.
The windows version, software version of the products are always the same.



What is really the different from accessing from a windows web service then from a user?










share|improve this question






















  • What is a “windows web service”?

    – stuartd
    Mar 23 at 0:02












  • sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

    – user3077796
    Mar 23 at 11:57













0












0








0








I have the problem that I have a different behaviour of the same code when it runs as a local system service or as a user



I am trying to access some "etas" hardware which is connected with Ethernet which is purely for this hardware.



IPMSERVERLib.CIPManagerCom2 cip2 = new IPMSERVERLib.CIPManagerCom2();
cip2.CreateIPManager(0, 1);
IPMSERVERLib.ICGetConnectedSystems cs2;
cs2 = cip2.getNewConnectedSystemsObject();
cs2.update();
Console.WriteLine(cs2.getNoOfConnectedSystems()));


When i run the code as a user I get always on all computers the correct number of two (two systems)



When i run the code as a windows service (Web-service) i get on 20% of the systems the wrong number.



I don't get an error so the code always runs through.
The local system should have more access rights then the user. So i am completely struct why this is not working.
The windows version, software version of the products are always the same.



What is really the different from accessing from a windows web service then from a user?










share|improve this question














I have the problem that I have a different behaviour of the same code when it runs as a local system service or as a user



I am trying to access some "etas" hardware which is connected with Ethernet which is purely for this hardware.



IPMSERVERLib.CIPManagerCom2 cip2 = new IPMSERVERLib.CIPManagerCom2();
cip2.CreateIPManager(0, 1);
IPMSERVERLib.ICGetConnectedSystems cs2;
cs2 = cip2.getNewConnectedSystemsObject();
cs2.update();
Console.WriteLine(cs2.getNoOfConnectedSystems()));


When i run the code as a user I get always on all computers the correct number of two (two systems)



When i run the code as a windows service (Web-service) i get on 20% of the systems the wrong number.



I don't get an error so the code always runs through.
The local system should have more access rights then the user. So i am completely struct why this is not working.
The windows version, software version of the products are always the same.



What is really the different from accessing from a windows web service then from a user?







c# rest windows-services firewall ethernet






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 23:07









user3077796user3077796

70113




70113












  • What is a “windows web service”?

    – stuartd
    Mar 23 at 0:02












  • sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

    – user3077796
    Mar 23 at 11:57

















  • What is a “windows web service”?

    – stuartd
    Mar 23 at 0:02












  • sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

    – user3077796
    Mar 23 at 11:57
















What is a “windows web service”?

– stuartd
Mar 23 at 0:02






What is a “windows web service”?

– stuartd
Mar 23 at 0:02














sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

– user3077796
Mar 23 at 11:57





sorry i meant i have a windows service written which acts as a REST service. So the code above will be called everytime when someone wants to get infomations about connected hardware

– user3077796
Mar 23 at 11:57












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308892%2faccess-difference-windows-service-user%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308892%2faccess-difference-windows-service-user%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript