api

Free SMS API in web application

Does anyone know any sms api i can use in my web application to send sms to users? ...

How to implement AWS signed requests with amazon java library?

Hi everybody, We're currently using amazon-a2s-2007-10-29-java-library.jar to interact with the Amazon Webservices or Product Advertising API, respectively. We don't see a way how to implement signed requests (mandatory from Aug 15) using this library, nor can we find an updated version supporting signed requests. There does not seem ...

Global hardware OnKeyPress

I have in C# this function , for key press. When you press a key will be executed function a() protected virtual void OnKeyPress(object sender, KeyPressEventArgs e) { a(); } I need a method which to execute a function globally, in outside of my application , in outside of .NET Framework , anywhere in Windows. Advanced th...

What would a multithreaded UI api look like, and what advantages would it provide?

Or, equivalently, how would you design such an API. Expected/example usage would be illustrative as well. My curiosity comes directly from the comments (and subsequent editting on my part) of this answer. Similar questions/discussions in the past provide a bit of inspiration to actually asking it. Executive summary: I don't feel a mu...

When to recompile JNI bindings and client code?

Let's say I hav: a C library libfoo, a package org.foo.jni of JNI bindings to libfoo, and a package com.user.of.foo of client code. Obviously, if functions that org.foo.jni touches in libfoo change, I need to recompile the classes in org.foo.jni. And, also obviously, if methods that com.user.of.foo touches in org.foo.jni change, I n...

Where can I find a Delphi online help better than the integrated one?

Is ther any other documentation about delphi than the integrated help. Something like the http://java.sun.com/j2se/1.5.0/docs/api/ or the http://msdn.microsoft.com/en-us/library/ ...just for delphi. Because imho the delphi help is badass bad. ...

How to batch update multiple workitems in TFS

I need to update same field to same value for hundreds of workitems in TFS. Is there any way to do it in a batch instead of updating them manually one by one? ...

C++ API for multiplatform development

I want to learn C++ to work on various platform (primarily, Linux and Windows). I have come across few solutions like the Boost C++ library, Qt toolkit, etc that can be used to write programs which will compile on both the platforms. I want to know from the community, what type of library would you refer to use and if any of you had exp...

Twitter: verifying username and password in C#

Hello, I have an application with the following use-case: when the user first starts using the application, he inputs his username and password. Then, at a much later stage, the application may update his status. Currently I'm using Twitterizer, but I believe the question is beyond the scope of the specific library I'm using. Following...

Options for encapsulating an API

I want to extend an API (the Visio API - Microsoft.Office.Interop.Visio). The classes are not sealed. They have some weird COM stuff going on inside of them. What are my options? Specifically, what's the best way to seperate pure (external) api access from the biz logic of my app? ...

Babylon Text Select

How does Babylon recognize text selection in any software? I've to implement this. Maybe it's possible with API Hook? Thanks. ...

In C#, how can I grab the selected text from any software?

Possible Duplicate: Babylon Text Select Like Babylon. When you click on a word, it grabs the text. How can I do this? Thanks. ...

How to use the C++ Sockets Library

Hi, I'd like to do some network socket programming in C++ and have found the C++ Sockets library. First, is this a good way to go in C++? Normally in C, I'd use some of the stuff beej describes in his tutorial. Second, how do I compile the examples given on the site? I can't figure it out from their installation/configuration guide. ...

Using Wiki API by format JSON can't get the content.

I use this code to gathering the information from Wiki: http://en.wikipedia.org/w/api.php?action=query&rvprop=content&prop=revisions&format=json&titles=apple And I can get a JSON String like this { "query": { "normalized": [{ "from": "apple", "to": "Apple" }], "pa...

API Model for Server Push Technologies (COMET)

Hello, I'm whiling to add a support of Server Side events to CppCMS. I understand the technical part of what to do on the level of communication: Client sends long polling XmlHTTPRequest, and waits for respond, server accepts the connection and does not respond until server side event occurs and sends the response to the client. The cli...

Win32 API CopyFile() fails to send multiple files

While attempting to use the CopyFile() function I have encountered a strange error. It will write neither of the files to my destination. Here is the code. The section when I send files has been commented. Keep in mind this code is a rough draft so ignore the function definitions. /* BrowserFind.c Version 0.2 07/29/09 LogicKills ...

GetModuleFileNameEx - Is it possible to get the path in char* and NOT in TCHAR[]?

Here is my code: TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>"); GetModuleFileNameEx (hProcess, NULL, szProcessName, sizeof(szProcessName)/sizeof(TCHAR)); I need the path in char*, and not in TCHAR[]. Is it somehow possible without converting (WideCharToMultiByte)? Thanks... ...

API for subscription management for SSRS?

We're setting up a reporting service for a website, and right now I'm leaning towards using SSRS...but I'm trying to make sure it will really do everything we need. One thing we need is the ability for people, through the website, to create a report and have that report automatically sent out at various intervals. Sounds very much like...

Trouble creating calendar in Google API via Coldfusion

I am trying to create a caledar using the Google API, and it just returns the list of calendars in my account, just like I sent a GET request. Here is my code: <cfxml variable="locals.xml"> <cfoutput> <entry xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005" xmlns:gCal="http:...

Is there any service that allows you to send letters via snail mail?

I'm working on some software that needs to send emails to users, and occasionally letters through USPS. Is there any service with an API that allows you to do this and pay x amount of money per letter or something, or does this have to be a manual in house print, package, and mail process? ...