access

Does Geoname web service has a limitation on requests?

Hi all, Can anyone tell me if the Geoname web service, which provides the address and lat/long information, has a limitation on requests? e.g. 2,500 hits per day. Cause I found that Google Maps API allows 2,500 hits per day. Thanks very much. Yours, Ling ...

Is it possible to make a single login of two joomla project?

I am new to joomla. I have two joomla project now my work is too make this two joomla project access in a single login location or either any of the project. If a logged in a single project i am going to access another project without login. Whether it is possible? If possible please guide me how can it will do? ...

Drupal : how to emulate the public/private attribute available in WordPress

Hi, Basically, I'm looking for an easy way (module) to add a private/public option to any kind of content I may published in Drupal (blog entry, image, etc.). So that when I'm logged in, I can see everything. But when an anonymous user visit the site, he will only see the public stuff. It's way to manage a kind of front window/back-stor...

Access .NET dll's method using Java code

I have a dll namely product.dll created using .NET. How can I access that dll's constructor or method using Java code. Is it possible to access without using JNI? ...

How do I give PHP write access to a directory?

I'm trying to use PHP to create a file, but it isn't working. I am assuming this is because it doesn't have write access (it's always been the problem before). I tried to test if this was the problem by making the folder chmod 0777, but that just ended up making every script in that directory return a 500 error message until I changed it...

How can I automatically retrieve a CSV file from web, save it in a directory, and access it in C#?

I am working on an application which has to retrieve data from a CSV file online and display it with a click of a button. However, how can I automatically store the CSV file in a safe place where I can access the information? I am working with Visual Studio C#. Thank you. ...

C++: Is there a way to limit access to certain methods to certain classes without exposing other private members?

I have a class with a protected method Zig::punt() and I only want it to be accessible to the class "Avocado". In C++, you'll normally do this using the "friend Avocado" specifier, but this will cause all of the other variables to become accessible to "Avocado" class; I don't want this because this breaks encapsulation. Is what I want i...

.NET ORM and Security

We're going to use an ORM tool with a .NET desktop application. The tool allows creation of persistent classes. It generates all database tables automatically. In addition to other data, our system needs to store user credentials, and deliver access control. The question is, is there any possibility of access control by means of ORM, w...

Is there special variables shared between MPI processees ?

Hello All, I'm new in MPI programming world and i'm wondering if there is some variables shared between MPI processees and accessible from any process without having to send/receive them ? Thanks ...

Entity framework : [Set all the entities with internal access specifier]

Hi, By virtue of my application, I need to seperate my business entities from the entities created by EF4. I need to restrict the entities to only access the repository from where they are translated (using translator) to business entities shared at business and service layer. I thought of restricting them by specifying them as internal....

Is MPI_Request global among the MPI processees ?

Hello All, If i declare a table of MPI_Request ( one request for each CPU ), it will be accessible globally when using for MPI_Isend/MPI_Irecv ?? ( In comparison with MPI_comm that is everywhere accessible after initializing the MPI environment ) Thanks. ...

how to access directory from file server in java?

HI... Currently I m working in a application in which application allows to access directory (which contains some files) from file server to Application (client). I tried following code.. URL url=("http://192.168.5.555/file-server/user/images/"); URI uri=url.toURI(); File list[]; list= new File(uri).listFiles(); But its thrown jav...

ActionScript Dictionary: How to access the first element? How is it stored?

Hello, When you do a "for... in" loop, it will iterate over a Dictionary for example. I was wondering how internally this is being tracked and how it could be accessed? I think the Dictionary class stores a reference to the first item, but I would like to access it and check but I cannot figure out how. This is a bit advanced, does any...

django accessing class variables in a view

hello, i want to make a notification function, and i need fields from 2 different models. how can i access those fields? in my notification view i wrote this data = Notices.objects.filter(last_login<date_follow) where last_login belongs to the model class User , and date_follow to Follow but it is not a proper and correct way of acc...

What is the best option for reading Java property files?

Hello I have an application which uses a servlet to read an intialization parameter from web.xml for the location of a property file. The serlvet then creates an instance of a class which stores the location of the file for other programs to read as required. This class has appropriate get and set methods. But my question concerns acce...

Is there a way to programatically access a bazaar repository?

I would like to access a bazaar repository and pull code from it with either a Python or PHP script. How is this done? Is there a Python module / PEAR library that makes this easy? If it helps, the repository is on Launchpad. Edit: As mentioned below, running the bazaar commands directly is not an option. Also, an example would be muc...

Access is denied

Hi, I got this code for my sharepoint, but I get a Access is Denied, can anyone help me out here ? <!-- Load and display list - iframe version --> <!-- Questions and comments: [email protected] --> <DIV id="ListPlaceholder"><IMG src="/_layouts/images/GEARS_AN.GIF"></DIV> <!-- Paste the URL of the source list below: --> ...

Is there a rule to define a primary key on a sql-Server table for access with MS-Access?

Defining some Tables in SQL-Server which will be accessed via ODBC from MS-Access. I'm not sure about it, put i read somewhere that a primary key must bee named with 'aaaaaPK_ColumnName'. The 5 'a' should manage that the PK is listed first in the dialog for all key's in MS-Access. What do you think about that? ...

Accessing and inheriting Windows Message for other Windows Message in Delphi

I am using WMSysCommand messages to modify Caption bar button ( Maximize / Minimize ) behaivor and recent update requiered to use WMNCHitTest, but I do not want to split these two related messages in multiplie procedures because of lengthy code. Can I access private declaration ( message ) from other message? And if I can - How to do it...

Access to a oracle Database

I have created a database in Oracle. Say "TEMP" is the name of the database created. I have created a user DWH. Now I would like to grant access to TEMP for the user DWH. How shall i do? ...