|
I am using a service controller in a win forms application to start and stop a service which listens to a message queue and processes the messages. I get an access denied error when the service is started from the win forms application.I am using Vista...
Started by kjayakum on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Add an "Application Manifest File" (that is the name of the template in Visual Studio) and set the requested execution level to "requireAdministrator" (there... .
Probably you have elevated when opening the services console, but not for your own app.
|
|
In the white paper, it said that we can use REST to ask for the token then use the token to attache to the request we are going to fire, then can invoke the service in the service bus, how ever, i cannot get the token
Bellow are the codes i use to make...
Started by shrimpy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The white paper get a misstake,
there is one extra 's' in the link, it should be String uri = String.format... .
String uri = String.format("https://accesscontrol.windows.net/isssuetoken.aspx?u=%s&p=%s", "solutionname", "password");
the like above is wrong.. .
|
|
Im trying to access a web service from a remote computer. I managed to access the web service from the browser. But Im getting HTTP 403 when I try to call the web service from the application.
Any idea why?
Started by awano7 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Reasons for this might be:
The remote host you are is being blockedThe Web server thinks that the HTTP data stream sent by the client was correct, but access by a firewall You've reached the limit of calls....
To access the web service.
|
Ask your Facebook Friends
|
Hi ,
I have created and deployed a wcf service on iis. I am able to access the service in intranet , what else should i do to expose my service in internet??
Started by Ashish Ashu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
service (IIS? Self-hosting)? what protocol / binding are you going to use? basicHttp is the easiest interoperability with other systems is its big advantage or do you want to expose a REST service, so/password? Not at all? where (what address....
|
|
This is what I wish to achieve:
My ASP.NET web service is hosted on a server called //service . I want to control access to the web service by server and by application as well. What I mean here is if I have two ASP.NET web applications (app1 and app2...
Started by Gnot on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I recommend using SSL access to one of the web service in the server will need approval I don't want to give away any login access right to....
service without providing recognized credentials, it would be denied access.
|
|
Hello, I have created a windows service and I would like it to access a web cache. I have stored a datatable in web cache and I would like for my windows service to access and process it. Is this possible?
Started by Luke101 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Then, you can....
I'm uncertain need to when you "process" your cache entries, consider adding a simple web service to your website and protect it with credentials.
Accessing ASP.Net's runtime Cache requires access to the w3wp process.
|
|
I'm working on a Windows Service that one of its tasks is archiving files on remote machine but I've problem regarding access privileges "Access id denied".
The service account is "LocalService",
How can I give service access to remote machine?
Started by Ahmed on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So you need to either allow anonymous access on server2 or change the serviceLocalService cannot have....
A service on server1 that's running under the Local Service principal and that tries to access on the policy of server2.
|
|
I have a web service hosted on another server with the Anonymous Access CheckBox in IIS is already checked. when my local web application is trying to access the web service, i still get the "The request failed with HTTP status 401: Access Denied." error...
Started by Gnot on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
A lot of times doing local dev work I will forgot that the directory being accessed has checked the NTFS permissions on the machine....
If that is the case, confirm that the account does have access access.
Network Service Account.
|
|
Currently inside my organization we are trying to come up w/ some conventions for a pilot SOA project. At first glance we thought it would be best to force users of the service to use the business service w/out direct access to any data endpoints .. but...
Started by Toran Billups on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Then noone is asking "what does this other service do that uses my database?" because it isn't.
Wouldn't your webservice just be a thin wrapper for your business layer anyway? Your service layer.
|
|
Hi,
I have a need to start the Apache service with a parameter so that I can later access that parameter via PHP. Is this possible?
Started by Tower on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The httpd program will take a 'directive' when you start... .
Take a look at shmop_open() et alia.
See also: getenv
Based on the comments on your question, I'd say that using shared memory is an acceptable alternative .
You can set an environment variable.
|