Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
1k views

Can you explain me what is a Proxy in Doctrine 2?

I just finished to read all the documentation of Doctrine 2, I started my own sandbox, I understood most of the principes, but there is still a question and I couldn't find any complete explanation in ...
8
votes
5answers
7k views

Fixing BeanNotOfRequiredTypeException on Spring proxy cast on a non-singleton bean?

I'm having an issue with pulling a Spring bean from an application context. When I try; InnerThread instance = (InnerThread) SpringContextFactory.getApplicationContext().getBean("innerThread", ...
7
votes
3answers
115 views

Passing temporaries as non-const references in C++

I have the following piece of code, as an example dec_proxy attempts to reverse the effects of the increment operator upon the type that is executed in a complex function call foo - which btw I cannot ...
6
votes
4answers
202 views

Java/JSF/Tomcat/Spring - Proxy-Object has different methods than original object

today I ran into this problem which really bugs me, as almost the code already worked (and stopped working even after reverting to the older version). I'm accessing a Spring-Bean on a Facelets-Page. ...
6
votes
4answers
2k views

Dynamically generate classes at runtime in php?

Here's what I want to do: $clsName = substr(md5(rand()),0,10); //generate a random name $cls = new $clsName(); //create a new instance function __autoload($class_name) { //define that instance ...
5
votes
1answer
160 views

Incorrect view of custom hierarchical model when set proxy model that swap columns

I have custom hierarchical model, inherited from QAbstractModelItem. Also, I implement MySortFilterProxyModel subclassed from QSortFilterProxyModel. MySortFilterProxyModel can remove and swap columns. ...
5
votes
3answers
440 views

Right way to return proxy model instance from a base model instance in Django?

Say I have models: class Animal(models.Model): type = models.CharField(max_length=255) class Dog(Animal): def make_sound(self): print "Woof!" class Meta: proxy = True ...
5
votes
4answers
2k views

Force .NET webservice to use local object class, not proxy class

I have a webservice that I'm calling from a windows forms application (both .NET, both in the same solution), and I'd like my webservice to return a custom object from elsewhere in the project - it's ...
4
votes
2answers
631 views

Can I stop service reference generating ArrayOfString instead of string[]?

I have a web method with a signature like this: public string[] ToUpper(string[] values) I am using the 'Add Service reference' in Visual Studio 2010 to generate a reference to my service. ...
4
votes
1answer
133 views

Under what conditions will `RealProxy.GetTransparentProxy()` return `null`?

The documentation at http://msdn.microsoft.com/en-us/library/system.runtime.remoting.proxies.realproxy.gettransparentproxy%28v=VS.100%29.aspx doesn't indicate a scenario where GetTransparentProxy will ...
4
votes
1answer
2k views

NHibernate Get objects without proxy

I am using NHibernate(2.0.1.4) with NHibernate.Linq(1.0.0.4) to get Objects of the type Node from the Database. When I get these objects, the last object of the collection I got is of the type Proxy ...
3
votes
1answer
37 views

Why are pure inheritance based proxies bad in AoP

I have a problem making method calls between methods in same class and having transaction advice apply. Spring Framework .NET documentation states that it supports compositional and inheritance based ...
3
votes
2answers
73 views

How do I automatically cast a class instance to Float in Ruby?

I have an Angle class that I want to behave like a float, with additional behavior. I have created the class to contain a float and proxy all unknown methods to it: class Angle include Math def ...
3
votes
6answers
102 views

How can I add similar functionality to a number of methods in java?

I have a lot of methods for logging, like logSomeAction, logAnotherAction etc. Now I want all these methods make a small pause after printing messages (Thread.sleep). If I do it manually, I would do ...
3
votes
3answers
211 views

Why Can I Change the Registry only the First Time?

I am a hobbyist programmer, and I am attempting to write an application that automatically changes the proxy server based upon what network connection is active. In this application, the user can also ...
3
votes
3answers
2k views

How do I serialize all properties of an NHibernate-mapped object?

I have some web methods that return my objects back as serialized XML. It is only serializing the NHibernate-mapped properties of the object... anyone have some insight? It seems to be that the web ...
3
votes
1answer
2k views

Alternatives to wsdl.exe for creating proxy classes from wsdl

