The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
32 views

Multiple function invocations in javascript ie combine(foo)(bar)

I have seen in the past that you can do something like this: function combine(arg1){ return function(arg2){ return (arg1 + arg2); }; } combine("foo")("bar"); And the result will be ...
0
votes
0answers
40 views

Java Bean @Schedule annotation - trigger a new method execution before the previous is over

Is it possible to create a bean method that has @Schedule annotation for example: @Schedule(minute = "", second = "1,11,21,31,41,51", dayOfMonth = "", month = "", year = "", hour = "", dayOfWeek = ...
0
votes
2answers
37 views

Is it somehow possible to create a typeof-like function

I made a more accurate typeof-function and want to use it like the default typeof-operator. Currenty I call my typeOf()-function like every other function: typeOf("foo"), however is it possible to get ...
1
vote
1answer
97 views

Programmatically set invocation property in mule

I'm trying to set an invocation property in Mule 3.3.1 to be used in a "Choice" flow control. My flow has a transformer (extending the AbstractTransformer) and in it I'd like to set an invocation ...
1
vote
1answer
139 views

JavaScript function invocation in Java Code

I pass a function from JavaScript file into Java code. JavaScript function looks like: entity.handler = function(arg1, arg2) { //do something }; In Java code the class implements the Scriptable ...
0
votes
1answer
57 views

How to mock a class which calls an invokation block?

I'm digging myself into TDD and startet using SenTestingKit along with OCMock. I'm using FMDB as a wrapper for my SQLite Database. I can't get my head around how to mock the DatabaseQueue class, so ...
0
votes
0answers
164 views

Powershell GUI invoking the call operator

I am attempting to use a call/invocation (&) operator within a PowerShell (v2.0) GUI and the command being called needs to interact with the user. This works fine in the standard shell (because ...
0
votes
1answer
53 views

Wordpress + OpenX PHP invocation = headers already sent

We have a small Wordpress portal that uses local OpenX installation for its advertising needs. The WP theme was built using PHP invocation code for OpenX zones and here lies the problem. In one of the ...
1
vote
1answer
176 views

Core dump following g++ compilation + link with jni and subsequent execution of application using C++ and Java

I require to execute some arbitrary Java code from within C++. I am utilizing the JNI for this but have encountered an issue. The C++ file compiles fine, however upon execution the following is ...
1
vote
1answer
183 views

Assuring multicast delegate execution list order in C#?

After doing some reading I understand that handlers invocation order is the same order as subscribed but it is not guaranteed . So lets say I have : public event MYDEl ev; and subscribers do : ...
4
votes
6answers
113 views

Issue about casting object brackets

I have notice that there is two way to write object casting the different is the brackets place of the property. 1. SimpleType simpleTypee = ((SimpleType) (property.getType())); 2. SimpleType ...
4
votes
1answer
84 views

Throwing exception by InvocationHandler

I have a lock manager as a proxy class which implements InvocationHandler, I want this lock manager to throw exceptions (e.g. DeadLockException) to the object which is calling this proxy object, and ...
0
votes
1answer
37 views

Several Interfaces for one InvocationHandler

Is it possible to define ONE invocationhandler (proxy) for SEVERAL objects with different interfaces ? Because what this proxy does(all the checkings & etc.) on the objects are same (and they ...
2
votes
0answers
119 views

Undefined symbols for architecture i386 linker command failed with exit code 1 (use -v to see invocation)

I have looked through other questions that had similar issues, but I still can't figure out what is wrong. This is my first app and the other answers didn't make much sense. I keep getting the same ...
0
votes
0answers
50 views

What are really Stack Invocation Records?

I am learning Java and I am pretty good with programming and stuff. However, I never get these theory things (I also think my university's/professor's explanation is not clear enough.) What is a ...
1
vote
1answer
118 views

PHPUnit - When is a method counted as 'executed'/'called' by invocation count?

I got a problem with my PHPUnit test. I have a method like: public function bla() { $this->blub(); } $_testObject is a mocked instance of Foo, like this: public function setUp() { ...
0
votes
1answer
216 views

I want to invoke C# script in my aspx webpage, help me implement it

I want to invoke a C# code into my aspx webpage. Can someone please show me how to do this? C# code is very long, I saved it in a .cs file and put it into the web directory along with the web page ...
0
votes
3answers
994 views

Java explicit constructor invocation & Instance Initializer

In The Java Tutorials - Initializing Fields, have a description about Instance Initialization Blocks(Instance Initializer): The Java compiler copies initializer blocks into every constructor. ...
0
votes
0answers
72 views

for invokespecial,why “objectref must be either the current class or a subclass of the current class” if the resolved method is protected

In the JVM specification, there is a requirement for the invokespecial instruction: "if the resolved method is protected, and it is either a member of the current class or a member of a superclass of ...
4
votes
2answers
102 views

python encoding error only when called as external process

A simple file like $ cat x.py x = u'Gen\xe8ve' print x when run will give me: $ python x.py Genève however, when run as a "command substitution" will give: $ echo $(python x.py) ... ...
0
votes
3answers
120 views

Custom Attribute invocation

I am trying with the Debugger to stop when a method attribute is invoked, but I am never seems to get to the break point. Am I missing something here? [SecurityImpl("test")] public void test() { } ...
0
votes
1answer
126 views

Application halting when use MethodInvoker in custom timer

this is my first post here, so if I don't know the posting rules, sorry... Background: I need a high resolution Timer for an embedded system solution, so decide to use MicroTimer from ...
0
votes
1answer
171 views

How to determine the Method invoked by an InvokeInstruction (BCEL)?

I am trying to determine the MethodGen of the callee for a given InvokeInstruction in the BCEL library. The problem is that I don't know how to use the InvokeInstruction to get to the MethodGen that ...
0
votes
1answer
156 views

Xcode build problems

I'm getting these feedbacks for two errors I keep getting when I try to "build" (which fails): (this project built & ran fine before I upgraded my IOS device to 5.1 -- I can't even use the ...
1
vote
1answer
253 views

Why are certain function calls termed “illegal invocations” in JavaScript?

For example, if I do this: var q = document.querySelectorAll; q('body'); I get an "Illegal invocation" error in Chrome. I can't think of any reason why this is necessary. For one, it's not the ...
1
vote
0answers
100 views

Invocation on delegate is not called while applicationWillResignActive

I have an application with some ViewController pushed. I login at a JSON webservice, get some data and do some work while the application is active. When the app is closed or moved to background I ...
0
votes
1answer
294 views

How to invoke cron job from php script?

I wanted to set cron job from php script file. I can able to execute php file using shell_exec() function. But Im not able to run cron job related commands. $output = shell_exec("crontab -l"); this ...
3
votes
1answer
88 views

Calling delegates in a boxing-like fashion

I have often seen code examples of delegate invocation being done as follows: ` public delegate void DelegateThreadActivity<T, U> (T sender, U e); public event ...
1
vote
1answer
826 views

Mockito.verify selective methods call

In my application, I have code that looks like - request.setParameter("a",false);//line1 request.setParameter("b",someObject);//line2 request.setParameter("c",someObject);//line3 ...
1
vote
1answer
677 views

Updating UI from background threads

Yet another question about updating from background threads. To get to the point: In the application, background threads need to update UI. I've considered using an in-between collection to buffer ...
1
vote
0answers
505 views

c# best practice to raise event

I am trying to summarize all approaches to raise an event by introducing utility class. Would appreciate any feedback on the below implementation. The idea of the developed helpers is to provide ...
2
votes
4answers
179 views

Declaring variables in the arguments to a function in C

I have a sort of bizarre wish; I don't know if any compiler or language extension out there allows this. I want to be able to declare variables inside a function invocation, like this: int test(int ...
-4
votes
1answer
157 views

NullPointerException at method

import java.util.Random; import java.util. * ; public class shooter { int myHP = 100; int enHP = 100; int myBAND = 5; int enBAND = 5; int turn = 10; public void main(String ...
1
vote
1answer
178 views

How to pass Null\Void instead of an array?

Having some invokeMethod that takes in (java.lang.String method_name, Object[] params, Class[] params_classes) How would you invoke some method with signature like ...
4
votes
2answers
158 views

In javascript what does ( … ) do exactly [duplicate]

Possible Duplicate: What do parentheses surrounding a JavaScript object/function/class declaration mean? Recently discussing with a colleague which is best (function(){...}()) or ...
3
votes
2answers
305 views

Cost of nested method invocation in Java

My assumption is that, with compiler optimization (e.g., inlining), it makes practically no difference whether a method is "nested" a few levels. Would that be the case indeed? For example, say that ...
2
votes
2answers
2k views

Uncaught TypeError: Illegal invocation in javascript

I'm creating a lambda function that executes a second function with a concrete params.This code works in Firefox but not in Chrome, its inspector shows a weird error, Uncaught TypeError: Illegal ...
1
vote
1answer
998 views

Use JAR file in c++/c [duplicate]

Possible Duplicate: How to access the Java method in a C++ application I need to use JAR file in c++ program. i.e. from c++ i need to call java function, for example, In java there is ...
0
votes
0answers
93 views

An incorrect number of type args were specified for the declaration of a Func type

I am working on a Dynamic Proxy generation utility. It will take a Service (WSDL) URL, method name and parameter collection. I am able to create the proxy, but when I try to invoke the method on the ...
0
votes
0answers
55 views

with NSInvocation causing SIGABRT

I've followed a few tutorials and I cant seem to adapt them to my needs. Simply I have a manager objects that returns a NSInvocation to be stored and invoked at a later point in the app. and when I ...
4
votes
1answer
129 views

How do I invoke this function with JavaScript?

I am just working with basic level of javascripts. Today I found the below and for scrolling down DIV layer when new data adds to DIV. I couldn't understand how to Call the function. Is it to be used ...
1
vote
1answer
392 views

XamlParseException stopping project

I am learning C# 2010 using the book 'Microsoft VS C# 2010 Step by Step' whose Chapter 27 introduces the Task Parallel Library. When I run the provided 'GraphDemo' project, I get an XamlParseException ...
0
votes
1answer
97 views

thor incorrectly called exception

class B12 < Thor desc "write", "write data into the index" method_option :methods, :desc => "The methods to call on each RawData", :type => :array def write(methods) end end When I ...
4
votes
3answers
160 views

What environment variables affect the 'java' binary?

Most unix commands whose operation changes based on values of environment variables have a section "ENVIRONMENT VARIABLES" in their man page. No such luck for the java binary (Sun/Oracle Java 6), ...
0
votes
1answer
264 views

Getting “raw” xml from webservice

I'm trying to to generate web service proxy class using ServiceContractGenerator. But the problem is that i want to recieve a "raw" xml from webservice (it may be a string or XmlNode, doesnt matter). ...
16
votes
9answers
3k views

Looking for a convenient way to call Java from C++

It seems most documentation or helper libraries relating to JNI (Java Native Interface) are concerned with calling native code from Java. This seems to be the main use of it, even though it is capable ...
1
vote
1answer
66 views

Is registering / unregistering to a .NET event a constant time operation?

Initially, I had assumed yes, because I understood that the invocation list for a multi-cast delegate is implemented as a linked list, which supports constant time insertion and deletion. However, ...
0
votes
2answers
332 views

Java ordering of method invocation, within abstract data types?

What is the ordering of method invocation when you have an abstract class with method behaviour implemented and also when no behaviour is implemented? Lets say my abstract class is called Abs and it ...
1
vote
0answers
145 views

Debugger behaviour changes between vs2008 and vs2010

I'm struggling with the behavioural difference between the visual studio 2008, and 2010 debugger. In 2008, with the debugger attached, the code below would not stop to show an unhandled exception at ...
3
votes
1answer
490 views

Calling a Scheme function using its name from a list

Is it possible to call a Scheme function using only the function name that is available say as a string in a list? Example (define (somefunc x y) (+ (* 2 (expt x 2)) (* 3 y) 1)) (define ...

1 2