Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
1answer
8k views

Add attributes to a simpletype or restrictrion to a complextype in Xml Schema

The problem is as follows: I have to following XML snippet: <time format="minutes">11:60</time> The problem is that I can't add both the attribute and the restriction at the same time. ...
11
votes
11answers
8k views

What does the 'static' keyword do in Java?

To be specific, I was trying this code: package hello; public class Hello { Clock clock = new Clock(); public static void main(String args[]) { clock.sayTime(); } } But it ...
10
votes
5answers
646 views

Incorporating shareware restrictions in C++ software

I wish to implement my software on a shareware basis, so that the user is given a maximum trial period of (say) 30 days with which to try out the software. On purchase I intend the user to be given a ...
9
votes
5answers
573 views

Why I can't extend bool in Python?

>>> class BOOL(bool): ... print "why?" ... why? Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: Error when calling the metaclass bases ...
8
votes
2answers
7k views

How to achieve “not in” by using Restrictions and criteria in Hibernate?

I have list of category. I need a list of category by excluding 2,3 row. Can we achieve through hibernate by using Criteria and Restriction?
6
votes
4answers
211 views

Is there any way to block a C# plugin from accessing the main C# Application in a program?

I have a program and a simple plugin architecture where the plugins implement a generic interface and the main program loads all plugins that implement this interface. It's the most common custom ...
6
votes
4answers
1k views

Generic Restriction Hell: Bound Mismatch

I'm working on a project that has an extensive tree of generic inheritance and dependencies. Go to edit to see better example. The basics look something like this: class A { ... } class B { ... ...
6
votes
4answers
241 views

an I prevent a specific type using generic restrictions

I have an overload method - the first implementation always returns a single object, the second implementation always returns an enumeration. I'd like to make the methods generic and overloaded, and ...
5
votes
3answers
266 views

Which Java xml framework can handle code generation with restrictions/extensions in schemas?

Greetings, There is a set of XSD files, with the following types described in them: A is a complex type with various elements. B restricts A, keeping only some of its elements C extends B, adding ...
5
votes
5answers
181 views

Restrict what can create a PHP Class

I got two classes, "A" and "B". In the application logic no one is allowed to create an object of class "B", except for class "A". But, since I dont want to have the two classes in the same file I ...
5
votes
5answers
343 views

What is the most hostile corporate environment to deploy a .NET WinForms app on?

Suppose you were writing a network-based WinForms application which is supposed to run in a "paranoid" environment due to restrictive company policies at the customer site. What kind of restrictions ...
4
votes
5answers
497 views

Restricting an IP if it is between an IP Range

Ok, it's friday afternoon, and i've had a long week so would appreciate some help! Currently, i have a list of IP ranges, as follows: List<IPRange> ipRanges = new List<IPRange>(); ...
4
votes
3answers
7k views

Eclipse 3.5.1 Compiler Error :The type OutputFormat is not accessible due to restriction on required library ../rt.jar

This error is weird and i cannot make much sense of it. I've installed EclipseRCP 3.5.1, Java SE 1.6 update 16 and switched to SWT 3.5. I've created a new project, set up the dependencies and tried to ...
4
votes
4answers
633 views

Limitations of Java desktop applications?

I come from a C/C++ background and now do a lot of C# stuff. Lately I have become interested in doing some projects in Java since playing around with the Android SDK. I know that Java apps run in a ...
3
votes
2answers
398 views

WCF: limit number of calls per hour - per user

I've got a WCF service (basicHttpBinding, basic authentication, IIS 6.0) on which I want to restrict the number of calls per hour - on user basis. For example, max 1000 calls per user, per hour (a la ...
3
votes
6answers
298 views

Is there a way to jail in Javascript, so that the DOM isn't visible

I would really like to provide the user some scripting capabilities, while not giving it access to the more powerful features, like altering the DOM. That is, all input/output is tunneled thru a given ...
3
votes
5answers
728 views

Restrictons of Python compared to Ruby: lambda's

