Decouple an abstraction from its implementation so that the two can vary independently.

learn more… | top users | synonyms

-1
votes
1answer
36 views

Communicating between a running Ruby and Java program [closed]

I want to run a Java program and a Ruby program both all the time, and if needed I want both to communicate with each other, without having one program to call the other each time it's needed (like ...
0
votes
0answers
36 views

How to identify that one of the bridge interfaces(SW bridge in linux) is down? [migrated]

I have a board. This board have two interfaces one eth0 and other usb0. eth0 port is connected with network. and usb0 port is connected to another device With the help of bridge-utils, I am able to ...
-1
votes
0answers
25 views

MS Access 2010 data entry form with intersection/bridge table [closed]

I'm creating a database for a soccer league in Microsoft Access, and the three tables I'm having problems with are as follows: PLAYER(PlayerNum, PlayerFirstName, PlayerLastName, DOB, Gender, Address, ...
0
votes
0answers
80 views

JavaFX initializing JS-Java bridge when using FXMLLoader

I'm loading my JavaFx app with the FMXLLoader. My fxml contains a custom browser element which displays a map with Openlayers. I have to interact between the map and the Java application and therefore ...
0
votes
0answers
24 views

Replacing the Bridge pattern with a Data Mapper?

In my last project the mapping between the domain objects and the GUI elements was supported by the Bridge pattern. Now I am a starting a fresh new project and can already foresee the need of a Bridge ...
0
votes
0answers
35 views

Network Bridge using Wireless Adapter Windows 7

It's normal that netsh bridge show adapter doesn't give me any results? I am using my wireless adapter of personal laptop. Maybe its normal, its because my adapter don't allow promiscuous mode? How ...
0
votes
0answers
33 views

How to integrate wordpress users accounts from one page with non-wordpress other page

First of all I'd like thank you all for reading this topic. You're terrific audience. I'm developing CakePHP application and there is WordPress page which stores users data. I'd like to use those ...
0
votes
1answer
83 views

Bridge determination in undirected graphs

I need to determine all critical edges in an undirected graph, in O(V+E) time. From what I found out, I need to use a modified DF search, but all pseudo-code algorithms I found have low[v] and d[v] ...
1
vote
0answers
107 views

Qt Webkit Bridge: C++ access to JavaScript

I am using a QWebView and call to setHtml() to display some HTML/JavaScript pages. I am passing data updates using QWebFrame::evaluateJavaScript by passing it a QString containing a call to a ...
0
votes
2answers
104 views

NDIS 6.x ethernet bridge driver

I was wondering what would be the best choice and way to build an ethernet bridge using NDIS 6.x. Where should I start and which one should I use for this, Miniport, IM, protocol or filter driver? ...
0
votes
1answer
34 views

Which Hibernate ( or NHiberate) tags and/or mapping classes would I use to create mappings to the bridge table called contract?

Let's say I have a bridge table with more than two foreign keys that make up it's composite key. For Example, Goverment table gov_id int primary key cournty_name String NonProfitOrg Table ...
0
votes
1answer
79 views

Connect IOIO Bridge with android_x86 in Virtualbox

Situation: Connecting IOIO Bridge to android_x86 in Virtualbox *adb connected to 10.10.10.3:5555 (where 10.10.10.3 is VBox)* adb forward tcp:4545 tcp:5555 java -jar ioiobridge.jar COM3 The ...
0
votes
0answers
131 views

C++ Finding Bridge in undirected Graph

First of all , this is not a homework just found this java code over the net and want to convert it to c++ but it's not working and i don't know why. so here the java code : public class Bridge { ...
0
votes
1answer
227 views

Finding Bridges in undirected Graph?

A bridge in a graph means if we remove it the graph will be disconnected ! so i want to know if there is way to find all bridges in a graph : here is an example : input 12 15 1 2 1 3 ...
1
vote
1answer
80 views

How to force vmware to bridge over ethernet and not wlan

I have a Linux Mint host system and a VMware guest system with Linux Debian. On my host system there are two physical network interfaces eth0 and wlan0. My guest system is set up to use its network ...
-1
votes
2answers
137 views

Objective-C cast from (_bridge const void*) type to (NSString*) [closed]

I'm working on an iPhone application and I have extract a value from a method that is of type _bridge const void *. But I need that this value to be converted to type NSString. I saw that a classic ...
1
vote
2answers
34 views

How to use bridge for CLLocationCoordinate2D

AM trying to add CLLocationCoordinate2D[] to NSMutableArray and send it as parameter. But (__bridge id) is crashing the app. Struct to id conversion is the problem. Could anyone please let me know how ...
0
votes
0answers
31 views

Bridge concept , Questions about building scalable bridge

I built a net.TCP WCF which play as a bridge between 2 clients. My concern is the scale how I can do that if I get 1 million users, so I have few questions and hope get answers: Is there better way ...
0
votes
0answers
258 views

VMs behind virtualized pfSense with KVM

My current setup is as follows: Host: Debian Squeeze GNU/Linux with KVM VM-FW: pfSense firewall virtual machine VM-NAS: NAS4FREE virtual machine My goal is to isolate all virtual machines, except ...
0
votes
3answers
120 views

How to execute java functions/script in PHP

I have a system which is implemented using PHP(Joomla). Now the client wants to integrate a SMS gateway. Unfortunately SMS gateway does not supoort PHP. It's written in Java and All the examples are ...
1
vote
0answers
87 views

nodejs phantomjs bridge, to send form and to get results

I'm using node.js with phantomjs by phantomjs-node bridge. The question: I open a page, e with the page.evaluate function I fill a form and I submit it. Now I need to retrieve data from the page which ...
1
vote
3answers
97 views

passing a pointer to an object inside of an NSArray using ARC

I'm converting to ARC, and can't find any way to get rid of this compiler error without breaking the code as well. I need to pass 2 objects into a selector so I add them both to an array as shown ...
0
votes
1answer
65 views

Modify data in MSAccess before passing on to SQL Table

I have set up an Access database with a linked table to an SQL table. I've created a query in Access off the linked table. I have shipping software that i've set up to export data to the Access query ...
0
votes
0answers
45 views

Bridge partially working in linux [closed]

I've attempted to create an ethernet bridge on my raspberry Pi using a usb to ethernet adaptor and the built in adaptor. i've managed to get this to work fine when manually typing in the command on ...
0
votes
0answers
52 views

QtWebkit Bridge, unexpectedly closing when accessing QImage

I'm trying to allow access to a qimage using qtwebkit bridge through javascript. However, when I try to access it using the inspector I get "The program has unexpectedly finished". Am I accessing the ...
0
votes
0answers
85 views

Bridging two home networks over internet ( Including Intelligent devices like TVs, DVD Camera etc )

Hi I am looking for a way to bridge two home networks over internet. As most of the devices have iphone/android remote app ( tv, roku box etc ) i would like to perform this: Iphone/Andorid app ...
0
votes
0answers
134 views

PHP Proxy/TCP/IP Bridge

I'm looking for a php proxy but not a html one. I mean, there is many php proxy which allow you to go to the proxy, enter an URL and see the content. This is not what I need. What I'm looking for ...
1
vote
1answer
178 views

Bridging Ajaxplorer with Joomla 3.0

I have downloaded the latest releases of Joomla (3.0.2) and Ajaxplorer (4.2.3). I am trying to bridge the two for authentication purposes and have run into a snag. The current auth bridge is for ...
0
votes
0answers
22 views

Thunderbird and Firefox search bridge

I'd like to create an Thunderbird and Firefox extension that could use Firefox search-bar or specially scripted links like: <a href="mailsearch:variable"> to use Thunderbirds mail search ...
0
votes
0answers
45 views

Is Join QUERY possible using the JDBC ODBC bridge?

when I run the following query from the java program I don't get any data in the resultset. rs = stmt.executeQuery("select * from persons join orders where persons.P_Id=orders.P_Id;"); But I got ...
1
vote
1answer
62 views

Access .Net classes from C++?

I'm currently trying to expose a scripting language (similar to Forth, but not quite) written in C++, to C# and vice versa. Exposing C++ to C# is not difficult, and I already know how to do that. ...
0
votes
0answers
69 views

Connect C++ application with

These days I'm trying to implement gesture recognition system. I done my core application using visual C++ and decide to use HMM as recognition tool. In HMM case I found excellent toolkit call GART. ...
1
vote
2answers
121 views

Duplicate message detection does not work correctly in HornetQ core bridge

I have two source servers server#0 and server#1, and a target server server#2. Each source servers have a core bridge to connect to server#2. (All servers are standalone and 2.2.14) server#0 have a ...
1
vote
2answers
139 views

network traffic between two bridged eth cards on linux- when one side is disconnected [closed]

Network <---->[eth0]< = = bridge = = >[eth1]------>loose end I have a server, on which there are 2 eth cards. Linux is installed. Two of the eth cards are bridged, so all the traffic that eth0 ...
0
votes
2answers
157 views

Running JMS Bridge with HornetQ

I have two standalone HornetQ servers on same the machine! I followed jms-bridge example in HornetQ examples for configuring source server and target server (I copied configurations from example to my ...
3
votes
1answer
203 views

Xcode 4.5.1: Linker Error: NSJavaVirtualMachine, symbol not found for architecture i386

I am trying to call a Java class from an objective C, iPhone 5 application. I am using Xcode 4.5.1. At this stage, I can't even load the Virtual Machine without the following error: Undefined symbols ...
0
votes
1answer
221 views

writing NSData to file, get error unrecognized selector sent to instance

I have problem to write data to file. What I'm doing wrong? SecTrustRef trust = [protectionSpace serverTrust]; SecCertificateRef certificate = SecTrustGetCertificateAtIndex(trust, 0); NSData* ...
0
votes
0answers
97 views

KVM bridged network [closed]

I have a local network with a dhcp router connected to ISP. In a node I have few KVM virtual machines (working fine with NAT). In order to ssh them from the any node inside my local network I need ...
1
vote
0answers
47 views

Unable to start Bridge server - Ubuntu

I have been able to get bridge up and running on my local macbook, however I run into problems when trying to set it up on my ubuntu box hosted on Linode. I installed rabbitmq using apt-get install ...
0
votes
0answers
130 views

How to block Hotspot bridge between Wifi and 3G on Android

I have a Samsung Galaxy S2 with Android. (Rooted) I have installed a VNC server to control my phone over the PC (Windows). The only way to connect to my phone (besides USB) is with the Android ...
0
votes
1answer
205 views

how to integrate SMF with CodeIgniter?

I am working on a project that will solely use the SMF member system. Meaning that SMF is the only member system that I am using to have logins, not my own system along with SMF, just plain SMF. ...
0
votes
3answers
100 views

Desing Pattern for DB Enacapsulation - Brigde Vs Abstract Factory [closed]

Few days back, our team was having discussion on design patterns for flexible DB implementation - Oracle, MYSql etc. We discussed Bridge pattern and Abstract Factory pattern. I was in favor of ...
0
votes
1answer
116 views

Synergy over a LAN bridge in Windows 7 64-bit, connection timing out [closed]

I haven't seen a question like this anywhere, so I hope it isn't a duplicate. Anyway, I have two computers, and one of them has its network connection through a LAN bridge in the other, which goes to ...
0
votes
1answer
195 views

code-behind/stylesheet bridge in ASP.NET? add a style to a css selector in code-behind in ASP.NET?

I need to know whether it's possible for ASP.NET server-side code to reference a stylesheet that is in effect on a given page. Is it possible in ASP.NET code-behind to get a reference to an existing ...
0
votes
0answers
172 views

Hardware solution for ad-hoc “bridge” (e.g. Android -> Brookstone Rover) [closed]

Is there any hardware solution available, that provides WiFi AP access to an unrooted Android phone and which functions like a "bridge" to an ad-hoc network device? I imagine this would be a little ...
0
votes
0answers
296 views

Ubuntu 12.04 - Run 2 WiFi networks, with a third bridged off

I've got an odd setup, and just want to run it by you guys to see if it's possible before I invest TOO much time into it(I'm still pretty new to linux). I have a Ubuntu 12.04 desktop which I have dual ...
1
vote
0answers
888 views

Transferring incoming communication to another computer

I have two computers, A and B. On computer A, I want to be able to specify for certain ports that incoming traffic from computers will be automatically routed to a different port on computer B as if ...
0
votes
0answers
69 views

how to configure network bridge for proper internet sharing?

I have bridged a Local Area Connection provided by the hostel and an ad-hoc wireless network made by me. In the network bridge, the TCP/IPv4 settings are configured manually. One of my friends has a ...
0
votes
0answers
84 views

Calling Python trips an error from Objective-C

I have been reading everything I could find on using the Python Objective c bridge. My main app is in Objective C. At this stage I just want to be able to call functions in Python. I think there is ...
2
votes
0answers
91 views

Use Qt-based lib in gtk framework

We're trying to find out how I can use the Qt code we wrote in a gtk-based application. Rumour has it that adapters are possible, in less than 600 LoC, but apparently all links lead to web pages ...

1 2