wsdl.exe, appears to be the default tool for .Net to generate proxy class from wsdl. It has known problems (see here and here, also some SO questions). Is there an alternative proxy class generator? ...
3
votes
2answers
2k views

Wcf Service Proxy Name / Namespace naming strategy

Anyone have a naming strategy that works well for service proxy classes? For example, if I am given three web services within two projects as follows: XWs AService.asmx YWs BService.svc ...
3
votes
1answer
1k views

dynamic proxies with jmx can cause thread leaks?

I have a problem in Java where I set up a dynamic proxy with a JMX interface, pass this on to another component which then makes calls to the proxy object. When I do this, the application leaks two ...
3
votes
2answers
1k views

What is a .NET proxy object in the Inversion of Control / Aspect-Oriented sense?

What is a proxy object in the Inversion of Control / Aspect-Oriented sense? Any good articles on what a proxy object is ? Why you would want to use one ? And how to write one in C# ?
2
votes
1answer
86 views

NHibernate ObjectProxy casting with Lazy Loading

I defines: [ActiveRecord("BaseEntity", Lazy = true )] class BaseClass {} [ActiveRecord("DerivedEntity", Lazy = true )] class DerivedClass : BaseClass {} In DB BaseEntity and DerivedEntity are 1=1 ...
2
votes
1answer
161 views

wsimport forgets one proxy class

I use wsimport to generate the proxy classes from the WSDL file. Class A gets generated, but the class B which corresponds to the A's parameter for its constructor - not. What could be the reason for ...
2
votes
5answers
152 views

Is a proxy class the same as a class wrapper?

I have to access a legacy database that has "generic" tables in it and I do not have the authority to change it. Depending on the customer data that I'm working with, the relationships between the ...
2
votes
3answers
105 views

How to create a NHibernate proxy object with some initiliazed fields (other than Id)?

I want to create an object proxy, similar to what ISession.Load is returning, but with some fields initialized. For other properties, when accessed, the proxy will fetch the entire object from ...
2
votes
1answer
206 views

Web service not handling multiple simultaneous request from same application with proxy class

I have an application scheduling multiple tasks which are calling different web services, some the same web service but different method. Each task is executed in an interval and each task is running ...
2
votes
2answers
262 views

Method parameter is missing in WCF proxy class

I have a WCF method defined as below: [OperationContract] Message GetSourceData(SourceDataQuery sourceDataQuery); And actual implementation is something like this: public Message ...
2
votes
1answer
961 views

Web Service proxy class to implement interface

I am looking for a way to have the generated proxy class for a Web Reference (not WCF) implement a common interface in order to easily switch between web service access and "direct" access to our ...
2
votes
2answers
91 views

Hide to the rest of the world some methods used only by internal classes

Short question I have one C++ domain model. It has some methods used by the internal API as well as other public methods. I don't want to expose those API methods. I'm thinking of using the proxy ...
2
votes
2answers
157 views

Programmatically implementing an interface that combines some instances of the same interface in various specified ways

What is the best way to implement an interface that combines some instances of the same interface in various specified ways? I need to do this for multiple interfaces and I want to minimize the ...
2
votes
3answers
185 views

How do I avoid web method parameters using proxy classes?

I have a serializable POCO called DataUnification.ClientData.ClientInfo in a .NET class library project A. It's used in a parameter for a web service defined in project B: public XmlDocument ...
2
votes
1answer
187 views

How to make Ruby variable that will evaluate to false in conditional expressions

I want to make my variable (a proxy object) evaluate to false when used in conditional sentences. I know I can use .nil? and even var == nil but I think that's not good enough. What I am trying go do ...
2
votes
3answers
895 views

What would cause a WCF service to return an object of type “object”

Per my other post about WCF service return values, I'm consuming a web service from another company, and when I add the service reference inside Visual Studio, the return value of the method is an ...
2
votes
4answers
848 views

In Java, how can I construct a “proxy wrapper” around an object which invokes a method upon changing a property?

I'm looking for something similar to the Proxy pattern or the Dynamic Proxy Classes, only that I don't want to intercept method calls before they are invoked on the real object, but rather I'd like to ...
2
votes
3answers
2k views