I was going over some pages from WikiVS, that I quote from: because lambdas in Python are restricted to expressions and cannot contain statements I would like to know what would be a good ...
3
votes
5answers
524 views

How can I restrict reflection for certain assemblies?

In my .net application I want to restrict reflection to certain assemblies. I mean I want that my a particular assembly can be reflected by only some predefined assemblies not by any other than that. ...
3
votes
6answers
276 views

Restrictions on PHP include()

Hey guys, I am separating some XHTML from PHP by putting the XHTML into a separate file and then using PHP's include() function within the PHP script. This works perfectly fine, however, users are ...
2
votes
1answer
20 views

Can an named restriction exist in OWL?

Can we define a restriction as a named class? I mean, instead of using this: :myclass owl:equivalentClass [ rdf:type owl:Restriction ; owl:onProperty :hasAge ; ...
2
votes
1answer
74 views

Restrict File Type and size in PHP form upload

Hi all I have found some really good code over on http://apptools.com thats helped me create a form that allows users to enter there details upload a file and it then emails it to me automatically ...
2
votes
1answer
49 views

Enforcing Restritions On DataContracts

Is there any way one can enforce restrictions on values passed in the form of data contracts as parameters to a given WCF Service? For instance, please consider the contrived and certainly ...
2
votes
1answer
149 views

Limit access to FB application by age

I'm looking for a way to limit access to my html FB application to people above age limit (let say 16 years). I've found forum topic http://forum.developers.facebook.net/viewtopic.php?pid=123010 but ...
2
votes
2answers
81 views

PostgreSQL column values must be in a sequence

How would I define a column in PostgreSQL such that each value must be in a sequence, not the sequence you get when using type serial but one such that a value 2 cannot be inserted unless there exists ...
2
votes
1answer
253 views

Restrict access to certain folders using NSOpenPanel

I'm using NSOpenPanel to allow a user to select a folder to save documents into. I would like to restrict what folder (in terms of hierarchy) they can save into. Essentially, I want to prevent them ...
2
votes
1answer
580 views

Sharepoint survey - Condition to multiple responses

I have a sharepoint survey in which the first question is of type choice, where you have to chose a person. The survey allows multiple responses, and I was wondering if I could put a condition or ...
2
votes
4answers
357 views

how to restrict user not to vote an article more than once?

in my application a user can post his/her article that other users can response upon ans vote up and down also like stackoverflow has for posted question ans answers. How can I restrict user so that ...
2
votes
1answer
72 views

XSD Problem: How to only restrict an element/attribute to be used under another schema

I need to solve this and looks like I need help. Here is the problem definition We have an existing schema X [X is an industry standard schema] for which we are building some extensions in a new ...
2
votes
3answers
330 views

Is it possible to restrict instantiation of an object to only one other (parent) object in VB.NET?

VB 2008 .NET 3.5 Suppose we have two classes, Order and OrderItem, that represent some type of online ordering system. OrderItem represents a single line item in an Order. One Order can contain ...
2
votes
1answer
304 views

Excluding a folder from autotesting

I've just installed a ZenTest to use autotest in my project. I use rspec and have an integration folder inside it. As I don't want all my integration tests run every single time I start autospec , so ...
2
votes
1answer
327 views

Windows 7 Ribbon licensing vs Office 2007 Ribbon licensing

If I recall correctly one of the limitations of the Office 2007 Ribbon UI was that you cannot use it to compete with other MS Office products like Word or Excel. Does this same restriction apply for ...
2
votes
1answer
268 views

XML Schema: What does a restriction with only a base attribute mean?

What would it mean to create something like the following? <xsd:simpleType name="myField"> <xsd:restriction base="xsd:boolean"/> </xsd:simpleType> Notice there are no actual ...
2
votes
5answers
344 views

Safe Python Environment in Linux

Is it possible to create an environment to safely run arbitrary Python scripts under Linux? Those scripts are supposed to be received from untrusted people and may be too large to check them manually. ...
2
votes
10answers
1k views

How can we restrict the user from saving a web page?

How can we restrict a user from saving the page? Please provide some tips to disable File->Save and View Source options EDIT: Obviously it can't be done, and probably shouldn't be attempted. But ...
2
votes
1answer
7k views

IP restriction with htaccess

I want to restrict an entire site in such a way that just two IPs could enter the site. I have the following in my .htaccess (at the root of site): ErrorDocument 403 ...
2
votes
3answers
211 views

How do I restrict my AIR distribution?

Is there any way through which i can restrict my AIR app to be further distribution? Say I have make one AIR application and I give this app to my friend. Is there any way so that he can not re ...
2
votes
2answers
762 views

Is there a good way to bypass restrictions on running EXE files?

I have to compute at libraries quite often these days, and have been having some issues with my U3 smart drive. Despite working on some computers, public libraries here restrict the execution of EXE ...
1
vote
0answers
36 views

Threaded importing while interpreter shuts down

Python's threading documentation states: All import attempts must be completed before the interpreter starts shutting itself down. This can be most easily achieved by only performing imports ...
1
vote
1answer
37 views

Spawning a new thread while importing

Python's threading documentation states: Other than in the main module, an import should not have the side effect of spawning a new thread and then waiting for that thread in any way. Failing ...
1
vote
2answers
88 views

Any tips on how to implement restrictions in a freemium app?

I'm a struggling newbie to programming and trying to make a freemium style app with multiple plans available. I'm using the cancan gem to assign venues a role depending on what plan they are on ...
1
vote
2answers
254 views

JAX-WS RI does not enforce XSD restrictions

I am currently developing a few Web services using the JAX-WS reference implementation (version 2.1.7). They are contract-based, that is, the WSDL and XSD files are not generated by wsgen. This ...
1
vote
4answers
64 views

readonly-fields as targets from subclass constructors

A readonly field should be used when you have a variable that will be known at object-instatiation which should not be changed afterwards. However one is not allowed to assign readonly fields from ...
1
vote
1answer
83 views

What are the Graph API use restrictions?

I am working on a project that need to perform a lot of requests tou the Graph API. During my tests, I sometimes reach a limit in the Graph API use that seems to be one request per second. As far as ...
1
vote
4answers
87 views

Is there a problem with this script?

I am building an ajax/php script and I have come up with something to protect the ajax file from external access, by that I mean to restrict the execution of the script from another server (and ...
1
vote
1answer
73 views

Hibernate - Restrictions (Calendar, HOUR)

Can I get items created at specified hour (e.g. 9am) from the table using by hibernate restrictions (i mean ids 130, 146, 147, 148)? Can you tell me how (createDate is in Calendar format in Java)? ...
1
vote
2answers
314 views

Magento: Storeview Access

Situation right now: I've got a live-system and its running very well. I DO NOT have a testing system. Our live-system is a multi-store with several storeviews on one website. PROBLEM: I need to ...
1
vote
3answers
451 views

JSF and PrettyFaces - How to restrict direct xhtml requests

I'm new to JSF and PrettyFaces. So by now i found out that i can configure PrettyFaces to "forward" the request to the right .xhtml file. The problem is, that i (or a user, in case he knows my folder ...
1
vote
4answers
56 views

Restrict name of uploaded file

I am using the following code for user to upload an image. if ((($_FILES["companylogofile"]["type"] == "image/jpeg") || ($_FILES["companylogofile"]["type"] == "image/pjpeg")) && ...
1
vote
2answers
188 views

Restrict Android Market Application By Location

I've read that it is possible to restrict an application that you submit to the Android Market by country. Is it possible to restrict users from downloading your application by state in the United ...
1
vote
2answers
73 views

What are the odds of restricting a web app for only modern web browsers? [closed]

We are developing a web application, and one of or major concerns are about browser support. Develop a cross-browser application is expensive due to the time required for testing in legacy browsers ...

1 2 3