Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

Threading multiple async calls (Silverlight)

Part of my Silverlight application requires data from three service requests. Up until now I've been chaining the requests so as one completes the other starts... until the end of the chain where I do ...
4
votes
1answer
89 views

How can I use Moles to return different values for multiple calls to a method in C#?

I've been trying to find a solution for this, but either I've been looking with the wrong search terms or there simply isn't an answer for my question yet. Problem: I've got a method that I'd like to ...
3
votes
3answers
87 views

How do I intercept method calls in order to delay the execution, group all calls together and execute in java?

Iv'e been attempting to resolve my problem for about a day now, but can't seem to get anywhere. The problem : I have a java class, ExternalClass which has 30 methods in it. I also have an interface ...
3
votes
1answer
404 views

Android DDMS - send calls to actual device

Does anyone know how (or if it's possible) to simulate a call to an actual device (i.e. USB debugging) using the DDMS in eclipse? I have no problems simulating calls to the emulator and the app I'm ...
3
votes
2answers
1k views

How to add new field(s) and records to the call logs(call history) database?

I am trying to make a VoIP application and I wanted to know if it is possible to do the following with the Call Logs content provider - I want to add new Call Log records for the VoIP call along ...
3
votes
2answers
159 views

Run a PHP-script from a PHP-script without blocking

I'm building a spider which will traverse various sites and data mining them. Since I need to get each page separately this could take a VERY long time (maybe 100 pages). I've already set the ...
3
votes
4answers
8k views

PHP Calling a function within a Class method?

I have been trying to figure out how to go about doing this but I am not quite sure how. Here is an example of what I am trying to do: class test { public newTest(){ function ...
2
votes
2answers
183 views

Get Google or Yahoo API live option price

Is there a way to get the live options information from Yahoo or Google's API. By options information I mean: call, ask volume. I basically need the information on this page thanks for your help!
2
votes
3answers
170 views

multiple amount of asynchronous calls to web service in Silverlight, bind response to request

I have a problem and i have invested now some time to solve it, but could not figure the best solution. I want to send multiple asynchronous calls to different web services with silverlight and be ...
2
votes
0answers
151 views

Android: How to make missed calls?

I am working on an Android app on which I want to be able to make calls but with a very precise restriction, this is "making missed calls". Want I want is to be able to hang up just the moment the ...
2
votes
6answers
145 views

Infinite recursive calls should raise a stack overflow in this case?

I've recently thought about this case of stack overflow: int f() { return f(); } int main(void) { f(); return 0; } which definitely crashes the program. But my question ...
2
votes
1answer
555 views

IPhone SDK handling calls

Is there any way to handle call events in IPhone? i.e. Log calls and sms in my app, block unwanted numbers, etc. I know the IPhone SDK doesn't provide that but I have been googling this and what I got ...
2
votes
5answers
653 views

How do I optimize

What I'm trying to do is take this code: char naive_smooth_descr[] = "naive_smooth: Naive baseline implementation"; void naive_smooth(int dim, pixel *src, pixel *dst) { int i, j; for (i ...
1
vote
2answers
106 views

Video Poker in C++

I'm starting to write a video poker program and I'm running into some issues. I have a Hold function as you can see below: void Game::Hold( bool& choice ) { if( choice == true ) { ...
1
vote
1answer
221 views

How to make voip calls from java web application

Following is my use case: I am developing a web application using Java/J2EE. My application will have registered users and any one of them should call each other at any time. I don't have any problem ...
1
vote
0answers
946 views

Intercept outgoing calls on hangup

We want to intercept the outgoing call hangup in a broadcast receiver. We are listening to android.intent.action.PHONE_STATE and do get notified on IDLE state that is when the call finishes. ...
1
vote
5answers
472 views

How to cancel multiple delayed performSelector calls

I have to stop the call in the fenumeration. NSTimeInterval delay = 2; for (NSString* sentence in sentences) { [sentenceHandler performSelector:@selector(parseSentence:) ...
1
vote
1answer
363 views

How to block outgoing calls, Android

I'm working on making an app that prevents the user from calling certain contacts. I have the contacts in a database but I don't know where to go after that. I know that I must use a broadcast ...
1
vote
0answers
467 views

Answer phone call and hang up phone call within the application?

I want to be able to answer a phone call and hang up the phone call as soon as it starts ringing within my application without having to touch the phone. I have searched but I haven't found much about ...
1
vote
0answers
108 views

J2ME Detect PTT Request for Motorola Iden

I have a J2ME application that constantly sends data to server in TCP. During sending, PTT calls cannot be received. So I wonder if anyone knows how to implement PTT request listener in J2ME so that ...
1
vote
0answers
174 views

JQuery getJSon nested calls not working

I need to perform two ajax calls through JQuery's getJSon function. The thing is that, once one of the calls is performed I need to immediately call the second getJSon function (because I need the ...
1
vote
2answers
798 views

source code for execve() and fork()

I would like to look at the source code for execve() and fork().Could you please tell me any websites that gives the source code and also some explaination for it. Thanks
1
vote
1answer
240 views

Android - Ajax style auto check of username availability

I am building an Android app in which user are required to choose a nick name. Now, two users cannot have same nick name. I have seen forms on .net where we can verify the availability of a particular ...
1
vote
1answer
504 views

Flex 4 Best Practice when using RemoteObject and multiple components

I was wondering what is considered to be a best practice when I have multiple components and use RemoteObject for AMF communication with a PHP backend. Have the RemoteObject in the Main.mxml file ...
1
vote
2answers
119 views

Filter / prioritize phone numbers on the iPhone

Is it anyway possible to tag certain phone numbers on your iPhone as high priority numbers, and then filter them out to perform some actions on them?.. e.g. allowing calls from these numbers to come ...
1
vote
1answer
148 views

Python C API from C++ app - know when to lock

I am trying to write a C++ class that calls Python methods of a class that does some I/O operations (file, stdout) at once. The problem I have ran into is that my class is called from different ...
1
vote
1answer
552 views

Debug Soap UI tool calls

We are planning to use SOAP UI Pro to test our Services (developed in c#.net) I am getting an error in the service and would like to debug the service call. I am not able to attach a breakpoint. Does ...
1
vote
1answer
684 views

C++ implicit function calls

Will c++ implicit function calls be a feature of C++0x ? It is an interesting feature, but I haven't seen any progress on this and the GCC C++0x page didn't even mention it. See ...
1
vote
2answers
4k views

flex 3 getting webserice call to wait for result

i have a function which retrieves values from a webservice , then loops through the returned values and for each returned value does another webservice lookup. Im having a problem however that when i ...
0
votes
1answer
17 views

Updating an entity object out of context requires 3 calls?

Scenario: I query for a record in a database using linq to entities. So I open a data context, do my linq query, and pass the returned object off to my business logic layer / presentation layer. ...
0
votes
0answers
45 views

CLR Profiler 4 - can't see the call graph

I've used CLR Profiler when it was 2.0 and I remember using it to see the calls graph. I've downloaded version 4 and ticked the "calls" but after I've finished I can't open the calls graph ...
0
votes
2answers
37 views

toast line is never called

I have an issue with one line in my code. When I press an image on the screen, it calls the powerButton.OnClickListener() like it's supposed to and, after a few seconds of buffering, the stream plays ...
0
votes
2answers
28 views

Where is Clone() method in Sched.h on Mac OS X

I can not find clone() in sched.h header file. Where is it on Mac OS X? Thank you !
0
votes
2answers
87 views

is there a tool that will detect a recursive function call in C code?

I need to search and eliminate recursive function calls in an inherited code base. thus far I was unable to find any tool that will do a static analysis and find these functions any one can help ...
0
votes
4answers
53 views

calling a function within the function inside the class in php

I don't understand what's going on with this. I need to call Func1 from Func2 and parametr for Func1 should be given inside the object. Please help. class MyClass { function Func1($a) { ...
0
votes
1answer
85 views

making calls without ACTION_CALL activity

Is there a way to make a call from my application, but keep my activity in focus? ACTION_CALL shows the call screen, but I want to show my screen instead, with my own control to end the call. Is ...
0
votes
1answer
64 views

I need to call my app when a call get missed in the android device

I have created a app which search for the recent missed call number in call log and send sms to that number. I need to automatically send a sms when a missed call occurs. After a missed call occurs in ...
0
votes
0answers
92 views

Call logs don't display the full number dialed

The call logs do not display the full dialed number on Android 2.3.3, but on 2.1 it does. On version 2.1 CallLog.Calls.NUMBER is equal to all the digits dialed but on version 2.3.3 ...
0
votes
1answer
139 views

Receiving calls with Sipek Voip SDK

I have been playing around with the Sipek Voip SDK and I am having trouble receiving calls with it. The tutorial online is less than helpful and I was wondering if anybody here has used it in the ...
0
votes
3answers
79 views

Factory Class making db/service calls

I need to refactor several long methods. In our app, we make a series of documents, all of the same kind with different values obtained from values in the app. All of that code is now in a helper ...
0
votes
0answers
45 views

using dtl library call to Stored Procedure

I am new to the dtl. Basically, I want to make a call to sqlserver storeProc from c++ program using dtl. The problem that I am having with is the output parameters returned from storeProc is ...
0
votes
2answers
141 views

SugarCRM SOAP: Logging and Closing “Calls”

I'm trying to log Telephone Calls made via Skype to SugarCRM. I've been able to get as far as hooking onto Skype Events, creating a Call record in Sugar via SOAP (with status as Held or Not Held). ...
0
votes
1answer
210 views

Android: call a separate class to return value

I am trying to store the value of the GPS coordinates that are in one class to another. Basically I have a button and currently I used an intent to change layout that displays the coordinates. I want ...
0
votes
2answers
228 views

redirecting system call output in python

I wish to execute os.system('ls') in python. the return value of this statement is an error code integer..but I want to get the contents of the present directory as a string. How to accomplish this?
0
votes
1answer
108 views

System Call problem on PHP

Having a bit of problem with this. Script A calls/includes Script B. Script B has to execute a system call and return to Script A. Fails in flames. When I call Script B on its own, it works just ...
0
votes
1answer
90 views

Performance difference between synchronous and AJAX calls

I have a normal http request (no ajax) and i return a response from server side. This takes around 350ms. The same response when returned through an ajax call takes only 50 ms. I checked also the ...
0
votes
0answers
226 views

How can I call a webservice from flex multiple times to retrieve data from sharepoint lists

Having trouble calling a webservice multiple times to retrieve sharepoint list data from flex. All I need to do is make multiple calls and get all the data into one array. The method GetData is ...
0
votes
1answer
305 views

Salesforce: Build report and chart for average daily calls by user

I need to build a dashboard chart based on a report that shows the average number of calls made daily by my sales team for 7 trailing days. Also, cannot use fixed number (7) as part of the formula, ...
0
votes
1answer
211 views

http Graph is Not Returning my Wall Posts From my fb page, but with fbFetch() and JSON it works fine

Retrieving my Own Wall Posts trough fbFetch() and JSON works fine, but trying to retrieve using Php and Curl is not giving me nothing.. But if i use fb page id from another fb page with the same ...
0
votes
2answers
157 views

fancybox - simulating a mouseclick issue

I am getting 2 different results when invoking fancybox from a click, and a simulated click. The code writes a link into the wrapper, uses that link to trigger the fancybox. That one is fine, it takes ...

1 2