When I am running the application I can access the file..
When I am running the executable that is created, I cannot access the file..
Any suggestions?
I have a void pointer and want to access elements from it. How could I transform a void * into an unsigned byte pointer so I can access its elements (which I know are actually unsigned bytes).
Thanks
Using C++
I have several PDF files stored in Amazon S3. Each file is associated with a user and only the file owner can access the file. I have enforced this in my download page. But the actual PDF link points to Amazon S3 url, which is accessible to anybody.
How do I enforce the access-control rules for this url?(without making my server a proxy for all the PDF download links)
Hey Guys,
does anybody know how i can access a custom cell within the - (void)tableView:commitEditingStyle:forRowAtIndexPath:. I need access to my Custom Cell Class to retrieve some parameters.
Thanks.
I have someting like this
class A:
__a = 0
def __init__(self):
A.__a = A.__a + 1
def a(self):
return A.__a
class B(A):
def __init__(self):
# how can I access / modify A.__a here?
A.__a = A.__a + 1 # does not work
def a(self):
return A.__a
Can I access the __astatic variable in B? It's possible writing a instead of __a, is this the only way? (I guess the answer might be rather short: yes :)
Hi
I have CFv2.0 VB.net application running on PDA 6.0 accessing webservices all the time for data exchange. Number of PDA's are more then 20 all accessing the webservice on Windows Server 2008 IIS7.0 all of a sudden some PDA's stop working (cannot access web service) and get web no connection exception. Can access the service from IE.
Any clue?
Cheers
Gauls
Why do I need to Demand permission? Why can't it simply fail (commenting out the .Demand() call)?
ref: http://support.microsoft.com/kb/315529
Thanks!
try
{
// Demand the permission to access the C:\Temp folder.
permFileIO.Demand();
resultText.Append("The demand for permission to access the C:\\Temp folder succeeded.\n\n");
}
i think i know the answer to this question, but just want to make sure before i dismiss the possibility.
is it possible with user permission for my web app to access pim data like the address book on a iphone, similar to how a web app can access the location service?
Hello Guys
I am trying to access an Shellfolder like: "Shell:::{35786D3C-B075-49b9-88DD-029876E11C01}"
via Java on a Windows PC ... but I havn't found a way to do so up to now.
Is this generally possible with Java? Recently I uncovered the sun.awt class "ShellFolder"... Does this class provide the abilitiy to access such an folder?
thanks for your help Ripei
Hello Friends......I'm creating a multiform application in c#. I'm storing the values from the user in a List in form 1 and I want to access the same stored values of the same list in form 2...I m not able to access the stored values...The error I'm getting indicates that there are no values in the list which I'm accessing from form 2...Please help me out...
Hi all,
I have a datagroup where I use a custom itemRenderer with a datagrid inside. What I want is to access each datagroup's itemRenderer's datagrid and get it's dataProvider
All I know is tha you can access the ItemRenderer by usinf myDataGroup.getElementAt(index)
Thanks in advance
I have an iframe in b.com which attempts to grab the jQuery library from a.com [my website]. Whenever it does this I get the "Access is Denied" error in both IE7 and IE8.
I have checked out Fiddler and it doesnt show that the script is getting blocked - but IE does errors with "Access is Denied"
What is causing this prob and how to get around it ?
Thx
We have a requirement to control access to our SaaS based web application based on IP addresses (i.e. We will have to limit access to Company A users only if the request originates from the PCs in their subnet). How do you solve this issue?
Hi,
When login through root on HP-tru Unix server, I am trying to access a directory, it is saying "Permission Denied".. Also, an sh file is also not able to execute through same root access..
I have checked the permission of the directory as well as for sh file through ls-ltr.. It is also fine.. Root System rwx-rwx-rwx--
What could be the possible cause, and how to correct it..
Thanks.
How can I check internet access with MonoTouch? I don't care if the internet comes from a WIFI or the Cell Network, all I care is whether there is internet access or not.
I'm looking for a way to access a POP3 account while running a JUnit test. Does anyone know how to do that? I probably need some kind of library for POP3 access I guess.
Question
I setup Hudson CI on a Windows 2008 server and now I want to be able to use the domain name to access it from any web browser. Right now I can only access it by using http://localhost:8080. How do I configure it to be public accessible?
I am created a website using visual studio 2010. On the time of the development of website I am able to access the database.. but after publishing the site using IIS7..i was unable to access the database..the exception occured during that time was "the connection is in the closed state".in IIS7 When I changed the application pool identity to localsystem, it worked.
Data base is installed in the same machine. and server is SQL SERVER 2008 R2
Assume you have a class that defines virtual methods with the access specifier public.
Can you change the access specifier on your overriden methods?
I am assuming no.
Looking for an explanation.
Hi,
Hoping someone can assist but I am trying to access a div id="mnuGrp" that resides inside a child iframe(id="iframe2) from the parent window within the document.ready() section but unsure how to access this child div in the parent inorder to apply fadein and fadeout calls.
Any help would be appreciated.
Thanks.
I have a spring container running, and I have class with which I want to have access to the bean created inside spring container. The class I have is not registered with the spring container.
One thing I can do is that I can use MethodInvoker to call a static method, so I will have access to static field (this would be a bean from spring container) in my class always.
Do we have class like WebapplicationContextUtils for a application that is not web?
Scenario
I have a variable in the Java file, which I want to access in the mule config xml. How do I do that.
Example - There is a web service which passes params like this
localhost/apiname?name="dynamic data"
So while hitting the web service I want to pass param "name" as a dynamic data. How do I do that. I assume if I'm able to access the Java variable in the xml file then that will be possible.
I wrote a simple dll with only 2 functions in it. Is there a way to access these functions without having to instantiate them on every page?
Can't I add them to the web.config somehow as assemblies thus giving me access to them?