licensing

C#: Query FlexLM License Manager

这一生的挚爱 提交于 2019-12-04 22:07:31
Does anyone have any experience querying FlexLM? (At a minimum) I need to be able to tell if a license is available for a particular application. Previously this was done by checking what processes were running, but if I can somehow query FlexLM, that would be more elegant! I've done this recently. I needed to query FlexLM license servers, and discover what licenses were outstanding/available. I didn't find a reasonable API for this, so I instead just launched lmutil, asked it to query the server, and parsed laboriously through the textual results. A pain, but it worked, and really didn't take

iOS - Stanford Tutorial - CoreDataTableViewController - Licence [closed]

陌路散爱 提交于 2019-12-04 19:18:35
Overview: Stanford iOS tutorials contains an implementation (header + implementation file) to help use the table view while using core data. link - http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2011-fall File Name - CoreDataTableViewController.zip (contains the below mentioned 2 files) CoreDataTableViewController.h CoreDataTableViewController.m It contains the following text in both the files: // CoreDataTableViewController.h // // Created for Stanford CS193p Fall 2011. // Copyright 2011 Stanford University. All rights reserved. Question can I use the 2 files in my iOS app ?

Forking an Apache License v2 open source project and copyright notices [closed]

故事扮演 提交于 2019-12-04 18:18:56
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I'm planning to fork an open-source project which is licensed under Apache License v2. Most of the existing sources have a copyright notice in the heade, Copyright bla bla, Inc. If I change some these sources in my fork (even if only marginally), what happens to the copyright? Will it become a joined copyright

Using LGPL library in a commercial Java application [closed]

二次信任 提交于 2019-12-04 18:07:17
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I have a commercial Java application which I will be distributing . I want to use an LGPL'd java library. I wont be modifying the library. Does the LGPL license of that library have any impact on my application's license? 回答1: Yes, it does to a certain degree. You are e.g required to allow people to upgrade the

Adding GNU GPL Licence to C# App [closed]

女生的网名这么多〃 提交于 2019-12-04 17:46:07
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I know how to do this but I don't know is the StyleCop method true/working. Normally in StyleCop rules you must add this thing like this example to header (need to edit): //----------------------------------------------------------------------- // <copyright file="Widget.cs" company="Sprocket Enterprises"> // Copyright (c) Sprocket Enterprises. All rights reserved. // </copyright> //-----------------------------

Why the proliferation of open source licenses? [closed]

筅森魡賤 提交于 2019-12-04 17:39:40
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . Is the proliferation of open source licenses just another example of programmers living NYI (Not Invented Here) syndrome? I know there are some big differences between some of the big licenses (e.g., GPL, Apache, BSD) but when you start looking to see many projects creating

Securing WinForms Application suggestions [closed]

人盡茶涼 提交于 2019-12-04 17:08:44
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I've been looking for a simple key/license system for our users. Its partly to stop piracy (avoid users from sharing the application around) and the other half to track the number of 'licensed users' we have. I have already read a few good suggestions on SO but I'm curious as to how people have implemented the 30 day evaluation criteria. Do you generate a key that stores the date somewhere and do a comparison

how to Commercially Licence Java Software? [closed]

纵然是瞬间 提交于 2019-12-04 13:16:18
I have written a Desktop based accounting software in Java. I want to put a key or licence or other kind of security to prevent redistribution of the software by the client. I just want to know how to go about it? The short answer: DRM doesn't stop piracy. It only hurts your paying customers. It doesn't really matter what you do. The best you can do is set up a simple product-key system, all that really does is makes your application not able to be copied quickly with no work, it doesn't really harm your paying customers but don't expect it to stop anyone who's determined not to pay for your

Is ODP.NET redistributable? [closed]

你离开我真会死。 提交于 2019-12-04 13:00:33
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Are the Oracle ODP.NET libraries redistributable? As in, can I simply include the Oracle.DataAccess.dll with my application & reference it without getting into any legal hot water? The download license for the ODAC on OTN is fairly incomprehesible legalese that doesn't make it clear whether I can or can't include the dll directly. What you want to distribute is the Oracle Instant Client . This is a

To protect software by accessing harddisk serial no [closed]

非 Y 不嫁゛ 提交于 2019-12-04 12:46:20
I want to get the VB.NET or VB code to access the hard disk serial no when starting the program. It's to help me to protect my own software from people who try to pirate copies. In c#, but you get the idea. You'll want to use System.Management for this: string driveLetter = Environment.SystemDirectory.Substring(0, 2); string sn = new System.Management.ManagementObject("Win32_LogicalDisk.DeviceID=\"" + driveLetter + "\"").GetPropertyValue("VolumeSerialNumber").ToString(); As others have pointed out, this might not be the best way to handle this. However, that's your business. I can't offer you