The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

C# and VIX API issue - Invoking native code

I'm developing a C# application which loads a C++ dll which opens VMware Player using VIX APIs. If the C++ dll is loaded by a C++ application then the virtual machine is loaded without problems, while ...
0
votes
1answer
36 views

WebView not populating

I have a TextView which opens another layout with a webview in. I want the webview to populate with http://m.twitter.com However when the textview is clicked it opens the layout and then invokes the ...
0
votes
0answers
32 views

Manual invocation of Enterprise Library validation in WCF

When I use Enterprise Lib validation attributes and validation failed, a client gets an exception - the messege doesn`t reach the service, validation happens just before. Is there any possibility to ...
2
votes
2answers
63 views

Invoke Best Practice

Every time I update the view of my program from a thread other than the element was created from, I use: if (this.table.InvokeRequired) { this.table.Invoke(new MethodInvoker(delegate { ...
2
votes
1answer
58 views

How to invoke a method findLargest from Oracle Java Tutorials (Using an Interface as a Type)

I'm studying oracle tutorials and have a few questions regarding the chapter Using an "Interface as a Type" from here so I try to understand how to invoke the method findLargest. I've tried to modify ...
1
vote
2answers
131 views

invoking a java inside java different behavior under different OS

I have this code that calls java -cp somejar.jar com.company.mainClass. I am calling it using process builder. In windows, it works fine. In linux, I get the error Could not find or load main ...
0
votes
3answers
244 views

“Ambigous Match Found”

I've been trying to re-create BitConverter.GetBytes. However, every value type should be allowed to be passed. The method should then detect its type (Int32, Int16, Byte etc.) and dynamically call the ...
1
vote
0answers
323 views

Invoking a Web Service using Curl Script

How to invoke a Web Service using Curl Script but web service in turn should not return value. Curl Script should only invoke the Web Service?
3
votes
6answers
484 views

Java: Calling self-invoking method without freezing?

So this is really complicated, it took me a while to realize what's actually happening. Hopefully you understand it better than me though. I have a Swing class that displays the GUI. In the GUI i ...
2
votes
4answers
96 views

Why is it possible to access a field without a getter?

I have the following example: package cage; import java.util.HashSet; import java.util.Set; import animals.Animal; public class Cage<T extends Animal> { //A cage for some types of animals ...
0
votes
1answer
55 views

WCF Invoking From .Net 2.0 Applications

if there are more than one bindings ( ie in Web.config) in WCF Services, how to differentiate and consume Basic HTTP bindings from .net 2.0 Framework.
2
votes
1answer
1k views

javascript new self invoking function

Hey, I've got a question about self invoking functions in javascript. What I'm doing is something similar to the following myNamespace = {}; //namespace for holding any objects/functions ...
1
vote
4answers
198 views

Getting info about invoking class

Is it possible to get information about class that invoking the other one? class Bar{ public Bar{} public String getInvokingClassInfo(){ return "..."; } } class Foo{ public ...
1
vote
1answer
1k views

invoking a webbrowser to the second tab page visual c#

hey i am trying to create two webbrowsers on a sperate thread from the rest of the form. one goes to tabpage1 and the other is added to tabpage2. the first browser creates fine to page1 however the ...
0
votes
3answers
2k views

Execve problem with invoking

Why it doesn't work :( I want to simply invoke a shell in C program by execve: #include <stdio.h> #include <stdlib.h> #include <errno.h> main() { char* path = "/bin/sh"; ...
47
votes
3answers
52k views

How can I pass a reference to a function, with parameters? [duplicate]

Possible Duplicate: How can I pre-set arguments in JavaScript function call? (Partial Function Application) I need to able to pass a reference to a function with a given set of parameters. ...