3,417 Topics

Member Avatar for
Member Avatar for FreddieBambino

Right. Im trying to communicate with the expedia travel API, exchanging xml feed with them. It goes somehow like this: I send them info of the query I want, they send me the query back in xml form. Here is an example of a query I would want to send …

Member Avatar for FreddieBambino
0
228
Member Avatar for hannah shrn j

[CODE]import java.io.*; class avlnode { public int data,bf; public avlnode lchild,rchild,parent; } class avl { avlnode root=null; avlnode p=null; avlnode prev=null; public void insert(int ele) { avlnode temp=new avlnode(); temp.data=ele; temp.lchild=null; temp.rchild=null; temp.parent=null; p=new avlnode(); prev=new avlnode(); p=root; if(root==null) { root=temp; } else { while(p!=null) { prev=p; if(p.data>temp.data) { p=p.lchild; …

Member Avatar for JamesCherrill
0
272
Member Avatar for Buppy

Hi, I need to read a profile's wall page and it's posts from facebook. I found this link in the graph page: [url]https://graph.facebook.com/profile/feed?access_token=xxx[/url] It returns just a list of some comments or something. I cannot even find them on the page. How do i properly use it to get the …

0
59
Member Avatar for saisakthi

Hi, I am very much new to cocos2d.. I am developing an application in android using cocos2d.. In that, [code]public class BaseLayer extends CCLayer { ChildLayer cl = new ChildLayer(); this.addChild(cl); } public class ChildLayer extends CCLayer { public ChildLayer() { CCLayer.node(); } . . }[/code] In this, arrowed line …

Member Avatar for saisakthi
0
240
Member Avatar for khaled_jawaher

i m using mtom feature in jaxws web service to send image from server to client and i m getting the following error pls i apreciate any help. error is Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: com/sun/x ml/stream/buffer/XMLStreamBuffer at com.sun.xml.ws.api.addressing.AddressingVersion.<init>(AddressingVers ion.java:436) at com.sun.xml.ws.api.addressing.AddressingVersion.<init>(AddressingVers ion.java:67) at com.sun.xml.ws.api.addressing.AddressingVersion$1.<init>(AddressingVe rsion.java:146) code is [CODE]package services; …

Member Avatar for ~s.o.s~
0
568
Member Avatar for farshadak2004

Hi everyone: I am building a dictionary(translator) . My dictionary is completed, now I want to add some feature to it. I want to add a feature that once the user highlight a word in any application, afte 2 seconds which the mouse is IDLE my dictionary automatically COPY and …

Member Avatar for skatamatic
0
314
Member Avatar for JasperX

I dont know if someone Use this Browser FrameWork , i hope so :) I would use this Browser Framework in my Winform Application c#. I have some questions to do. I'm getting Crazy :( My target is Build a Tabbed WebBrowser with this FrameWork in a WinApps Form. [B]Question …

0
162
Member Avatar for stefh

Hi everyone :) Title says it all... I'm trying to bind events to a wx.GenericDirCtrl. I've visited more than 20 web sites but i haven't found how to do it. I've tried different manners but it doesn't work as i expect it to. In some case my control is seen …

Member Avatar for stefh
0
628
Member Avatar for n3xtgen

I am working on a web application and using the Google API for geo-location. I am using a localDB to store locations for now and displaying them using this: [CODE]function displayItems() { readItems(LocalDB, function(items) { var appendHtml = ""; for (var i = 0; i < items.length; i++) { appendHtml …

0
59
Member Avatar for Santi1986

so my question here is when the parent exits before the child process...in linux....the reparenting is done within the same thread group rite!!??? ...and wots the role of the reaper..i mean after you find a suitable parent task..why is this reaper API called..

0
158
Member Avatar for petergeng

Im trying to call python functions from C code, and i followed a sample from here [URL="http://docs.python.org/release/2.3.2/ext/pure-embedding.html"]http://docs.python.org/release/2.3.2/ext/pure-embedding.html[/URL] I also have the correct include file directries, library directries, and linked the python32.lib (im using python 32) however the error was that python/C APIs such as PyString_FromString, PyInt_FromLong, PyInt_AsLong are undefined (error …

Member Avatar for Gribouillis
0
162
Member Avatar for Zssffssz

I want to get unix time in my program, google just brought up how to get time on a unix system (I'm on a dos/windows system). Is there an easy (can fit in less than 20 lines of non-system dependent functions and without any API or WIN32 [unless simple] functions) …

Member Avatar for vijayan121
0
885
Member Avatar for ndeniche

Hello guys and girls I couldn't hel to wonder what is daniweb's community position towards the Stop Online Piracy Act to be discussed today in the US Congress. Is Dani censoring the logo tonight?

Member Avatar for jwenting
0
233
Member Avatar for Jessurider

can anyone tell how to bring Bitmap class in java just like we do that in C#................ i've got link regarding the Bitmap class in java... but i does'nt know how to bring that in java [URL="http://jwx.sourceforge.net/api/wx/Bitmap.html"]http://jwx.sourceforge.net/api/wx/Bitmap.html[/URL]

Member Avatar for Jessurider
0
213
Member Avatar for Chuckleluck

Hi, I'm learning to use the Simple, Fast, Multimedia Library (or SFML), and I was going through the tutorials on their website. The first one (found [URL="http://www.sfml-dev.org/tutorials/1.6/window-window.php"]here[/URL]) said the following: [QUOTE]Under Windows operating systems, you may have created a "Windows Application" project, especially if don't want the console to show …

Member Avatar for thines01
0
2K
Member Avatar for vermaashish_mca

Hi I need to input data into the keyboard buffer; so that the input data will be written to the application which currently has the keyboard focus. I have written the following code to input the unicode characters into the key board buffer but the output is not the desired …

0
53
Member Avatar for akhil1989

I would like to know whether if there is any Objective-C MSN API. I have searched for a while and could not really find one.

Member Avatar for peter_budo
0
59
Member Avatar for raul8

Hi, I am using jax-b for XML binding. Just wanted to ask is there any other API, that is better than jax-b. Like it can create XML elements in the form of hashmap or something? Thank You

0
67
Member Avatar for Chuckleluck

I'm beginning game development, and I started by reading Michael Morrison's [I]Beginning Game Programming[/I], which teaches how to develop a game in C++ using the Win32 API. I've had a lot of trouble with things I don't have any experience in (when I shut down my program, the process still …

Member Avatar for mrnutty
0
502
Member Avatar for pseudorandom21

This is my first time trying to use a web API with C#, a friend asked me to make him a simple remote control app. I don't really know where to begin, I'm thinking I can create a [URL="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx"]WebRequest[/URL] filled with the proper info, is this going to work? A …

0
90
Member Avatar for BenzZz

I'm a complete beginner to c++ so this may be a really stupid question... Basically so far i have this: [CODE]s1Textbox->AppendText( gcnew String(ss.str().c_str()));[/CODE] Obviously the text being displayed keeps appending. I looked at all of the methods for text boxes on the API but couldn't find anything to set the …

Member Avatar for BenzZz
0
68
Member Avatar for agam360

I'd like to know if there is a simple way of retrieving the Cover photo from a user in my application, via the facebook php sdk. I managed to retrive the cover photo id of the album of the cover photo album, but my solution only works partially.(As you can …

0
107
Member Avatar for AsifBhatti

when i install sdk setup take lot of time after few hours stop setup please guide me about sdk setup all api already install in one zipfile..

Member Avatar for Awais Ali
0
122
Member Avatar for stanley87

Hi,pleasure to meet you all.I wanna to ask how to write a javascript code to connect with php api authentication located at my server(eg. [url]www.mydomain.com/api/index.php[/url]). 1.I wanna put a javascript code to call the api authentication function at my website server so that other people can access through the api …

Member Avatar for Stefano Mtangoo
0
355
Member Avatar for stanley87

Hi,morning guys. I want to ask anybody know to write javascript to deal with the authentication API key of the php. My condition is like that: 1. i will provide the key to other site owner which already registed at my website. 2. then i want to write a javascript …

Member Avatar for pritaeas
0
123
Member Avatar for jjemphoung

I am currently doing some writings to an excel file (.xls) through JExcel API. My problem is about the autoSize method of CellView. My code. [CODE] public void write() throws IOException, WriteException { File file = new File(inputFile); WorkbookSettings wbSettings = new WorkbookSettings(); wbSettings.setLocale(new Locale("en", "EN")); WritableWorkbook workbook = Workbook.createWorkbook(file, …

0
162
Member Avatar for rushi3311

As we know [LIST] [*]ServletContext [*]HttpSession [*]HttpServletRequest [/LIST] are interface in JSP SERVLET api of Java..! We repeatedly use it in our code for different purposes, but i am still confused where and in which class all abstract method for given interfaces are implemented ? Like setAttribute, getAttribute , removeAttribute …

Member Avatar for JamesCherrill
0
166
Member Avatar for Violet_82

Hi there, I am having some problem understanding an event in jquery. Given the following example [url]http://api.jquery.com/event.pageY/[/url], I don't quite understand what 'e' is and what it does. The rest of the code is kinda clear, it basically gets the coordinates but I don't understand what is the function of …

Member Avatar for Violet_82
0
236
Member Avatar for sballew

The source is available at [URL="http://code.google.com/p/java-cli-api/"]http://code.google.com/p/java-cli-api/[/URL]. It is not yet in the Maven Central Repository, but I did post the initial 0.0.1 release on the Downloads page if you do not want to check out the source. If anyone has comments/critiques on it, I would love to hear them. The …

0
131
Member Avatar for paresh_thummar

Hello friends, I am learning google API I want to retrieve google contacts using Authsub. And second thing is that i want to use secure token. I have X.509 certificate with private key. In first step I got token but in second step (To get AuthSubSessionToken) I got error : …

0
91
Member Avatar for woodenduck

Hey, I was wondering if anyone could show me a little javascript. I've never used it before and am unfamiliar with how to reference outside API's. What I'm trying to do is read a string in from a website/Web API. So..: HTML with javascript document: [code] <script type="text/javascript"> var wantedString …

Member Avatar for woodenduck
0
604
Member Avatar for prathameshz

hi All, we have to integrate litmus api in our email marketing product. we got the Litmus api php classes but can not get clear idea about how to integrate. we have to do spam test for our email campaigns. what the paramaters of email(either email source or .eml file) …

0
56
Member Avatar for sys73r

[CODE]from tkinter import * def handler(event): print("Clicked at", event.x, event.y) class Application(Frame): def __init__(self, master=None): Frame.__init__(self, master) self.grid() for r in range(6): self.master.rowconfigure(r, weight=100) #Creating custom buttons self.master.columnconfigure(0, weight=100) Button(master, text="Red",command=self.colorit).grid(row=6,column=0,sticky=E+W) self.master.columnconfigure(1, weight=100) Button(master, text="Blue").grid(row=6,column=1,sticky=E+W) self.master.columnconfigure(2, weight=100) Button(master, text="Green").grid(row=6,column=2,sticky=E+W) self.master.columnconfigure(3, weight=100) Button(master, text="Black").grid(row=6,column=3,sticky=E+W) self.master.columnconfigure(4, weight=100) Button(master, text="Open", command=self.hanlderf).grid(row=6,column=4,sticky=E+W) Frame1 = …

Member Avatar for sys73r
0
2K
Member Avatar for lamees

Hi all, I'm new to python. I am developing a text to speech application using python. So, I'm using a package named "pyTTS" version 3, compatible with python 2.5. Using an existing example, I wrote the following orders: [CODE] import pyTTS tts = pyTTS.Create() [/CODE] [B]Before this, I've installed the …

Member Avatar for vegaseat
0
461
Member Avatar for harinath_2007

Could anybody direct me to J2ME API link.. I couldn't found the download link.

Member Avatar for harinath_2007
0
135
Member Avatar for stanley87

Dear all friends, Currently I want developing an API so that others web site also can use the API's information by using the API code generate by my web site.Any people can give the idea on how exactly the API works?My basic requirement are: 1.my website generate the public API …

Member Avatar for cwarn23
0
112
Member Avatar for IanArcher

Here is the code It's an Open type free use code for convert css to inline style codes by capturing from your own html code or a url and it outputs an html code when finished. Because i need to send webpages in an e-mail. I am brand new to …

Member Avatar for pritaeas
0
244
Member Avatar for shack99

Hello all, I'm trying to read an ant script through java and find where all its .java files and libraries are located. I've gone through the Apache ant API but couldn't find an appropriate method. So far all I could come up was the below code, it gives the properties …

Member Avatar for peter_budo
0
292
Member Avatar for paresh_thummar

Hi friends I am learning GOOGLE API I got error : Invalid Signature Here my code Any body have idea And thx in Advance [CODE] function GetRequestToken() { $consumer = 'MY_CONSUMER KEY'; $secret = 'MY_COSUMER_SECRETE'; $callback = 'http://localhost/Gcontacts/welcome/redirection'; $sign_method = 'HMAC-SHA1'; $version = '1.0'; $scope = 'https://www.google.com/m8/feeds/'; $path = "/accounts/OAuthGetRequestToken"; …

Member Avatar for paresh_thummar
0
271
Member Avatar for amanu092

How can I integrate bluepay payment method API with joomla?Is there any one to help me please? Thanks

Member Avatar for chrishea
0
199
Member Avatar for pseudorandom21

Windows API Can the KEYBDINPUT structure in the INPUT structure be used to send a mouse click? I know there is a different structure for the mouse but I would like to use the KEYBDINPUT structure if possible.

Member Avatar for ret801
0
164
Member Avatar for triumphost

I have a game client that has a button to allow input and when toggled on it will block input.. Thing is sometimes even when u toggle it off, it still blocks user input.. Other times there is an extremely HUGE delay before it accepts input.. I was thinking if …

Member Avatar for ret801
0
224
Member Avatar for mshauny

Hi Any suggestion on how to save an image file into mysql using the .NET api? I tried code similar to this : MemoryStream stream = new MemoryStream(); byte[] imgData; //previously available image in the program Image.Save(stream,ImageFormat.Jpeg);// saves the image into the stream imgData = stream.ToArray(); //now I have the …

0
84
Member Avatar for tubby123

Hey, I am doing my Final Year Project on NLP - something along IBM's Deep QA Project. [URL="http://en.wikipedia.org/wiki/Watson_(computer)"]http://en.wikipedia.org/wiki/Watson_(computer)[/URL] I would like to know what will be a good IDE to work on. My parameters for a good IDE in this project would be : 1)Good API's for Speech to Text …

0
53
Member Avatar for dirgha

hello sir, i want to post or upload photo in the face book by using the api , please tell the php code of it. hoe to use the api of face book ,twitter, photobucket etc. please tell code how to use as soon as possible its urgent. thanks.

0
44
Member Avatar for peck3277

Hey guys, I'm bit of a noob so please bear with me. I'm trying to open a lot of urls in internet explorer at once. About 40 urls. I have an array of my urls and I'm using the following code: [CODE] for (int i = 0; i < urls.length; …

Member Avatar for peter_budo
0
222
Member Avatar for gomedigap

Hi all. I've been trying to get this code to post to a https url for some time without any remedy. I'll give you all a basic rundown, I have a site that we're trying to generate leads off of, and we have a 3rd party crm system that we …

Member Avatar for gomedigap
0
6K
Member Avatar for luky279

HI, Iam trying to develop SMS Application by using java communicaition API. iam getting error msg like com.sms.samples.SerialConnectionException: Port currently owned by SMSConnector Iam aware that by using modem we can develop an application. But how to develop with out using modem.what are the requirements required. plz help me ..... …

0
58
Member Avatar for senergy

Hi, I have searched a lot of tutorials on how to make owner-drawn icon buttons, but a lot of them are a little bit hard to understand for API newbie and done in run-time, not with resources (I like resources!) so, can someone create/post some nice and simple tutorial on …

0
55
Member Avatar for akil007

I have the User Control in which ajax datepicker. Many instances of this user control are used in Same page. I have handle my logic like change of one value of one datepicker can change other datepicker through JavaScript. But I have faced that I does not get any uniqueId …

0
80

The End.