User QAZ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:55:57Zhttp://stackoverflow.com/feeds/user/14260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/484834/c-simplemapi-sendmail-always-fails2C++ SimpleMAPI SendMail always fails?QAZ2009-01-27T19:22:37Z2009-11-12T17:49:07Z
<p>Hello</p>
<p>I am trying to use <a href="http://msdn.microsoft.com/en-us/library/dd296734(VS.85).aspx" rel="nofollow">SimpleMAPI</a> to display a 'write message' dialogue with an attachment on Vista SP1 with either Windows Mail or Thunderbird in a C++ app (Borland C++ Builder 2006). I should be able to use <a href="http://msdn.microsoft.com/en-us/library/dd296721(VS.85).aspx" rel="nofollow">MAPISendMail</a> to do this. </p>
<p>I don't fill in a recipient address as I expect the user to do that when the mail client displays a 'write message' dialog. I also don't fill in an originator address as I expect the mail client to use the default. I have tried hardcoding them to see if thats the problem and it is not. </p>
<p>My code looks like this:</p>
<pre><code>HINSTANCE hMAPI;
LPMAPISENDMAIL pSendMail;
MapiMessage message;
MapiFileDesc file;
ZeroMemory( &message, sizeof( MapiMessage ) );
ZeroMemory( &file, sizeof( MapiFileDesc ) );
hMAPI = LoadLibraryA( "MAPI32.DLL" );
pSendMail = (LPMAPISENDMAIL)GetProcAddress( hMAPI, "MAPISendMail" );
// setup the attachment...
file.nPosition = -1;
file.lpszPathName = "C:\\my_attachment.dat";
// set up the message...
message.lpszSubject = "My Subject";
message.lpszNoteText = "My Message...";
message.lpszMessageType = "";
message.nRecipCount = 0;
message.lpRecips = NULL; // we don't know the recipient address(s)
message.nFileCount = 1;
message.lpFiles = &file;
message.lpOriginator = NULL; // we don't know the users from address
dwResult = pSendMail( lhSessionNull, (DWORD)Application->Handle, &message, MAPI_LOGON_UI | MAPI_DIALOG, 0 );
if( dwResult == SUCCESS_SUCCESS )
{
// ...yay! :)
}
else
{
// ...we always fail here with: MAPI_E_FAILURE
}
</code></pre>
<p>It always fails with error code 2 (MAPI_E_FAILURE). What am I doing wrong?</p>
<p>Many thanks in advance.</p>
http://stackoverflow.com/questions/1407461/putting-user-input-into-char-array-c-programming/1407472#14074725Answer by QAZ for Putting user input into char array (C Programming)QAZ2009-09-10T20:14:34Z2009-09-11T10:37:42Z<pre><code>#include <stdio.h>
#include <stdlib.h>
int main() {
int c;
int count;
int arr[50];
c = getchar();
count = 0;
while( c != EOF && count < 50 ){
arr[count++] = c;
c = getchar();
}
return (EXIT_SUCCESS);
}
</code></pre>
<p>Notice the <strong>&& count < 50</strong> in the while loop. Without this you can overrun the arr buffer.</p>
http://stackoverflow.com/questions/1393004/java-modified-utf-8-strings-in-python2Java modified UTF-8 strings in PythonQAZ2009-09-08T09:40:02Z2009-09-08T12:17:39Z
<p>Hello</p>
<p>I am interfacing with a Java application via Python. I need to be able to construct byte sequences which contain utf-8 strings. Java uses a modified utf-8 encoding in DataInputStream.readUTF() which is not supported by python (<a href="http://bugs.python.org/issue2857" rel="nofollow">yet at least</a>)</p>
<p>Can anybody point me in the right direction to construct java modified utf-8 strings in python?</p>
<p>Update #1: To see a little more about the java modified utf-8 check out the readUTF method from the DataInput interface on line 550 <a href="http://www.docjar.com/html/api/java/io/DataInput.java.html" rel="nofollow">here</a>, or <a href="http://java.sun.com/j2se/1.3/docs/api/java/io/DataInput.html#readUTF%28%29" rel="nofollow">here in the Java SE docs</a>.</p>
<p>Update #2: I am trying to interface with a third party JBoss web app which is using this modified utf8 format to read in strings via POST requests by calling DataInputStream.readUTF (sorry for any confusion regarding normal java utf8 string operation).</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1319129/problem-with-showing-some-jpg-files-in-delphi/1319213#13192132Answer by QAZ for Problem with showing some JPG files in DelphiQAZ2009-08-23T18:32:55Z2009-08-23T18:32:55Z<p>Check out the Free Image library for alternative JPEG support in Delphi if the native one has problems. Free Image is an open source lib that lets you work with JPEG/PNG/... from Delphi/BCB/and others. Very nice library IMHO.</p>
<p><a href="http://freeimage.sourceforge.net/" rel="nofollow">http://freeimage.sourceforge.net/</a></p>
http://stackoverflow.com/questions/1298836/vs2008-on-windows-7-rtm-with-x64-compiler-broken/1298940#12989400Answer by QAZ for VS2008 on Windows 7 RTM with x64 compiler brokenQAZ2009-08-19T10:13:31Z2009-08-19T10:13:31Z<p>Are you using VS 2008 Express Edition?</p>
<p>You can add the x64 targets to the build configuration manually by downloading the Windows SDK (which include all the x64 compilers/linkers/libs/headers/... ) and following the instructions in this link:</p>
<p><a href="http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/" rel="nofollow">http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/</a></p>
http://stackoverflow.com/questions/264128/access-ruby-objects-with-python-via-xml-rpc1Access Ruby objects with Python via XML-RPC?QAZ2008-11-05T01:33:50Z2009-08-10T21:38:59Z
<p>Hello</p>
<p>I am trying to export a Ruby framework via XML-RPC. However I am having some problems when trying to call a method from a class not directly added as a handler to the XML-RPC server. Please see my example below:</p>
<p>I have a test Ruby XML-RPC server as follows:</p>
<pre><code>require "xmlrpc/server"
class ExampleBar
def bar()
return "hello world!"
end
end
class ExampleFoo
def foo()
return ExampleBar.new
end
def test()
return "test!"
end
end
s = XMLRPC::Server.new( 9090 )
s.add_introspection
s.add_handler( "example", ExampleFoo.new )
s.serve
</code></pre>
<p>And I have a test Python XML-RPC Client as follows:</p>
<pre><code>import xmlrpclib
s = xmlrpclib.Server( "http://127.0.0.1:9090/" )
print s.example.foo().bar()
</code></pre>
<p>I would expect the python client to print "hello world!" as it is the equivalent of the following ruby code:</p>
<pre><code>example = ExampleFoo.new
puts example.foo().bar()
</code></pre>
<p>However it generates an error: "xmlrpclib.ProtocolError: <ProtocolError for 127.0.0.1:9090/: 500 Internal Server Error>".</p>
<p>print s.example.test() works fine.</p>
<p>I dont expect the new ExampleBar object to go over the wire but I would expect it to be 'cached' server side and the subsequent call to bar() to be honoured.</p>
<p>Can XML-RPC support this kind of usage or is it too basic?</p>
<p>So I guess my question really is; how can I get this working, if not with XML-RPC what with?</p>
http://stackoverflow.com/questions/1155002/java-socket-testing/1155017#11550174Answer by QAZ for Java Socket TestingQAZ2009-07-20T18:08:17Z2009-07-20T18:08:17Z<p>use the command "netstat.exe -an" from the command line to list out all listening ports and connections.</p>
<p>Some sample output from my machine:</p>
<pre><code>C:\>netstat.exe -an
Active Connections
Proto Local Address Foreign Address State
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
TCP 127.0.0.1:1025 0.0.0.0:0 LISTENING
TCP 127.0.0.1:1026 127.0.0.1:1027 ESTABLISHED
TCP 127.0.0.1:1027 127.0.0.1:1026 ESTABLISHED
TCP 127.0.0.1:1033 127.0.0.1:1034 ESTABLISHED
TCP 127.0.0.1:1034 127.0.0.1:1033 ESTABLISHED
TCP 127.0.0.1:2577 127.0.0.1:2578 ESTABLISHED
TCP 127.0.0.1:2578 127.0.0.1:2577 ESTABLISHED
TCP 127.0.0.1:2579 127.0.0.1:2580 ESTABLISHED
TCP 127.0.0.1:2580 127.0.0.1:2579 ESTABLISHED
TCP 192.168.2.6:3522 192.168.2.2:80 ESTABLISHED
[...cut for privacy...]
</code></pre>
<p>We can see from the above that TCP port 445 for example is open and listening for incoming connections.</p>
http://stackoverflow.com/questions/1154410/how-does-a-systems-tcp-ip-stack-differentiate-between-multiple-programs-connecti/1154430#11544303Answer by QAZ for How does a system's TCP/IP stack differentiate between multiple programs connecting to the same address and port?QAZ2009-07-20T16:04:46Z2009-07-20T16:04:46Z<p>the source port number will be different even if the destination port number is the same. the kernel will associate the source port number with the process.</p>
http://stackoverflow.com/questions/1154281/reject-non-localhost-attempts-to-access-webrick/1154356#11543562Answer by QAZ for Reject Non-localhost Attempts to Access WebrickQAZ2009-07-20T15:50:57Z2009-07-20T15:50:57Z<p>Maybe just bind the server to the localhost ip address 127.0.0.1 and then you wont have to worry about non-localhost connections:</p>
<pre><code>s = WEBrick::HTTPServer.new( :Port => 3344, :BindAddress => "127.0.0.1" )
s.start
</code></pre>
<p>(the above code is off the top of my head but im sure you get the idea)</p>
http://stackoverflow.com/questions/1124884/interact-with-a-windows-console-application-via-python3Interact with a Windows console application via PythonQAZ2009-07-14T11:46:03Z2009-07-15T18:18:10Z
<p>Hello,</p>
<p>I am using python 2.5 on Windows. I wish to interact with a console process via Popen. I currently have this small snippit of code:</p>
<pre><code>p = Popen( ["console_app.exe"], stdin=PIPE, stdout=PIPE )
# issue command 1...
p.stdin.write( 'command1\n' )
result1 = p.stdout.read() # <---- we never return here
# issue command 2...
p.stdin.write( 'command2\n' )
result2 = p.stdout.read()
</code></pre>
<p>I can successfully write to stdin but can not get anything back from stdout. Have I missed some step? I don't want to use p.communicate( "command" )[0] as it terminates the process and I need to interact with the process dynamically over a period of time.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/859604/how-to-get-the-memory-address-of-the-java-heap/1095245#10952451Answer by QAZ for How to get the memory address of the Java heap?QAZ2009-07-07T22:47:49Z2009-07-07T22:47:49Z<p>A quick 'n dirty way to get the actual heap address of the JVM is to jump into WinDbg, attaching to the JVM and issue a single !address command. Somewhere around 0x2??????? (It differes between jvm versions but remains static for that version) will be a large VAD marked PAGE_EXECUTE_READWRITE, this is your JVM's heap in the process's memory.</p>
<p>To confirm, you can set a breakpoint on kernel32!VirtualAlloc and upon JVM initilization in the module JVM.DLL you will hit on the call to VirtualAlloc showing you the jvm allocation its heap. If you check out the code around this call you can see how the address is calculated.</p>
http://stackoverflow.com/questions/1061187/get-windows-service-pack-version-from-java-applet1Get Windows Service Pack Version from Java Applet?QAZ2009-06-30T00:08:50Z2009-07-07T16:18:16Z
<p>Hello</p>
<p>I am writing a Java Applet. When run on Windows, I need to be able to get the clients OS version, e.g. Windows XP SP3 or Windows 2000 SP4.</p>
<p>I can currently use the following:</p>
<pre><code>String os_name = System.getProperty( "os.name" );
String os_version = System.getProperty( "os.version" );
System.out.println( "Running on " + os_name + "(" + os_version + ")" );
</code></pre>
<p>And it will output something like "Running on Windows 2000 (5.0)" which is great but I need to be able to get the service pack version too. </p>
<p>Anybody know how I can get the underlying service pack version of a Windows machine from within a Java applet? (Without throwing an AccessControlException, or ideally without having to self sign the applet).</p>
<p>Many thanks in advance.</p>
http://stackoverflow.com/questions/512514/php-session-variable-is-set-but-php-doesnt-see-it-very-strange/512564#5125640Answer by QAZ for PHP Session variable is set, but PHP doesn't see it. Very strange.QAZ2009-02-04T18:04:47Z2009-02-05T18:00:24Z<p>Try using:</p>
<pre><code>$tmp = 'index'; // Note the single quotes.
//...
echo "B: " . $_SESSION['page_loaded'][$tmp];
</code></pre>
<p>PHP interprets double and single quoted strings slightly differently. Read these articles <a href="http://us3.php.net/types.string" rel="nofollow">here</a> and <a href="http://v1.jeroenmulder.com/weblog/2005/04/php_single_and_double_quotes.php" rel="nofollow">here</a> as that might be what you are facing.</p>
<p>UPDATE: Just to clarify (given the comments below) my reasoning to check if using single or double quoted strings are effecting the Original Posters problem is shown in the example below where the two strings are not equal:</p>
<pre><code>$var = 1;
$tmpA = 'index_$var'; // will resolve to index_$var
$tmpB = "index_$var"; // will resolve to index_1
if ( $tmpA === $tmpB)
echo 'Identical';
else
echo 'Not Identical!'; // <--- we get this because they are NOT identical.
</code></pre>
http://stackoverflow.com/questions/499359/which-api-functions-to-install-a-file-system-driver-in-windows/511141#5111412Answer by QAZ for Which api functions to install a file system driver in Windows?QAZ2009-02-04T12:28:39Z2009-02-04T12:28:39Z<p>As you asked which API functions are required to install a driver here is some code I use to load a driver in C:</p>
<pre><code>bool LoadDriver( const char * cpDriverPath, const char * cpDriverName )
{
SC_HANDLE hSCService;
SC_HANDLE hSCManager;
hSCManager = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
if( hSCManager == NULL )
return false;
hSCService = CreateService( hSCManager, cpDriverName, cpDriverName,
SERVICE_ALL_ACCESS, SERVICE_KERNEL_DRIVER,
SERVICE_DEMAND_START, SERVICE_ERROR_NORMAL,
cpDriverPath, NULL, NULL, NULL, NULL, NULL );
if( hSCService == NULL && GetLastError() == ERROR_SERVICE_EXISTS )
hSCService = OpenService( hSCManager, cpDriverName, SERVICE_ALL_ACCESS );
if( hSCService == NULL )
return false;
if( !StartService( hSCService, 0, NULL ) )
{
if( GetLastError() != ERROR_SERVICE_ALREADY_RUNNING )
return false;
}
CloseServiceHandle( hSCManager );
CloseServiceHandle( hSCService );
return true;
}
</code></pre>
<p>You probably want to use SERVICE_ BOOT_ START for a file system driver instead of SERVICE_ DEMAND_ START. If you cant write an Inno script to do the above you could always make a small EXE from the above and have Inno run that as a post installation.</p>
<p>If you want to go down the INF route, check out <a href="http://msdn.microsoft.com/en-us/library/ms790727.aspx" rel="nofollow">this Microsoft article</a>.</p>
http://stackoverflow.com/questions/510976/how-to-by-pass-inheritance-in-java-when-invoking-a-method/511034#5110342Answer by QAZ for How to by-pass inheritance in java when invoking a methodQAZ2009-02-04T11:53:05Z2009-02-04T11:53:05Z<p>You would have to go the route of:</p>
<pre><code>Super s = new Super();
s.anotherMethod("Test");
</code></pre>
<p>...but that will defeat the purpose of inheritance if you also need whatever Sub's got. You could hack it like below but this seems an unelegant way to do it.</p>
<pre><code>class Sub extends Super {
public String anotherMethod( String s, boolean bSuper ) {
if( bSuper )
return super.retValue(s);
else
return retValue(s);
}
public String retValue(String s) {
return "Sub " + s;
}
}
</code></pre>
http://stackoverflow.com/questions/209198/borland-x86-inlined-assembler-get-a-labels-address7Borland x86 inlined assembler; get a label's address?QAZ2008-10-16T15:59:40Z2009-02-03T19:22:16Z
<p>Hello</p>
<p>I am using Borland Turbo C++ with some inlined assembler code, so presumably Turbo Assembler (TASM) style assembly code. I wish to do the following:</p>
<pre><code>void foo::bar( void )
{
__asm
{
mov eax, SomeLabel
// ...
}
// ...
SomeLabel:
// ...
}
</code></pre>
<p>So the address of SomeLabel is placed into EAX. This doesn't work and the compiler complains of: Undefined symbol 'SomeLabel'.</p>
<p>In Microsoft Assembler (MASM) the dollar symbol ($) serves as the current location counter, which would be useful for my purpose. But again this does not seem to work in Borlands Assember (expression syntax error).</p>
<p>Update: To be a little more specific, I need the compiler to generate the address it moves into eax as a constant during compilation/linking and not at run time, so it will compile like "mov eax, 0x00401234".</p>
<p>Can anybody suggest how to get this working?</p>
<p>UPDATE: To respond to Pax's question (see comment), If the base address is changed at run time by the Windows loader the DLL/EXE PE image will still be relocated by the Windows loader and the labels address will be patched at run time by the loader to use the re-based address so using a compile/link time value for the label address is not an issue.</p>
<p>Many thanks in advance.</p>
http://stackoverflow.com/questions/507347/hide-command-window-of-bat-file-that-executes-another-exe-file/507366#5073663Answer by QAZ for Hide Command Window of .BAT file that Executes Another .EXE FileQAZ2009-02-03T14:51:12Z2009-02-03T17:35:08Z<p>Try this:</p>
<pre><code>@echo off
copy "C:\Remoting.config-Training" "C:\Remoting.config"
start C:\ThirdParty.exe
exit
</code></pre>
http://stackoverflow.com/questions/505404/what-are-good-programming-competitions/505431#5054314Answer by QAZ for What are good programming competitions?QAZ2009-02-02T23:31:09Z2009-02-02T23:31:09Z<p><a href="http://www.ioccc.org/" rel="nofollow">The International Obfuscated C Code Contest</a>. The goals of the competition are as follows (from their website):</p>
<blockquote>
<p>To write the most Obscure/Obfuscated C
program under the rules below. To show
the importance of programming style,
in an ironic way. To stress C
compilers with unusual code. To
illustrate some of the subtleties of
the C language. To provide a safe
forum for poor C code. :-)</p>
</blockquote>
http://stackoverflow.com/questions/442786/are-nested-html-comments-possible0Are nested HTML comments possible?QAZ2009-01-14T12:32:38Z2009-01-30T18:14:28Z
<p>Hello, as per the title; is it possible to have nested comments in valid HTML? see the example below...</p>
<pre><code><p>some text</p>
<!-- comment 1
<p>commented out html</p>
<!-- comment 2
// are nested html comment allowed?
end of comment 2 -->
<p>more commented out html</p>
end of comment 1 -->
<p>some more text</p>
</code></pre>
<p>It appears not, does anybody know how I could get nested comments to work?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/491613/return-from-interrupts-in-x86/491690#4916901Answer by QAZ for Return from interrupts in x86QAZ2009-01-29T14:02:10Z2009-01-29T14:02:10Z<p>Hi João</p>
<p>I wrote a <a href="http://sourceforge.net/projects/osamos" rel="nofollow">small x86 OS</a> a while back. Take a look at the file <a href="http://osamos.cvs.sourceforge.net/viewvc/osamos/AMOS/src/kernel/isr.asm?view=markup" rel="nofollow">isr.asm</a> in the cvs repository.</p>
<p>Notice how we set up the handlers, most push a dummy dword onto the stack to account for the few handlers that automatically get an error code pushed. Then when we return via an iret we can always assume 2 dwords on the stack irrespective of the interrupt and perform an add esp, 8 before the iret to clean things up nicely.</p>
<p>That should answer your first question.</p>
<p>As for your second question: A double fault when you enable interrupts, ...hmmm could be a problem with paging if you haven't set it up correctly. Could be a million other thing too :)</p>
http://stackoverflow.com/questions/488173/how-to-send-mail-on-windows-other-than-mapi/488195#4881950Answer by QAZ for How to send mail on windows (other than MAPI)QAZ2009-01-28T16:04:12Z2009-01-28T16:04:12Z<p>As far as I know if you aren't going to use the Windows MAPI or SimpleMAPI you will have to roll your own SMTP client.</p>
http://stackoverflow.com/questions/487290/delphi-pdf-generation/487397#4873971Answer by QAZ for Delphi PDF generationQAZ2009-01-28T12:10:33Z2009-01-28T12:10:33Z<p>Here are some (All Commercial) I came across when looking for something similar:</p>
<ul>
<li><p><a href="http://www.vispdf.com/" rel="nofollow">VisPDF Library</a> - This is worth checking out and you get source.</p></li>
<li><p><a href="http://www.bytescout.com/pdfdocscout.html" rel="nofollow">PDFDoc Scout library</a> - This is an ActiveX control and you don't get source but has some good features (good HTML to PDF conversion for example).</p></li>
<li><p><a href="http://www.colorpilot.com/pdflibrary.html" rel="nofollow">PDF Creator Pilot</a> - Worth checking out too.</p></li>
</ul>
<p>I found that the freely available ones LibHaru, PoDoFo weren't up to scratch for my requirements unfortunately.</p>
http://stackoverflow.com/questions/485358/why-did-i-get-a-segmentation-fault-with-a-map-insert/485460#4854600Answer by QAZ for Why did I get a Segmentation Fault with a map insertQAZ2009-01-27T21:51:39Z2009-01-27T21:51:39Z<p>please post some code, you cant expect us to debug your problem on guess work alone.</p>
<p>...but ill give it a stab anyway :) Also what compiler, and system are you doing this on?</p>
<p>If you are reading the data in a loop you may run out of stack space which would cause a seg fault.</p>
<p>Ill edit my answer if you post some code.</p>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/478091#4780912Answer by QAZ for What was your first computer game that got you interested in computers?QAZ2009-01-25T19:19:00Z2009-01-25T19:19:00Z<p>The 1994 classic <a href="http://en.wikipedia.org/wiki/Dreamweb" rel="nofollow"><strong>Dreamweb</strong></a> got me hooked :)</p>
<p><img src="http://www.adventureclassicgaming.com/images/galleries/221/221_1_medium.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/427927/c-library-to-convert-html-to-pdf1C++ Library to Convert HTML to PDF?QAZ2009-01-09T12:44:19Z2009-01-13T14:27:51Z
<p>Hello</p>
<p>I am looking for a C/C++ library to convert HTML (Actually XHTML + CSS) documents to PDF.</p>
<p>It is for commercial use and source would be nice but not essential.</p>
<p>Anybody have any recommendations or experience doing this?</p>
<p>UPDATE: To clarify, I am targeting the Windows platform only. I am developing with Borland C++ Builder 2006, but the library does not have to be a VCL component.</p>
<p>Many thanks in advance.</p>
<p>Steve.</p>
http://stackoverflow.com/questions/427927/c-library-to-convert-html-to-pdf/439121#4391210Answer by QAZ for C++ Library to Convert HTML to PDF?QAZ2009-01-13T14:27:51Z2009-01-13T14:27:51Z<p>Just to bump this, I have evaluated both <a href="http://www.vispdf.com/" rel="nofollow">VisPDF</a> and <a href="http://bytescout.com/pdfdocscout.html" rel="nofollow">PDFDoc Scout</a> and will probably go with PDFDoc Scout as it can format HTML input.</p>
<p>Thanks for everybody else's input.</p>
http://stackoverflow.com/questions/437049/web-based-license-activation/437101#4371013Answer by QAZ for Web-based license activationQAZ2009-01-12T21:37:07Z2009-01-12T21:37:07Z<p>Here is the scheme I use for a commercial product which works well for me.</p>
<p>Upon purchase use <a href="https://www.paypal.com/cgi-bin/webscr?cmd=p/xcl/rec/ipn-intro-outside&" rel="nofollow">PayPal IPN</a> to generate an activation number server side (I do this with PHP + MySQL), store it in a database and e-mail it to the new customer.</p>
<p>Customer receives the activation code and enters it into your product. </p>
<p>The product verify's the activation code and then generates a hardware/machine code. It then goes back to your server (I use an authenticated HTTP POST request back to my server) to verify if the activation number is still active and if the machine code is ok.</p>
<p>Server side you can check if the machine code has not been activated before you associate the machine code with the activation number and tell the product to allow activation.</p>
<p>If the activation code has all ready been used you can disallow activation.</p>
<p>You can build on all this for more features. Like most copy/license protection it can be bypassed but it gives you a decent amount of control over your legit customers.</p>
http://stackoverflow.com/questions/411756/win32-graphical-debugger-that-supports-symbol-server/411803#4118030Answer by QAZ for Win32: Graphical debugger that supports symbol server?QAZ2009-01-04T22:27:45Z2009-01-04T22:27:45Z<p>Check out IDA Pro: <a href="http://www.hex-rays.com/idapro/" rel="nofollow">http://www.hex-rays.com/idapro/</a></p>
<p>It is both a disassembler and debugger and supports symbols.</p>
http://stackoverflow.com/questions/371471/html-javascript-dynamic-image-resize4HTML + Javascript: Dynamic Image Resize?QAZ2008-12-16T14:29:09Z2008-12-16T15:14:34Z
<p>Hello, I am trying to get some javascript to programatically adjust a html img tag's width to display various sized images correctly.</p>
<p>I have a fixed width img tag at 800px to display an image, this is the max width.</p>
<p>If the image is wider then 800px I want to display it at 800px wide;</p>
<p>If the image is less than 800px wide I want to preserve its width to avoid stretching it.</p>
<p>I use this html/javacript code to get a partial solution:</p>
<pre><code><html>
<head>
<script type="text/javascript">
<!--
function resize_image( id )
{
var img = document.getElementById( id );
var normal_width = img.width;
img.removeAttribute( "width" );
var real_width = img.width;
if( real_width < normal_width )
img.width = real_width;
else
img.width = normal_width;
}
//-->
</script>
</head>
<body>
<img id="myimage" onload="resize_image(self.id);" src="IMAGE.JPG" width="800" />
</body>
</html>
</code></pre>
<p>The above code seems to work on all browsers I have tested except Safari (images don't display unless you refresh the page).</p>
<p>I know I can use CSS max-width but that wont work on IE < 7 which is a show stopper.</p>
<p>How can I get this working for all browsers? Many thanks in advance.</p>
http://stackoverflow.com/questions/349791/frameworks-for-network-protocol-fuzzing/349881#3498811Answer by QAZ for Frameworks for network protocol fuzzing?QAZ2008-12-08T15:35:51Z2008-12-08T16:58:44Z<p>I can recommend the <a href="http://code.google.com/p/sulley/" rel="nofollow">Sulley fuzzing framework</a>. It's a python framework and good at its job.</p>
<p>If you want layer 2 protocol fuzzing check out the great work by the people at ernw.de:</p>
<p><a href="http://www.ernw.de/download/l2sulley_04-15-08.tar.bz2" rel="nofollow">http://www.ernw.de/download/l2sulley_04-15-08.tar.bz2</a></p>
<p><a href="http://www.ernw.de/download/l2_fuzzing_shmoo08.pdf" rel="nofollow">http://www.ernw.de/download/l2_fuzzing_shmoo08.pdf</a> </p>
<p>What protocols in particular are you interested in fuzzing?</p>
<p>UPDATE: As you are targeting DNS you should check out the <a href="http://www.ee.oulu.fi/research/ouspg/protos/index.html" rel="nofollow">PROTOS test suite</a>, in particular their <a href="http://www.ee.oulu.fi/research/ouspg/protos/testing/c09/dns/index.html" rel="nofollow">DNS module</a>. This is a closed source Java package though, so you wont be able to use it like a framework, but you can always write a Sulley module to suite your specific needs if PROTOS isn't thorough enough.</p>
http://stackoverflow.com/questions/1412197/how-do-i-tell-if-a-c-integer-variable-is-signed/1412229#1412229Comment by QAZ on How do I tell if a C integer variable is signed?QAZ2009-09-11T17:30:28Z2009-09-11T17:30:28ZOP said integer variables, in C these are signed variables and so < 0 is allways possible.http://stackoverflow.com/questions/1407461/putting-user-input-into-char-array-c-programming/1407472#1407472Comment by QAZ on Putting user input into char array (C Programming)QAZ2009-09-11T10:37:58Z2009-09-11T10:37:58ZAndrew: good point! :)http://stackoverflow.com/questions/1407461/putting-user-input-into-char-array-c-programming/1407472#1407472Comment by QAZ on Putting user input into char array (C Programming)QAZ2009-09-10T20:40:41Z2009-09-10T20:40:41Zcool, enjoy learning C, its a great language! :)http://stackoverflow.com/questions/1393004/java-modified-utf-8-strings-in-python/1393579#1393579Comment by QAZ on Java modified UTF-8 strings in PythonQAZ2009-09-08T11:59:53Z2009-09-08T11:59:53Zsounds good, thansk. checking it out nowhttp://stackoverflow.com/questions/1393004/java-modified-utf-8-strings-in-pythonComment by QAZ on Java modified UTF-8 strings in PythonQAZ2009-09-08T09:50:58Z2009-09-08T09:50:58ZThanks Tom but its a third part java app which I cannot modify so I must conform to its expected inputs.http://stackoverflow.com/questions/1393004/java-modified-utf-8-strings-in-pythonComment by QAZ on Java modified UTF-8 strings in PythonQAZ2009-09-08T09:50:15Z2009-09-08T09:50:15ZThanks McDowell, I am trying to interface with a JBoss web app which is using this modified utf8 format to read in strings via POST requests.http://stackoverflow.com/questions/1393004/java-modified-utf-8-strings-in-pythonComment by QAZ on Java modified UTF-8 strings in PythonQAZ2009-09-08T09:46:00Z2009-09-08T09:46:00ZHi Jon, I added a link to the readUTF method in the DataInput interface which mentions it a little. I'll try to dig up some more info.http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1148864#1148864Comment by QAZ on Surprising software vulnerabilities or exploits?QAZ2009-07-28T09:57:06Z2009-07-28T09:57:06ZI think people are upvoting a nice picture. As RBarryYoung said, being able to injecting code means game over, its hardly surprising, and its not a vulnerability its creative coding! Anyway, you would need some kind of pre existing vulnerability to be able to exploit something in this fashion. This is more like a payload.http://stackoverflow.com/questions/1154281/reject-non-localhost-attempts-to-access-webrick/1154356#1154356Comment by QAZ on Reject Non-localhost Attempts to Access WebrickQAZ2009-07-20T20:17:13Z2009-07-20T20:17:13Zcool, glad it worked for you :)http://stackoverflow.com/questions/1124884/interact-with-a-windows-console-application-via-pythonComment by QAZ on Interact with a Windows console application via PythonQAZ2009-07-14T13:13:41Z2009-07-14T13:13:41Zyes console_app works normally when run in cmd.exe It just outputs some numbers based on the input provided (and sometimes strings)http://stackoverflow.com/questions/1124884/interact-with-a-windows-console-application-via-python/1125001#1125001Comment by QAZ on Interact with a Windows console application via PythonQAZ2009-07-14T12:21:02Z2009-07-14T12:21:02ZThanks, good suggestions. I dont have access to the console app's source code unfortunately. Confirmed its writing to stdout and not stderr.http://stackoverflow.com/questions/1124884/interact-with-a-windows-console-application-via-python/1124911#1124911Comment by QAZ on Interact with a Windows console application via PythonQAZ2009-07-14T11:56:13Z2009-07-14T11:56:13Zreadline() just hangs too. I can confirm that the console app does output data which should be read in correctly on the python side.http://stackoverflow.com/questions/1061187/get-windows-service-pack-version-from-java-appletComment by QAZ on Get Windows Service Pack Version from Java Applet?QAZ2009-07-08T21:41:23Z2009-07-08T21:41:23ZPiPeep: just marked your answer as correct, enjoy your new 200 points! :)http://stackoverflow.com/questions/859604/how-to-get-the-memory-address-of-the-java-heap/859911#859911Comment by QAZ on How to get the memory address of the Java heap?QAZ2009-07-07T22:17:27Z2009-07-07T22:17:27Z"the Java heap is just memory allocated to the process by Windows from one of the process heaps.". This is not true, the Java heap is allocated (on Windows) via kernel32!VirtualAlloc and as such is not from one of the process heaps.http://stackoverflow.com/questions/1061187/get-windows-service-pack-version-from-java-applet/1075872#1075872Comment by QAZ on Get Windows Service Pack Version from Java Applet?QAZ2009-07-07T16:21:12Z2009-07-07T16:21:12ZThanks PiPeep, this would work if I was to use the "sun.os.patch.level" property to get the Service Pack version. Ideally I would prefer not to access this property and thus not have to not sign the applet. If their is no other way this answer is correct.