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

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현