.NET web service without proxy class

I'm trying to create an application that will let me execute a method specified at runtime on an arbitrary webservice (the URL of which I'll also provide at runtime). I've figured out how to use ...
1
vote
1answer
27 views

Proxying an array type

I'm writing new TFS-related tasks in the MSBuild Community Task project. How do I proxy an array type? The CheckIn function exposed in the TFS assembly expects an array of PendingChange objects i.e.: ...
1
vote
1answer
38 views

WCF service with 4 input parms and 3 out parms gets reordered by Add Service Reference in Proxy Class Project

I've looked in SO and elsewhere and seen questions posed about this along with some answers that still make no sense to me in my case. I'm refactoring my working VStudio 2010 solution which has: ...
1
vote
0answers
301 views

Doctrine 2 proxy classes breaking Symfony2 ACL

When attempting to run findAcl() on an entity with an existing entry in the acl_classes table generated by init:acl I get an AclNotFoundException. Testing with createAcl() on the object in question ...
1
vote
1answer
132 views

Exposing WCF metadata on a SiteMinder protected site

This might be a really stupid question, but I've been unable to figure out a solution. I have a WCF service hosted on a site that uses SiteMinder authentication. The authentication relies on a cookie ...
1
vote
2answers
94 views

how to obtain an unproxied and EAGER fetched object in Hibernate?

I want to load an objet and forget that it comes from hibernate! That's it, I just do something as: MyClass myObject = MyClassDAO.getUnproxiedObject(objectID); and than I have a real instance of ...
1
vote
2answers
460 views

Detailed ServiceDescription / Proxy from WSDL

I am using the classes ServiceDescription / ServiceDescriptionImporter to dynamically call web services. I'd like to dig a bit deeper into the WSDL description and get 1) Parameter info for each of ...
1
vote
1answer
139 views

why my poco entity isn't a proxy?

I can't figure out the reason of the strange behaviour of my entity. I'm using POCO classes generated from the database with the dbContext template introduced with the CTP5. In my DbContext I have ...
1
vote
3answers
457 views

Extending auth.User model, proxied fields, and Django admin

(Edit: I know that there's a totally separate feature in Django called "Proxy Models". That feature doesn't help me, because I need to be able to add fields to UserProfile.) So I'm starting a new ...
1
vote
1answer
217 views

Passing __call() parameters by reference fails. Any work around?

I have written a fairly simple lazy loading proxy class, which I have documented in the past over at http://blog.simonholywell.com/post/2072272471/logging-global-php-objects-lazy-loading-proxy Now as ...
1
vote
3answers
394 views

How to unwrap the original object from a dynamic proxy

what's the best approach to unwrap a dynamic proxy to retrieve the original object beneath? The dynamic proxy has been created using java.lang.reflect.Proxy.newProxyInstance() Thank you.
1
vote
1answer
211 views

Derive Interfaces for WCF Proxy Classes

Problem: I have two (or more) classes which are very similar: The properties of one class are a subset of the properties of the other class. More specifically, the property names and semantics are ...
1
vote
1answer
124 views

Android Proxy Cursor

I have a database with which I wish to expose data with a ContentProvider. However, it is important that all the colums are not exposed, and also they should be renamed. Is there any good way of doing ...
1
vote
3answers
708 views

Message queue proxy in Python + Twisted

I want to implement a lightweight Message Queue proxy. It's job is to receive messages from a web application (PHP) and send them to the Message Queue server asynchronously. The reason for this proxy ...
1
vote
0answers
113 views

Best way to re-use the same django models and admin for multiple apps

Given a reference app ( called guide), how can I create additional apps that will reuse the same model/admin/views than guide - the motivation behind is to be able to individually control each subapp. ...
1
vote
2answers
347 views

Why won't DynamicProxy's interceptor get called for *each* virtual method call?

An example explains it best : public interface IA { void foo(); void bar(); } public class A : IA { public virtual void foo(){ Console.Write("foo"); bar(); //call ...
1
vote
1answer
119 views

How can I ensure that NHibernate creates a IList proxy?

I have a property on my domain object which is exposed as this: public virtual IEnumerable<WorkPost> WorkPosts { get { return sheetPosts; } private set { ...

1 2 3