Possible Duplicate:
Examples of GoF Design Patterns
Currently studying patterns stuff, and this one lacks concrete examples. Would you help me to fill missing cells in a table illustrating design patterns with concrete examples from Java 6 SE/EE APIs?
In the end I'll update this table with your contributions. Thanks.
...
Hi
are there some Java API for parsing GPX files? I need to parse many GPX files into our own data structure (our own database).
Thx 4 help
Buju
...
I have a dataset and I want to create an API (RESTful web service) around it. However, I don't want to start from scratch as I believe this has been done zillions of times already.
Does anybody know any well-tested service that has opensourced its API? I see that people normally release a reference implementation for their clients (like...
Hi,
I've developed an API with WCF Data Services which exposes my website user's data.
The data hosted there belongs to each user and is not public, so the API is secured with API keys which are unique to each client and http header or GET parameter based authentication.
Now I am wondering if I should enable JSONP on my API. It seems ...
Hello Friends,
I am working on a project that has a requirement of getting the count of mentions on it in google.But as I tweaked inside google search API,I am not able to get the same.It generally helps to add search to your site.
Please throw me some light on how to go about this.
Thanks in advance!
...
Per the new profile/fan page tab rule that eliminates the iFrame option, is there a way to dynamically generate content for a given tab? I've seen methods that wrap a canvas app (but requires a user to click to load content), but I want to show updated content thats managed on my servers. I thought you could also update the FBML using th...
Hi all
I there a way where by I can define the colours of bubbles in a motion chart provided by Google visualization API ? I do not want to use the default colour scheme.
Thank you in advance.
...
Hi,
My service converts report into a byte array and passes to client(wpf app) using the following code:
byte[] bytes = renderer.ServerReport.Render("PDF", deviceInfo, out mimeType, out encoding, out extension, out streamids, out warnings);
where renderer is an instance of Microsoft.Reporting.Webforms.ReportViewer. There is a problem...
i am generating a chart map like this:
&chtm=usa">http://chart.apis.google.com/chart?chs=440x220&cht=t&chco=CBD122&chld=US&chd=s:&chtm=usa
does anyone know if there is a feature to do something on mouseover? like have each state turn a different color on mouse over?
...
Hello,
We have a wiki that was designed by a 3rd party developer. The problem we have had is that users' who have been made "inactive" still show up in searches. The work around to stop user from being seen is removing properties associated with that user.
To access the user properties, we would make a call to api passing a url encoded...
I'm writing some scripts for my boss that reads a specific user's tweets over the course of a week, and then dumps them into a formatted Tumblr post. Because he wants this done automated, I'm using cron to run the scripts periodically, but this is not the point of the post.
My question is, since the move to OAuth by the Twitter API, is ...
what api is the easiest to use in calculating the distance between two addresses using roads not the straight line distance. i would like to use a different api than googles since i heard their api is not for paid apps. i would like the api to be easy to implement and would appreciate if that api offered some sample code.
...
I'm finishing my summer job where I write graphical software for our baggage scanners. Everything is done in .NET or MFC, with plain C++ for hardware communication (I don't do any of the hardware stuff). I sometimes resorted to Win32 API calls such as SendMessage to improve performance of a form or control. I've had only a year's worth o...
So I have an ASP DOT NET web service which needs to impersonate Windows Authenticated users. This web service calls into a Com Api to perform database operations.
It seems like the Impersonation does not persist into the Com Api. Is this because the Com DLL is loaded into its own memory space and treated as a separate process? Also what...
I can access a users gmail account using oauth, and i can access a users contacts and their contact groups through google contacts API (which uses AuthSub). For my application i need both of these, is there a way i can authenticate both at once, so that i don't require users to go through two separate authentication sessions?
Or is ther...
Is there a way i can get access to a user's contact groups using the Gmail oAuth alone? I know it is possible to do using the google contacts API, but i am already using the gmail oAuth so i dont want the user to have to authenticate contacts api separately.
...
I have an html page. Here, I am using tabview of Yahoo API. That is :
<div id="demo" class="yui-navset">
<ul class="yui-nav">
<li class="selected"><a href="#tab1" onclick="TopStories()"><em>Top Stories</em></a></li>
<li><a href="#tab2" onclick="FinanceNews()"><em>Finance</em></a></li>
<li><a href="#tab3" oncl...
I just have a link :
<tr><td align="center" height="10%"><a href="https://login.yahoo.com/config/login_verify2?.intl=in&.src=ym">Mail</a></td></tr>
while clicking on it, it will shift to the pave http://login.yahoo.com, but I want the page open in a frame that pops up on this page & the inner display is target...
I'm new to working with APIs. We're integrating Fedex into our Rails app. So we're sending API requests and receiving responses from them. For testing purposes, I would like to see the code of what we're sending out and receiving. I'm not sure how to do this.
What tools do you use for testing to view API requests and responses?
T...
I'm trying to get started with Twilio's REST API using the rubygem twilio-ruby, and I've hit a snag. Here's my code:
h = {:From => "123-123-1234", :To => "123-123-1234", :Body => "hey"}
account = Twilio::RestAccount.new(ACCOUNT_SID, ACCOUNT_TOKEN)
resp = account.request("/#{API_VERSION}/Accounts/#{ACCOUNT_SID}/SMS/Messages", 'POST', h)
...