Tagged Questions
The bridge tag has no wiki summary.
45
votes
6answers
21k views
Use C++ with Cocoa Instead of Objective-C?
I would like to write applications that use C++ and the Cocoa frameworks because Apple are not making Carbon 64-bit capable. C++ seems to be pretty vanilla in it's implementation on Linux and Windows ...
17
votes
6answers
4k views
What is the difference between the bridge pattern and the strategy pattern?
I tried to read many articles on dofactory, wikipedia and many sites.
I have no idea what the difference is between them.
I know both of them decouple an abstraction from its implementation and can ...
10
votes
1answer
331 views
Java Generics - Bridge method !
Something called the "bridge method" concept related to Java Generics made me stop at a point and think over it.
Btw, I only know that it occurs at the
bytecode level and is not available
...
8
votes
3answers
5k views
Mixing Qt with STL and Boost - are there any bridges to make it easy?
Are there any bridges to make mixing Qt with STL and Boost as seamless and easy as possible?
This is a followup to Mixing Qt and Boost, where no specific answers how to accomplish this were given.
8
votes
4answers
2k views
What is the best architecture to bridge to XMPP?
If I have a separate system with its own concept of users and presence, what is the most appropriate architecture for creating a bridge to an XMPP server network? As far as I can tell there are three ...
5
votes
2answers
97 views
Generate a UUID string with ARC enabled
I need to generate a UUID string in some code with ARC enabled.
After doing some research, this is what I came up with:
CFUUIDRef uuid = CFUUIDCreate(NULL);
NSString *uuidStr = (__bridge_transfer ...
5
votes
3answers
226 views
Is there a bi-directional bridge between p4 and git?
Is there a good (reliable and automated) method for moving git changes between perforce and git for multiple users? git-p4 seems to handle the single user case well but I'm looking for a multi user ...
5
votes
9answers
705 views
How can you interact with Perl programs from Ruby?
It's my understanding that there's no "bridge" between Ruby and Perl to let you call into Perl functions directly from Ruby. It's also my understanding that to call a Perl program from Ruby, you ...
5
votes
5answers
3k views
Calling Python from JavaScript
Is there a simple way to call Python libraries from JavaScript? Especially from the inside of a Firefox extension.
A good option to compile a pure Python library would also be great. I looked at ...
5
votes
3answers
1k views
Is there any JMX - REST bridge available?
Hi I would like to monitor a Java application using the browser but at the same time utilise the existing JMX infrastructe.
I know that JMX provides a HTTP interface but I think it provides a ...
5
votes
3answers
1k views
Know any creative ways to interface Python with Tcl?
Here's the situation. The company I work for has quite a bit of existing Tcl code, but some of them want to start using python. It would nice to be able to reuse some of the existing Tcl code, ...
5
votes
4answers
2k views
Query Windows Search from Java
I would like to get to query Windows Vista Search service directly ( or indirectly ) from Java.
I know it is possible to query using the search-ms: protocol, but I would like to consume the result ...
5
votes
2answers
290 views
How do you deploy from svn when your original repository is in Git
My team develops using Git, making good use of many of its features. We are measurably more efficient at using git that svn.
However our current client want us to deploy code from an svn repository, ...
4
votes
2answers
127 views
Bridge Pattern - benefit of compilation in Java?
It is said in Design Patterns - Elements of Reusable Object-Oriented Software book :
In situations where there's only one implementation (one-to-one) ,creating an
abstract implementor class ...
4
votes
2answers
79 views
Executing Objective-C from Ruby on Rails
I want to execute the following Objective-C code in my Rails application:
CFMutableStringRef inputString = CFStringCreateMutableCopy(kCFAllocatorDefault, 32, CFSTR("общей"));
CFLocaleRef locale = ...
4
votes
1answer
127 views
Writing Synthetic/Bridge method in java
I am writing an application which checks if the method is sythentic or bridge.
For testing this application I have added various methods in my stub.
But for none of the method this block is getting ...
4
votes
4answers
160 views
Generic bridge between C++ and PHP
We have a web application (quite a heavy-weight one) that does a whole bundle of stuff, web ui, mathematical processing and modelling, and database-related stuff.
A number of the processes that ...
4
votes
2answers
336 views
is there a way to call R functions from C# and retrieve the result in C#
is there a way to call R functions from C# and retrieve the result in C#
4
votes
1answer
61 views
Can I assume NSObject as a kind of CFType in Cocoa-touch?
I'm guessing NSObject is a kind of a CFType, but I have no sure. There is no mention about this in documentation. Can I assume it toll-free bridged?
4
votes
5answers
1k views
How to call java objects and functions from CPython?
I have a python program, which runs on the CPython implementation, and inside it I must call a function defined in a java program. How can I do this?
It would be nice to be able to use some java ...
3
votes
2answers
148 views
Bridge between Java and C#
I have been given a task to create a bridge between C# and Java. It was said that if we use C# right now, and then we receive a Java file from somewhere else, we should be able to convert that Java ...
3
votes
1answer
54 views
Can I bridge between a local mercurial repos and a remote bazaar repos?
I'm looking for the mercurial+bazaar equivalent of hg-git. I intend to use this for occasional cooperation to avoid learning the quirks and tricks surrounding YAVCS: I'd prefer to do use one client ...
3
votes
2answers
365 views
Bridge Pattern - Composition or Aggregation?
I'm reading some books about Design Patterns and while some describe the relation between the abstraction and the implementation as a composition, some describe it as an aggregation. Know I wonder: Is ...
3
votes
5answers
1k views
create iTunes playlist with scripting bridge
i am trying to create a new user playlist using the cocoa scripting bridge, but cannot seem to get it to work. i have so far:
iTunesApplication *iTunes = [SBApplication
...
3
votes
3answers
3k views
Creating a Mixed Mode C++ Bridge from C to C#?
I hope someone can help me with this, I'm mostly a C# developer so my
C and C++ skills are bad. I have a native C dll that is a plugin of a
larger application. I cross compile this dll for windows ...
2
votes
0answers
53 views
If I bridge two network cards, does the bridging happen at the OS level or the hardware level?
I've written a C# app which listens to a lot of multicast streams.
I'd like to run two copies of the program, one for recording, one for reacting to the data.
I'm curious: if I create a virtual ...
2
votes
2answers
106 views
Making C++ DLL for C#
I have made a very simple Dll like this:
extern "C"
{
__declspec(dllexport) int Try(int v)
{
return 10 + v;
}
}
Then I want to use it in my C# app:
class Program
{
...
2
votes
2answers
195 views
C++ to C# event handling
So I've got my C# WinForm Application, from it I call my C++ CLI MFC dll library.
But there are some events on my C++ library, even this events happens in native (non-CLI) part of this library. And I ...
2
votes
4answers
776 views
Automatic reference counting in xcode4.2 for iphone 5 was conflicted with __bridge
I wan't to create a simple project for study ios5.0 programing on xcode4.2. this is the original code:
NSString *path = [[NSBundle mainBundle] pathForResource:@"win" ofType:@"wav"];
NSURL* url = ...
2
votes
0answers
237 views
Pluto 2.0 + MyFaces Portlet bridge + JSF 2.0 Application
Recently I have explored the possibilities to integrate a regular JSF 2.0 application as a portlet a portlal.
The first thing I've done is downloaded Pluto 2.0 (bundled with tomcat) and Myfaces ...
2
votes
1answer
200 views
Java Access Bridge C#: Only MouseClicked event firing?
I've been messing around with the Java Access Bridge and have managed to get most of it working, with one exception: I can only hook the MouseClicked event within the java window.
This code:
...
2
votes
3answers
408 views
Strategy vs. Bridge Patterns
I know this question's been asked before (e.g., What is the difference between the bridge pattern and the strategy pattern?).
However, could someone please explain, using clear-cut examples, what the ...
2
votes
2answers
149 views
Core Data Modelling: Many-to-Many Bridge
This issue may be raised for times here, but I did not get a confident solution. Here is the case, in Objective-C, Core Data, for iOS.
I am going to model a twitter-like User-Following relationship, ...
2
votes
1answer
219 views
AesCryptoServiceProvider alternate in .Net 2.0
What id the alternate of AesCryptoServiceProvider (that existed in system.Core -.net 4-) in .net 2.0??
2
votes
1answer
660 views
Need full example on this topic: QtWebKit Bridge
I am new to Qt and currently I am doing some stuff on this topic: http://doc.qt.nokia.com/4.7-snapshot/qtwebkit-bridge.html
What I am trying to do is:
create a JS object that maps to a C++ class ...
2
votes
2answers
816 views
How to build n-layered web architecture with PHP?
I'm dealing with the 3-tier architecture PHP website.
Now,i need to redesign it to suрроrt distributed n-tier architecture.After long hours of research i came to this solution: business logic should ...
2
votes
2answers
686 views
Query Mac OS X Spotlight from Java
Related to:
Query Windows Search from Java
But this time to use OSX's spotlight
I would like to consume OSX spotlight service from Java. Is there an API available?
Thanks.
2
votes
1answer
1k views
JSF Faces Bridge get java.lang.NullPointerException when deploying to oc4j container
I am running JDeveloper 10.1.3.4 with the webcenter pre-configured oc4j.
I'm trying to portletize a vanilla JSF webcenter project.
I create a application using the webcenter application template.
...
2
votes
4answers
581 views
Extending both sides of a Visitor/Bridge pattern
Say I have a hierarchy of classes, let's use the classic Shape examples:
abstract class Shape
Circle : Shape
Square : Shape
I have a second hierarchy of renderer classes that handle the rendering ...
1
vote
1answer
193 views
Implicit conversion of an Objective-C pointer is disallowed with ARC
I'm playing around with this Chipmunk Tutorial and I'm running into a problem with the following code (in section 5):
// Create our shape associated with the ball's body
cpShape *ballShape = ...
1
vote
2answers
120 views
Liferay portlet deployment - class cast exception
I am new to portlets and I am trying to build one from my JSF 2.0 app. I am using liferay-portal-tomcat-6.1.0-ce-b4, JSF 2.1.3 and PortletFaces bridge 2.0.1.
When I try to install the portlet into ...
1
vote
1answer
39 views
Error when trying to implement the Bridge pattern in Java
I want to pass a Shape object to ShapeImp object like Vector or Raster. Error comes when trying to pass "this" from inside constructors of Circle and Square. I want to pass the concrete shapes to ...
1
vote
1answer
82 views
Objective C Scripting Bridge with FileMaker Pro 11
I'm trying to use scripting bridge to communicate with FileMaker pro 11, I can get it to launch the App, open the correct database file but can't get any further.
Has anyone got an example scripting ...
1
vote
1answer
58 views
How to have Xcode not care about errors coming back from a custom script (/dev/null)?
I have a custom script in Xcode which returns an error, but, say, I don't care. Xcode don't care about /dev/null and won't compile :( Tip?
sdef "$INPUT_FILE_PATH" | sdp -fh -o "$DERIVED_FILES_DIR"
...
1
vote
1answer
122 views
Is it practical to call vbscript functions from Ruby using win32ole?
Is it practical to call a VBScript function, such as VBScript's Chr(charcode), from Ruby using win32ole?
Background: While working out how to add some nicely formatted headers to an excel worksheet, ...
1
vote
0answers
197 views
How to test L2 Switch (Bridge Util) on Linux [closed]
I downloaded and installed Bridge-Utils from:
http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
Now, I want to add some more features to this Bridge-Utils code, and testing new ...
1
vote
2answers
178 views
Multiple Interfaces extending in Java
I need to implement Facade design pattern with multiple inheritance of interfaces in Java or to be correct Facade with Bridge design pattern . I know this is possible because I saw it in as a part of ...
1
vote
0answers
268 views
WebSphere Portal 6.1 + WAS 6.1 + Myfaces Portlet Bridge
Does anyone know how to replace the IBM JSF Portlet Bridge with Myfaces Portlet Bridge 2.0? I want to set up a small local testing environment. Pluto + Tomcat + Myfaces Portlet Bridge.
My Portlets are ...
1
vote
1answer
273 views
HQL query - pulling data through a bridge relationship
I am having trouble with a relatively simple HQL query being called from a jsp page through a javaBean. I am just setting things up for testing at the moment to make sure I know how to do everything ...
1
vote
0answers
123 views
python and objc bridge in an existing application
I resently started programming in objc and I was wandering how can I use python code in an existing objc application. I found some threads in this site and some others but they didn't help me at all. ...