User Toji - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:07:14Zhttp://stackoverflow.com/feeds/user/25968http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806816/java-finding-the-highest-value-in-an-array/1806830#18068303Answer by Toji for Java: Finding the highest value in an arrayToji2009-11-27T04:59:06Z2009-11-27T04:59:06Z<p>It's printing out a number every time it finds one that is higher than the current max (which happens to occur three times in your case.) Move the print outside of the for loop and you should be good.</p>
<pre><code>for (int counter = 1; counter < decMax.length; counter++)
{
if (decMax[counter] > max)
{
max = decMax[counter];
}
}
System.out.println("The highest maximum for the December is: " + max);
</code></pre>
<p>A couple of other notes (not directly related to the question): You have a 0% accept rate currently, which can actually dissuade people from answering your questions. Consider going back and accepting some answers. Also this sounds like homework. If it is, please consider tagging it as such. People will still help (especially when you have obviously put effort into it like you have here) and the straightforwardness is usually appreciated. </p>
http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804588#18045881Answer by Toji for Good ethical hacking bookToji2009-11-26T16:19:42Z2009-11-26T16:19:42Z<p>You obviously intend "hacking" to mean "obtaining access to protected computers and resources without permission", which I find hard to dub "ethical". Hacking as a general (non media-polluted) term simply means playing around with or digging into the internals of something. (i.e. "I've been hacking away at this program for several hours now.") Please be aware of the difference.</p>
<p>As far as learning "ethical hacking" goes I recommend picking up books on securing systems, not breaking into them. Often times they will cover the same material, but from a more "ethical" perspective (Protecting data rather than stealing it.)</p>
http://stackoverflow.com/questions/1797209/how-to-select-a-line/1797278#17972783Answer by Toji for How to select a lineToji2009-11-25T14:32:28Z2009-11-25T14:32:28Z<p>Well, first off, since a mathematical line has no width it's going to be very difficult for a user to click exactly ON the line. As such, your best bet is to come up with some reasonable buffer (like 1 or 2 pixels or if your line graphically has a width use that) and calculate the distance from the point of the mouse click to the line. If the distance falls within your buffer then select the line. If you fall within that buffer for multiple lines, select the one that came closest.</p>
<p>Line maths here:</p>
<p><a href="http://mathworld.wolfram.com/Point-LineDistance2-Dimensional.html" rel="nofollow">http://mathworld.wolfram.com/Point-LineDistance2-Dimensional.html</a></p>
<p><a href="http://stackoverflow.com/questions/849211/shortest-distance-between-a-point-and-a-line-segment">http://stackoverflow.com/questions/849211/shortest-distance-between-a-point-and-a-line-segment</a></p>
http://stackoverflow.com/questions/434010/what-are-the-worst-problems-in-game-design/1783558#17835580Answer by Toji for What are the worst problems in game design?Toji2009-11-23T14:44:39Z2009-11-23T14:44:39Z<p>Most of my big gripes have been addressed here, but I've had another one for a while that I didn't see come up: Games that support gamepads/joysticks/what-have-you on only some of their screens. I love it when I can use a 360 pad for my PC games, especially platformers or the like, but when I have to drop the controller and grab the keyboard and mouse to navigate menus because the developer didn't feel it was important to support the gamepad for anything but the core gameplay mode, that gets to be real aggravating REALLY fast. (Audiosurf is a wonderful game, but is incredibly guilty of this, especially because the game forces you into a menu every five minutes or so!)</p>
http://stackoverflow.com/questions/1780868/web-service-call-fails-from-jquery/1781069#17810692Answer by Toji for Web Service call fails from JQueryToji2009-11-23T04:18:19Z2009-11-23T04:18:19Z<p>Goodness, that's a lot of code! In the future, I would recommend you focus on one or two small bits of code (in this case I would say the AJAX call and the webservice function definition.) It makes it easier to read and more likely to get a response.</p>
<p>As for the problem, your webservice definition indicates that it takes in a string (username) but you're sending it nothing. This is an error, and will prevent the webservice from being called. You must send the appropriate data-types for all function arguments for it to work. If you intend to send null, do so explicitly: <code>{ userName: null }</code></p>
http://stackoverflow.com/questions/1781004/what-windows-message-is-sent-to-repaint-a-partially-occluded-window/1781038#17810381Answer by Toji for What Windows message is sent to repaint a partially occluded window? Toji2009-11-23T04:01:43Z2009-11-23T04:01:43Z<p>Why do you say it's apparently not? <a href="http://msdn.microsoft.com/en-us/library/dd145213%28VS.85%29.aspx" rel="nofollow">WM_PAINT</a> should be called for partial redraws (the updated rect is returned by <a href="http://msdn.microsoft.com/en-us/library/dd183362%28VS.85%29.aspx" rel="nofollow">BeginPaint</a> or <a href="http://msdn.microsoft.com/en-us/library/dd144943%28VS.85%29.aspx" rel="nofollow">GetUpdateRect</a>). If it doesn't appear to be getting called, there may be a bug elsewhere in your app that's preventing it. What are you seeing that leads you to believe that it's not working?</p>
http://stackoverflow.com/questions/1752369/string-program-for-ice-cream-shop-edited-again/1752421#17524211Answer by Toji for string program for ice cream shop (Edited again)Toji2009-11-17T22:46:02Z2009-11-17T22:46:02Z<p>C++ cannot switch on a string. Replace your <code>switch(count) {...}</code> with <code>if/else if</code> statements. Additionally the proper format for a string is "string", not 'string' (single quotes designate a single character, like: 'a'). Also, ensure that you always use the correct casing for string objects (<code>string</code> as opposed to <code>String</code>, like you have as your return values)</p>
<p>Other than that, it would be helpful to see the compiler errors you are getting.</p>
http://stackoverflow.com/questions/1750147/xp-alternative-to-textstlye-aero-theme-class1XP alternative to "TEXTSTLYE" Aero theme classToji2009-11-17T16:41:05Z2009-11-17T16:41:05Z
<p>I'm using the "TEXTSTYLE" class with <a href="http://msdn.microsoft.com/en-us/library/bb759821%28VS.85%29.aspx" rel="nofollow">OpenThemeData</a> in Vista/Win 7 to render text elements with the appropriate emphasis (all values found on the <a href="http://msdn.microsoft.com/en-us/library/bb773210%28VS.85%29.aspx" rel="nofollow">Parts and States</a> documentation): </p>
<ul>
<li>TEXT_MAININSTRUCTION for my header text </li>
<li>TEXT_SECONDARYTEXT for subtitles</li>
<li>TEXT_HYPERLINKTEXT for links</li>
<li>TEXT_INSTRUCTION for standard text</li>
</ul>
<p>This looks great on a machine that supports the themes, but they're not available on XP. What would be an acceptable alternative for XP that still retains the basic "Header/Subheader/Body" visual distinctions?</p>
http://stackoverflow.com/questions/1744194/visualizing-c-to-help-understanding-it/1744237#17442371Answer by Toji for Visualizing C++ to help understanding itToji2009-11-16T19:15:44Z2009-11-16T19:15:44Z<p><a href="http://www.doxygen.org/" rel="nofollow">Doxygen</a> has, if I recall, a basic form of this but it's really only a minor feature of a much bigger library, so that may be overkill for what you want. (Though it's a great program for documentation!)</p>
http://stackoverflow.com/questions/1742863/vista-win7-listview-view-slider0Vista/Win7 Listview "View Slider"Toji2009-11-16T15:23:31Z2009-11-16T15:23:31Z
<p>In Vista and Windows 7 almost any time the system uses a standard Listview (ie: Explorer Windows) it's accompanied by a little split button that shows a slider when the split is clicked that allows you to switch between the different views available for that listview (Tile, Details, List, etc.) as well as sliding smoothly between icon sizes (from 32x32 is to 256x256) using the top half of the slider. </p>
<p>This is a cool little bit of functionality, so I was wondering: Is that control available to developers, and if so what is it called and where is it documented? (Win32/C++ preferred)</p>
http://stackoverflow.com/questions/1710820/creating-a-pybuffer-from-a-c-struct0Creating a PyBuffer from a C structToji2009-11-10T20:05:36Z2009-11-13T05:10:10Z
<p><em>EDIT: Upon re-reading my original question I realized very quickly that it was very poorly worded, ambiguous, and too confusing to ever get a decent answer. That's what I get for rushing out a question at the end of my lunch break. Hopefully this will be clearer:</em></p>
<p>I am trying to expose a simple C structure to Python (3.x) as a PyBuffer so I can retrieve a MemoryView from it. The structure I want to expose is similar to this:</p>
<pre><code>struct ImageBuffer {
void* bytes;
int row_count;
int bytes_per_row;
};
</code></pre>
<p>and it is my desire to allow the script writer to access the data like so:</p>
<pre><code>img_buffer = img.get_buffer()
img_buffer[1::4] = 255 # Set every Red component to full intensity
</code></pre>
<p>Unfortunately the existing documentation about the C API for these structures is pretty sparse, self contradictory in places, and outright wrong in others (documented function signatures do not match those in the headers, etc.) As such I don't have a very good idea about how to best expose this. Also, I would like to avoid including third party libs to achieve functionality that should be part of the core libs, but it feels to me like the PyBuffer functionality is still fairly immature, and perhaps something like NumPy would be a better choice.</p>
<p>Does anyone have any advice on this?</p>
http://stackoverflow.com/questions/1671062/no-thumbnails-showing-in-aero-flip-thumbnail-for-full-screen-direct3d-9-applicati/1704439#17044391Answer by Toji for No thumbnails showing in Aero flip/thumbnail for full screen direct3d 9 applicationToji2009-11-09T22:40:01Z2009-11-09T22:40:01Z<p>When running a full-screen Direct3D application window compositing (of which the thumbnails are a part) is disabled. This is typically a good thing, since it can increase performance of the full-screen app. As a default this behavior is reasonable since most full-screen apps (especially those developed against XP or earlier) expect to be the sole focus of the user while the app is running. You can manually instantiate and update your thumbnail in this case if you wish, but alt-tabbing away from a full-screen app is usually and edge case.</p>
<p>For more information about compositing in general, including overviews of the thumbnail APIs, check out <a href="http://msdn.microsoft.com/en-us/magazine/cc163435.aspx" rel="nofollow">this MSDN article</a></p>
http://stackoverflow.com/questions/1698439/redirect-embedded-python-io-to-a-console-created-with-allocconsole0Redirect Embedded Python IO to a console created with AllocConsoleToji2009-11-09T00:07:44Z2009-11-09T02:38:31Z
<p>I am having some trouble getting Python IO redirected to a console that I've allocated for my Win32 app. Is there a Python-specific stream that I need to redirect?</p>
<p>Here's more-or-less what I'm doing now (error checking removed, etc.):</p>
<pre><code>int __stdcall WinMain(/*Usual stuff here*/) {
// Create the console
AllocConsole();
SetConsoleTitle(L"My Console");
// Redirect Standard IO Streams to the new console
freopen("CONOUT$","w",stdout);
freopen("CONOUT$","w",stderr);
freopen("CONIN$","r",stdin);
// Test the console:
printf("This Works.\r\n");
cout << "So Does this" << endl;
// Python Stuff (This is where it fails)
Py_Initialize();
PyRun_SimpleString("print('I don't work.')\n");
Py_Finalize();
}
</code></pre>
<p>If I run the same thing but as a console app (Visual Studio 05, BTW) and remove the AllocConsole call everything works. Anyone know what I'm missing?</p>
<p>EDIT: Just for clarification, I am looking for a way to do it from the C API.</p>
http://stackoverflow.com/questions/1676725/how-would-i-stagger-text-around-an-uneven-background-image/1676798#16767980Answer by Toji for How would I stagger text around an uneven background image?Toji2009-11-04T21:37:03Z2009-11-04T21:37:03Z<p>Are you talking about an arbitrary background image, or a fixed one? If you want to do it with any old background then you're looking at doing some serious pixel scanning, which will almost certainly have to happen at the server side and will probably not be worth your time. You're better off just baking the text into the image.</p>
<p>If you only want to do it for a single image your options get better, but still aren't pretty. The first thing that comes to mind is using a a monospace font, measuring how many chars can fit at each line, and then having a js function insert breaks at the appropriate string positions based on that.</p>
http://stackoverflow.com/questions/1671793/custom-titles-for-windows-7-jump-list-recent-items1Custom titles for Windows 7 Jump List Recent itemsToji2009-11-04T05:15:55Z2009-11-04T18:06:08Z
<p>Quickie question: I'm toying with some of the new taskbar APIs in Windows 7 and have gotten Recent Items on my Apps jumplist to show up, but I would like to display them under a different title than the filename (most files my app will be opening will have very similar names). I don't see any way to do that with the IShellItem interface, though. Would I have to use custom categories and IShellLinks to accomplish this?</p>
<p>For reference, my current code looks like this:</p>
<pre><code>void AddRecentApp(const wchar_t* path, const wchar_t* title /* Can I even use this? */ ) {
HRESULT hres;
hres = CoInitialize(NULL);
IShellItem* recentItem;
hres = SHCreateItemFromParsingName(path, NULL, IID_PPV_ARGS(&recentItem));
if(SUCCEEDED(hres)) {
SHARDAPPIDINFO recentItemInfo;
recentItemInfo.pszAppID = MY_APP_USER_MODEL_ID;
recentItemInfo.psi = recentItem;
SHAddToRecentDocs(SHARD_APPIDINFO, &recentItemInfo);
recentItem->Release();
}
}
</code></pre>
http://stackoverflow.com/questions/1671793/custom-titles-for-windows-7-jump-list-recent-items/1674802#16748021Answer by Toji for Custom titles for Windows 7 Jump List Recent itemsToji2009-11-04T16:04:12Z2009-11-04T18:06:08Z<p>Figured it out. IShellItems are just a representation of a file, so they only will provide that file's information (no custom title, etc.) An IShellLink is essentially a shortcut, and is much more flexible in terms of display and actions taken when launched, so are more appropriate in this situation. Here's my new code:</p>
<pre><code>void AddRecentApp(const wchar_t* path, const wchar_t* title) {
HRESULT hres;
hres = CoInitialize(NULL);
// Shell links give us more control over how the item is displayed and run
IShellLink* shell_link;
hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&shell_link));
if(SUCCEEDED(hres)) {
// Set up the basic link properties
shell_link->SetPath(path);
shell_link->SetArguments(L"--some-command-line-here"); // command line to execute when item is opened here!
shell_link->SetDescription(title); // This is what shows in the tooltip
shell_link->SetIconLocation(L"/path/to/desired/icon", 0); // can be an icon file or binary
// Open up the links property store and change the title
IPropertyStore* prop_store;
hres = shell_link->QueryInterface(IID_PPV_ARGS(&prop_store));
if(SUCCEEDED(hres)) {
PROPVARIANT pv;
InitPropVariantFromString(title, &pv);
// Set the title property.
prop_store->SetValue(PKEY_Title, pv); // THIS is where the displayed title is actually set
PropVariantClear(&pv);
// Save the changes we made to the property store
prop_store->Commit();
prop_store->Release();
}
// The link must persist in the file system somewhere, save it here.
IPersistFile* persist_file;
hres = shell_link->QueryInterface(IID_PPV_ARGS(&persist_file));
if(SUCCEEDED(hres)) {
hres = persist_file->Save(L"/link/save/directory", TRUE);
persist_file->Release();
}
// Add the link to the recent documents list
SHARDAPPIDINFOLINK app_id_info_link;
app_id_info_link.pszAppID = MY_APP_USER_MODEL_ID;
app_id_info_link.psl = shell_link;
SHAddToRecentDocs(SHARD_APPIDINFOLINK, &app_id_info_link);
shell_link->Release();
}
}
</code></pre>
http://stackoverflow.com/questions/1590337/using-the-google-chrome-sandbox14Using the Google Chrome SandboxToji2009-10-19T18:35:16Z2009-10-30T03:28:39Z
<p>There are several resources out there that explain how the sandbox in Chrome works and what it does to protect users from malicious code.</p>
<p><a href="http://blog.chromium.org/2008/10/new-approach-to-browser-security-google.html" rel="nofollow">Chromium Blog</a><br />
<a href="http://dev.chromium.org/developers/design-documents/sandbox" rel="nofollow">Chromium Developer Documentation</a><br />
<a href="http://dev.chromium.org/developers/design-documents/sandbox/Sandbox-FAQ" rel="nofollow">Sandbox FAQ</a> </p>
<p>That's great, and I like the OS-centric design that they have in place (somewhat of a "The OS probably knows how to secure itself better than we do, so we let it" approach.) They also mention in several places that the sandbox itself was designed to not be dependent on Chrome but instead more-or-less standalone so that theoretically any process could be sandboxed as long as the architecture of the program is compatible (sandboxed code must run as it's own process as a child of a non-sandboxed parent.)</p>
<p>I just happen to have an application who's design makes it ripe for sandboxing, and was able to get a parent/child process working with it. I've got the Chromium code and... have no idea what to do next. </p>
<p>Has anyone out there actually sandboxed anything with this yet? Are there any resources that document it's usage or APIs? I would imagine it should be pretty simple, but I'm at a loss for where to start.</p>
<p>EDIT: My finding below in the answers!</p>
http://stackoverflow.com/questions/1590337/using-the-google-chrome-sandbox/1647871#16478713Answer by Toji for Using the Google Chrome SandboxToji2009-10-30T03:27:51Z2009-10-30T03:27:51Z<p>Okay, so here's what I found about sandboxing code with Chrome.</p>
<p>First off, you'll need to go <a href="http://dev.chromium.org/developers/how-tos/build-instructions-windows" rel="nofollow">get the chromium source code</a>. This is <em>big</em>, and will take a while to get, but I've yet to find any reliable shortcuts to checkout that still yeild usable results. Alos, it's very important that you follow the instructions on that page VERY CLOSELY. The Google crew knows what they're doing, and aren't keen on useless steps. Everything on that page is necessary. Yes. Everything.</p>
<p>Now, once you get the source, you don't actually have to build chrome in it's entirety (which can take hours!) to use the sandbox. Instead they've been nice enough to give you a separate sandbox solution (found in the sandbox folder) that can build standalone. Build this project and make sure everything compiles. If it does, great! If it doesn't, you didn't follow the steps on the build page, did you? Hang your head in shame and go actually do it this time. Don't worry, I'll wait...</p>
<p>Now that everything has built your main point of interest is the sandbox_poc project ("poc" = Proof of Concept). This project is basically a minimal GUI wrapper around a sandbox that will launch an arbitrary dll at a given entry point in a sandboxed environment. It shows all the required steps for creating and using a sandbox, and is about the best reference you've got. Refer to it often!</p>
<p>As you look through the code you'll probably notice that the code it actually sandboxes is itself. This is very common with all the sandbox examples, and <a href="http://groups.google.com/group/chromium-dev/browse%5Fthread/thread/f6ee308557249e81/e9c1114575b15033" rel="nofollow">according to this thread</a> (which may be outdated) is possibly the only working way to sandbox at the moment. The thread describes how one would theoretically sandbox a separate process, but I haven't tried it. Just to be safe, though, having a self-calling app is the "known good" method. </p>
<p>sandbox_proc includes a great many static libs, but they appear to mostly be for the sample UI they've built. The only ones I've found that seem to be required for a minimal sandbox are:</p>
<pre><code>sandbox.lib base.lib dbghelp.lib
</code></pre>
<p>There's another dependancy that's not entirely obvious from looking at the project though, and it's what I got caught up on the longest. When you built the sandbox solution, one of the output files should be a "<code>wowhelper.exe</code>". Though it's never mentioned anywhere, this file must be copied to the same directory as the executable you are sandboxing! If it's not, your attempts to sandbox your code will always fail with a generic "file not found" error. This can be very frustrating if you don't know what's going on! Now, I'm developing on Windows 7 64bit, which may have something to do with the wowhelper requirement (WOW is a common acronym for interop apps between 16/32/64bit), but I don't have a good way of testing that right now. Please let me know if anyone else finds out more!</p>
<p>So that's all the environment stuff, here's a bit of smaple code to get you going! Please note that although I use wcout in the child process here, you can't see any console output when running in the sandbox. Anything like that needs to be communicated to the parent process via IPC.</p>
<pre><code>#include <sandbox/src/sandbox.h>
#include <sandbox/src/sandbox_factory.h>
#include <iostream>
using namespace std;
int RunParent(int argc, wchar_t* argv[], sandbox::BrokerServices* broker_service) {
if (0 != broker_service->Init()) {
wcout << L"Failed to initialize the BrokerServices object" << endl;
return 1;
}
PROCESS_INFORMATION pi;
sandbox::TargetPolicy* policy = broker_service->CreatePolicy();
// Here's where you set the security level of the sandbox. Doing a "goto definition" on any
// of these symbols usually gives you a good description of their usage and alternatives.
policy->SetJobLevel(sandbox::JOB_LOCKDOWN, 0);
policy->SetTokenLevel(sandbox::USER_RESTRICTED_SAME_ACCESS, sandbox::USER_LOCKDOWN);
policy->SetAlternateDesktop(true);
policy->SetDelayedIntegrityLevel(sandbox::INTEGRITY_LEVEL_LOW);
//Add additional rules here (ie: file access exceptions) like so:
policy->AddRule(sandbox::TargetPolicy::SUBSYS_FILES, sandbox::TargetPolicy::FILES_ALLOW_ANY, "some/file/path");
sandbox::ResultCode result = broker_service->SpawnTarget(argv[0], GetCommandLineW(), policy, &pi);
policy->Release();
policy = NULL;
if (sandbox::SBOX_ALL_OK != result) {
wcout << L"Sandbox failed to launch with the following result: " << result << endl;
return 2;
}
// Just like CreateProcess, you need to close these yourself unless you need to reference them later
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
broker_service->WaitForAllTargets();
return 0;
}
int RunChild(int argc, wchar_t* argv[]) {
sandbox::TargetServices* target_service = sandbox::SandboxFactory::GetTargetServices();
if (NULL == target_service) {
wcout << L"Failed to retrieve target service" << endl;
return 1;
}
if (sandbox::SBOX_ALL_OK != target_service->Init()) {
wcout << L"failed to initialize target service" << endl;
return 2;
}
// Do any "unsafe" initialization code here, sandbox isn't active yet
target_service->LowerToken(); // This locks down the sandbox
// Any code executed at this point is now sandboxed!
TryDoingSomethingBad();
return 0;
}
int wmain(int argc, wchar_t* argv[]) {
sandbox::BrokerServices* broker_service = sandbox::SandboxFactory::GetBrokerServices();
// A non-NULL broker_service means that we are not running the the sandbox,
// and are therefore the parent process
if(NULL != broker_service) {
return RunParent(argc, argv, broker_service);
} else {
return RunChild(argc, argv);
}
}
</code></pre>
<p>Hopefully that's enough to get any other curious coders sandboxing! Good luck!</p>
http://stackoverflow.com/questions/1578010/ironpython-2-6-py-exe/1578046#15780461Answer by Toji for Ironpython 2.6 .py -> .exeToji2009-10-16T13:29:31Z2009-10-16T13:29:31Z<p>Check out the <a href="http://ironpython.codeplex.com/wikipage?title=Samples&ProjectName=ironpython" rel="nofollow">IronPython Samples Page</a></p>
<p>About half way down the page:</p>
<p><strong>Pyc - Python Command-Line Compiler</strong>
This sample shows developers how to create .NET executables directly out of IronPython scripts. The readme.htm in the download will get you started.</p>
<p>IronPython’s Hosting APIs can be used to compile Python scripts into DLLs, console executables, or Windows executables. The pyc.py script included in this tutorial leverages these hosting APIs and can be used to compile other Python scripts. It provides a variety of flags such as the ability to specify the target platform of the .NET assembly (e.g., x64). </p>
<p>While the assemblies produced by the IronPython Hosting APIs are true .NET assemblies, the dynamic nature of the Python language makes it difficult to use these from other .NET languages. In short, this means that attempting to import Python types into other .NET languages such as C# is not recommended.</p>
<p><em>Edit:</em> Just noticed that you mentioned PYC was out of date. What makes it so? The IronPython crew seem to still be promoting it, so I would imagine that it's not that far gone.</p>
http://stackoverflow.com/questions/1562604/wcf-service-with-openssl-certificates1WCF Service with OpenSSL CertificatesToji2009-10-13T20:02:55Z2009-10-14T00:45:17Z
<p>I've gotten my WCF webservice running with basic self-signed certificates generated by makecert (using some of the many online tutorials on the subject) but have found that there are certain capabilities that we require when generating certificates that makecert does not seem to handle. As such I'm trying to create my certificates using OpenSSL signing them with our own CA (also generated with OpenSSL). I seem to be creating and registering the certificate fine, but when I attempt to query the webservice I get the following:</p>
<p><strong>The certificate '[Cert Details]' must have a private key. The process must have access rights for the private key.</strong></p>
<p>Try though I might, I can't seem to get the system to recognize what I thought was the private key (maybe I'm totally wrong and I should be looking at another file entirely...) Can anyone offer some sage advice as to where I may be going wrong?</p>
<p>I'm generating the certificate like so:</p>
<pre><code># Generate key and certificate request
openssl req -new -newkey rsa:1024 -nodes -keyout MyCompany.key -out MyCompany.csr
# Generate certificate from certificate request
openssl ca -batch -in MyCompany.csr -out MyCompany.cert
</code></pre>
<p>I can then register "Mycompany.cert" with the machines certificate store (in this case both server and client are running on localhost), but MyCompany.key (which I assume is the private key, yes?) will not import, always citing an unknown file format. Registration is being done through the "mmc" utility with the certificate snap-in.</p>
<p>In my Web.Config files for my client and server I then swap out the previous (working) certificate names with the name for my new certificate:</p>
<pre><code><!-- Client Web.config -->
<clientCredentials>
<serviceCertificate>
<authentication certificateValidationMode="PeerOrChainTrust"/>
</serviceCertificate>
<clientCertificate findValue="MyCompany" storeLocation="CurrentUser" storeName="TrustedPeople" x509FindType="FindBySubjectName" />
</clientCredentials>
<!-- Server Web.config -->
<serviceCredentials>
<clientCertificate>
<authentication certificateValidationMode="PeerOrChainTrust"/>
</clientCertificate>
<serviceCertificate findValue="MyCompany" storeLocation="CurrentUser" storeName="TrustedPeople" x509FindType="FindBySubjectName" />
</serviceCredentials>
</code></pre>
<p>This, of course, yields the error I listed earlier. I know it's finding the certificate because the details it displays in the error are all correct, but I'm obviously missing something. So what more do I need to do to get WCF to work with my OpenSSL certificates?</p>
<p>I apologize if my question seems obvious, or if I'm leaving out some critical piece of information, but I'm fairly new to the certificate/SSL scene and so much of what I already have is me groping around in the dark. I'd be very appreciative of anyone who could enlighten me!</p>
http://stackoverflow.com/questions/1545080/correct-c-code-file-extension-cc-vs-cpp/1545108#15451084Answer by Toji for Correct C++ code file extension? .cc vs .cppToji2009-10-09T17:30:28Z2009-10-09T17:30:28Z<p>I've personally never seen .cc in any project that I've worked on, but in all technicality the compiler won't care. </p>
<p>Who will care is the developers working on your source, so my rule of thumb is to go with what your team is comfortable with. If your "team" is the open source community, go with something very common, of which ".cpp" seems to be the favorite.</p>
http://stackoverflow.com/questions/1527057/reverse-wcf-service-building-a-server-from-a-client-definition1"Reverse" WCF Service (Building a server from a client definition)Toji2009-10-06T17:48:01Z2009-10-06T19:07:20Z
<p>.Net provides some wonderful mechanisms for defining a remote service and then "automagically" creating a client to connect to it, hiding away much of the nasty wiring and fuss. But is there a similar route for going the other way?</p>
<p>My most recent task at work is to create a series of services that will communicate with one another for things like authentication and search queries. One requirement is the ability for our core service to call out to other "service nodes", which may or may not be created in house but all need to implement a common interface. I can build a reference implementation of this service, create the WSDL from that, and automatically generate the client side without issue. It seems that the only way to define the service, however, is to basically point someone at the WSDL I create and say "Implement something that looks like that." Seeing as how WSDLs are rarely designed to be read by human beings, this route seems less than attractive.</p>
<p>So is there a way that I'm not aware of to generate a service interface from a WSDL or similar descriptor? Primarily looking at .NET 3.5 here, using C# and WCF. Thanks!</p>
http://stackoverflow.com/questions/1492755/python-c-binding-library-comparison6Python/C++ Binding Library comparisonToji2009-09-29T14:03:21Z2009-09-30T17:58:08Z
<p>I feel as though this question is a duplicate, but I haven't found one on the subject (specifically) yet so I'll ask anyway:</p>
<p>What Python/C++ binding libraries would you recommend and why? In addition, what has been your experience using it or any others you have tried? Also, what binding features do they contain and has your use of them been personal or professional?</p>
<p>To kick things off, here are some that I've tried recently (for personal use):</p>
<p><strong>SWIG</strong></p>
<ul>
<li>Supports Python 2 and 3</li>
<li>Can be uber-automatic under the right circumstances</li>
<li>When it's not uber-automatic it mostly consists of repeating your .h files and providing hints</li>
<li>Supports many other languages besides Python (Java, Ruby, Lua, etc.)</li>
<li>Output consists of both a native file (to be compiled into a .pyd) and a python "wrapper"</li>
<li>Bindings appear to be reasonably lean.</li>
<li>Does not appear to support properties (values accessed by getter/setters)</li>
<li>Very well documented, easy to follow setup instructions</li>
<li>Used by Google (hey, that's got to count for SOMETHING, right?) </li>
</ul>
<p><strong>Boost::Python</strong></p>
<ul>
<li>Only supports Python 2. Python 3 support is in progress, but no release date yet. (as of Sept 09)</li>
<li>Syntax can be awkward to newcomers, but is straightforward and mostly clutter free.</li>
<li>Heavy use of C++ templates (can be a good or bad thing)</li>
<li>Distributed as part of the Boost library, which is huge. (Useful, but huge)</li>
<li>Compiling the library initially can be an exercise in frustration</li>
<li>Can significantly increase compile times</li>
<li>Some quirky gotchas, like specifying return value policies for functions that return native types</li>
<li>Very solid, stable, well-tested library</li>
<li>Does support properties</li>
<li>Documentation is so-so. Decent introductory tutorials but more advanced usage is somewhat neglected. Documentation is also fragmented: There are at least three different tutorials on how to build the library, all of which differ greatly.</li>
<li>Bindings have a reputation for being somewhat bloated</li>
</ul>
<p>I'm currently using Boost::Python, mostly because I really need property support, but I'm very curious to see what people's opinions are of some of the other libraries out there!</p>
http://stackoverflow.com/questions/1472909/css-class-added-but-not-rendering-when-applied-with-jquery/1472955#14729551Answer by Toji for Css class added but not rendering when applied with jQueryToji2009-09-24T16:59:12Z2009-09-24T16:59:12Z<p>Couple of things to look out for that consistently bite me when doing dynamic styles like this:</p>
<p>1) Make sure that your CSS file is included AFTER jQuery's and/or whatever theme files you may be using. They could be overruling your style, and the last file to be included is the one that "wins" style conflicts.</p>
<p>2) Make sure your style is actually valid and being included. Apply it to a static element and make sure it looks how you expect. I noticed in the css you showed that you have a "'" before #dialog and no closing "}" on the .ui-dialog style, both of which could break the file as a whole. I'm guessing that those were just a copy-paste goof, but you should double check just in case. I've had many instances where I thought jQuery was killing my style only to find out the style was broken from the start, or that I had put it in a file that wasn't even being included.</p>
<p>Oh! Hey! Another thing I just noticed. YOU are overwriting your fail style! Try moving your .ui-dialog style above your .fail style in the css and see if you get different results. Your .ui-dialog style may be resetting the background to transparent. Remember: in CSS the last style defined always wins!</p>
http://stackoverflow.com/questions/1472413/when-do-we-prefer-round-robin-over-fcfs-and-vice-versa/1472482#14724821Answer by Toji for when do we prefer Round robin over FCFS and vice-versa?Toji2009-09-24T15:37:01Z2009-09-24T15:37:01Z<p>First off, this sounds suspiciously like a homework question. If that's the case, I recommend researching on your own.</p>
<p>By FCFS I assume you mean "First Come First Serve", and if I recall that's a system where processes are executed to completion in the order that they are provided to the scheduler, yes? </p>
<p>If so the basic guideline would be this: Use round robin if it is desirable to allow long running processes to execute while not interfering with shorter ones, with the side effect that order of completion is not guaranteed. Round Robin can suffer if there are many processes in the system, since it will take longer for each process to complete since the round trip is longer.</p>
<p>If you do need a guaranteed order of completion, FCFS is a better choice but long running processes can stall the system. However, each process is given the full attention of the system and can complete in the fastest possible time, so that can be a benefit.</p>
<p>In the end it really does come down to not necessarily design but need: Do I need semi-synchronous execution or do I need in-order execution? Is it to my benefit for processes to take longer but compute in sync or will I be better off if everything executes as fast as possible? The needs of the system dictate the model to use.</p>
<p><strong>Edit:</strong> Wikipedia has a pretty good breakdown of these and other simple scheduling methods <a href="http://en.wikipedia.org/wiki/Scheduling%5F%28computing%29" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1445384/server-side-configuration-for-gwt1Server-Side Configuration for GWTToji2009-09-18T15:45:34Z2009-09-24T07:42:11Z
<p>Trying to avoid re-inventing the wheel here. I have a Google Web Toolkit page that I'm preparing to deploy, but the webservice that I'm communicating with will have a different relative address on the deployed server than my local test machine. </p>
<p>As such, I'm looking for a simple way to deploy with some sort of easily editable configuration file that I can put basic settings in server side. I have a couple of ideas about how to do that, but they seem somewhat hacky and it seems to me like there must already be a solution for this kind of problem (after all, per-server settings are a VERY common thing!)</p>
<p>Any ideas?</p>
<p><strong>Edit:</strong> Since this doesn't seem to be attracting much attention, let me outline my initial thoughts: Store a static file local to the GWT files that I query with an AJAX call before any other logic. When the file is returned I parse out my data and store them as globally accessible vars, then allow the page building logic to run. Seems clunky, and there's the big downside of waiting for the AJAX to return before any loading, but it would work. Any better suggestions? (Please?)</p>
<p><strong>My Solution:</strong>
I've found a solution on my own, but it's pretty specific to my exact scenario so I don't know how useful it would be to the general user. I'll post it here anyway on the off chance that someone finds it useful.</p>
<p>The page I am working on is actually a GWT control embedded in a ASP.net site. Taking advantage of this, and my discovery of the GWT Dictionary class, I put together a "settings" system like this:</p>
<p>First, the setting I want (in this case an address to a webservice) is set in the ASP.net Web.Config file</p>
<pre><code><appSettings>
<add key="serviceUrl" value="http://mySite.com/myService.asmx"/>
</appSettings>
</code></pre>
<p>In the ASP page that's embedding the GWT control, I add a "static" javascript object that contains the config settings I need:</p>
<pre><code><head runat="server">
<title>Picklist Manager</title>
<script type="text/javascript" language="javascript">
var AppConfig = {
serviceUrl: "<%= ConfigurationManager.AppSettings["serviceUrl"] %>"
};
</script>
<script type="text/javascript" language="javascript" src="gwtcontrol.nocache.js"></script> <!-- Include my GWT control -->
</head>
</code></pre>
<p>Finally, in GWT I create a static "AppConfig" class that exposes this setting like so:</p>
<pre><code>public class AppConfig {
public static String serviceUrl = "defaultUrl";
public static void Initialize() {
Dictionary appConfig = Dictionary.getDictionary("AppConfig");
if(appConfig == null) { return; }
servicePath = appConfig.get("serviceUrl");
}
}
</code></pre>
<p>From there I can call AppConfig.serviceUrl anywhere in my code to get the setting... <em>whew!</em> So yeah, that's a nice long complicated way of going about it but it works for me. Of the answers given Alexander's seems most inline with what I was looking for, so the bounty goes to him, but thank you to everyone who pitched in on my sticky little problem!</p>
http://stackoverflow.com/questions/1450291/directx-flickering-video/1450307#14503072Answer by Toji for DirectX flickering videoToji2009-09-20T04:39:08Z2009-09-20T04:39:08Z<p>If you intend to repaint the entire viewport every frame there is no reason to do a clear, and it can actually yield a lot of performance gains, so go for it! As for your flickering, that might be something different. Are you doing you're drawing in a WM_PAINT message? If so, you may want to also intercept the WM_ERASEBKGND message and simply return 1 when you get it. This prevents windows from trying to erase the background and has helped me get rid of some flickering in the past.</p>
<p>FYI: Ever do the noclip cheat in Doom or Quake, and when you walk outside a wall everything starts leaving "trails" all over? That's because they're not clearing the back buffer, since under normal circumstances the entire scene would be redrawn every time anyway. I say if it's good enough for id it's good enough for me! :)</p>
<p><strong>Edit:</strong> Oh, and on more thing! I'm not sure if it's required or not, but I always do my clear AFTER calling BeginScene(). Could also be contributing to your flicker.</p>
http://stackoverflow.com/questions/1447073/opengl-glpushname-meaning/1447086#14470863Answer by Toji for OpenGL glPushName meaning?Toji2009-09-18T22:26:37Z2009-09-18T22:26:37Z<p><a href="http://www.opengl.org/documentation/specs/man%5Fpages/hardcopy/GL/html/gl/pushname.html" rel="nofollow">http://www.opengl.org/documentation/specs/man_pages/hardcopy/GL/html/gl/pushname.html</a></p>
<p>It's used to push a new name onto the name stack (primarily used for mouse picking functionality). It will not clear the names, and you can go back to the previously set name by using glPopName.</p>
<p><strong>EDIT:</strong> Out of curiosity, what are you using this for? That's a pretty old API, and I think it's been deprecated in OpenGL 3.0. If you're trying to do anything other than mouse picking then you may be using the wrong functions.</p>
http://stackoverflow.com/questions/867451/best-gwt-widget-library/1322540#13225402Answer by Toji for Best GWT widget library?Toji2009-08-24T13:47:21Z2009-09-18T21:43:31Z<p>Not saying it's "the best", but I've been using <a href="http://gwt-ext.com/" rel="nofollow">GWT-Ext</a> at work lately. It's got some pros and cons:</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Relatively easy to setup and use</li>
<li>Decent sized community behind it </li>
<li>LOTS of examples online, all of which have accompanying code</li>
<li>Good selection of widgets that cover a wide range of functionality</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Makes assumptions about your data's format and structure that you may not be able to accommodate</li>
<li>Library is just a JSNI wrapper, which makes it harder to debug and extend</li>
<li>Future support and development on the library is uncertain</li>
<li>Some annoying cross-browser issues still exist (especially with layouts)</li>
<li>Search function on their forums is essentially useless. (This is becoming a big pet peeve of mine >_<)</li>
</ul>
http://stackoverflow.com/questions/1445638/django-webapp-living-together-on-gae/1446850#14468500Answer by Toji for Django & webapp living together on GAE?Toji2009-09-18T21:09:12Z2009-09-18T21:09:12Z<p>Yes! In fact, if you go to the GAE site the "getting started" tutorial shows exactly that! Both libraries are built in, so it's incredibly easy to get up and going with it.</p>
<p><a href="http://code.google.com/appengine/docs/python/gettingstarted/" rel="nofollow">Google App Engine: Getting Started</a></p>
http://stackoverflow.com/questions/1806816/java-finding-the-highest-value-in-an-array/1806830#1806830Comment by Toji on Java: Finding the highest value in an arrayToji2009-11-27T05:16:40Z2009-11-27T05:16:40ZNP. It's an easy thing for newcomers to miss, but the community tends to like people who reward them for their efforts and as such will usually give you more (and better) answers, which is a very good thing!http://stackoverflow.com/questions/1794111/c-programming-questionComment by Toji on C++ programming question Toji2009-11-27T05:09:21Z2009-11-27T05:09:21ZAlso, please try to be a bit more descriptive in your question titles than "[Language] Question". It also helps if you can tell us what's not working (Won't compile with errors, output is x but should be y, etc.) http://stackoverflow.com/questions/1804560/good-ethical-hacking-book/1804588#1804588Comment by Toji on Good ethical hacking bookToji2009-11-26T18:23:20Z2009-11-26T18:23:20ZI think the fact that I have two conflicting comments now, one telling me that I should simply accept that the word has changed meaning and the other berating me for assuming that the word means a certain thing, illustrates rather nicely why I felt it necessary to soapbox a bit on the subject. Obviously it's still a matter of contention.http://stackoverflow.com/questions/1804560/good-ethical-hacking-bookComment by Toji on Good ethical hacking bookToji2009-11-26T16:31:08Z2009-11-26T16:31:08ZI would propose the the reaction is due to the use of "hacker" in a way that suggests the "media hacker" described in the first comment. CS folks tend to look down on that usage.http://stackoverflow.com/questions/1252452/gwt-creating-a-scrollable-flextable-in-a-full-screen-tabpanel/1253293#1253293Comment by Toji on GWT: Creating a scrollable FlexTable in a full-screen TabPanelToji2009-11-23T20:25:21Z2009-11-23T20:25:21ZI don't believe so. Setting height to 100% indicates that you want it to use 100% of it's containers height, not to encompass 100% of it's own contents, just as 100% width fills all of the containers width.http://stackoverflow.com/questions/434010/what-are-the-worst-problems-in-game-design/434028#434028Comment by Toji on What are the worst problems in game design?Toji2009-11-23T14:37:48Z2009-11-23T14:37:48ZWhole buckets of yes! This was THE reason I stopped playing Assassins Creed. Also just as annoying: The little intro "Logo" clips that play every.time.you.start.the.game! Especially when they have to fit in one from the publisher, the developer, the graphics card maker, the cpu maker, the guys who built the engine, the digital distribution service, the guy who did the "grunt when you get shot" sound... I swear, even if they're skippable (which too frequently they're not) it takes 6 or 7 times bashing the escape key to get to a menu! Unacceptable!http://stackoverflow.com/questions/1781004/what-windows-message-is-sent-to-repaint-a-partially-occluded-window/1781038#1781038Comment by Toji on What Windows message is sent to repaint a partially occluded window? Toji2009-11-23T05:57:01Z2009-11-23T05:57:01ZWhat are you doing to invoke a partial redraw (and what OS?)http://stackoverflow.com/questions/1781025/is-possible-to-exactly-find-position-of-keypress-event-in-browsers-except-ieComment by Toji on Is possible to exactly find position of KeyPress event in browsers except IE?Toji2009-11-23T04:12:44Z2009-11-23T04:12:44ZWhen you say the position of the KeyPress event, that seems like it could mean several different things: are you looking for the currently focused input, the position of the mouse when the key was pressed, the position of the caret in a textbox? Please clarify so we can help you better.http://stackoverflow.com/questions/665741/c-qt-drawing-a-caretComment by Toji on C++/QT: drawing a caretToji2009-11-23T04:04:08Z2009-11-23T04:04:08ZI've noticed that bug too. My profile page will say that someone has answered, even giving a username that posted it, but I won't see the actual answer for a couple of days sometimes! I'd really like to know why that is...http://stackoverflow.com/questions/1744194/visualizing-c-to-help-understanding-it/1744237#1744237Comment by Toji on Visualizing C++ to help understanding itToji2009-11-16T22:41:41Z2009-11-16T22:41:41ZVery nice! They must have improved it since I last looked.http://stackoverflow.com/questions/1742863/vista-win7-listview-view-sliderComment by Toji on Vista/Win7 Listview "View Slider"Toji2009-11-16T16:02:51Z2009-11-16T16:02:51ZI'd post a picture if I could, but I don't have access to a Vista/7 machine right now.http://stackoverflow.com/questions/1742863/vista-win7-listview-view-sliderComment by Toji on Vista/Win7 Listview "View Slider"Toji2009-11-16T16:00:48Z2009-11-16T16:00:48ZI suppose so, is that what it's called? That would seem odd, since it does more than just zoom...http://stackoverflow.com/questions/1742464/how-to-implement-sip-packages-in-cComment by Toji on How to implement SIP packages in C# Toji2009-11-16T14:40:26Z2009-11-16T14:40:26ZThanks, Jon B. Much more legible now.http://stackoverflow.com/questions/1742464/how-to-implement-sip-packages-in-cComment by Toji on How to implement SIP packages in C# Toji2009-11-16T14:32:52Z2009-11-16T14:32:52ZHi, welcome to Stack Overflow! People will tend to be more willing to answer questions if the question is asked in a straightforward and readable fashion. Paying attention to things like capitalization, grammar, and punctuation can go a long ways towards convincing people that any answers they give are likely to be followed, and thus they are more likely to give them. Keep that in mind, and good luck finding the answer you're looking for!http://stackoverflow.com/questions/1698439/redirect-embedded-python-io-to-a-console-created-with-allocconsole/1698521#1698521Comment by Toji on Redirect Embedded Python IO to a console created with AllocConsoleToji2009-11-09T04:02:49Z2009-11-09T04:02:49ZI do, and I prefer it that way too. In this case the need to do it in the C API is due to security concerns, so there's not much I can do about it. Thank you very much!