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;
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
add a comment |
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
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
add a comment |
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
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
c# rest windows-services firewall ethernet
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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