Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
386 views

java wsimport rename/different ObjectFactory.java

I'm having problem with wsimport. In one of my wsdl which has to be wsimported I have a complexType with name "objectFactory". Is there any way to tell command wsimport to create while importing ...
2
votes
2answers
104 views

StructureMap IOC named instances help

Having a problem with StructureMap IOC. I wish to retrieve different concrete implementations of objects that implement the same interface based on labels or names. internal static class ...
2
votes
2answers
2k views

Objective C : Given a Class id, can I check if this class implements a certain protocol? Or has a certain selector?

I want to use this for an object factory: Given a string, create a Class, and if this Class supports a protocol (with a Create() method) then alloc the class and call Create.
1
vote
1answer
431 views

What is the ObjectFactory role during JAXB-Unmarshalling?

I'm using JAXB 2.2.2 to parse a simple XML-REST stream. This is the piece of code: JAXBContext jc = JAXBContext.newInstance( "com.example.entities" ); Unmarshaller u = jc.createUnmarshaller(); r = ...
1
vote
1answer
31 views

What xml schema context is generated the method signature like “JAXBElemet<Xyz> createXyz(Xyz xyz)” of ObjectFactory by xjc?

I noticed the the simpleType or complexType is defined and the types are used in the declarations of multiple element in a schema file, the simpleType or complexType is generated a method signature as ...
1
vote
1answer
956 views

StructureMap, ObjectFactory and the IContainer

I'm working with StructureMap for my IoC needs. To make things pleasantly testable, I'm passing IContainer instances around wherever possible, usually as constructor parameters. As a convenience, I'd ...
0
votes
7answers
350 views

Game Object Factory: Fixing Memory Leaks

Dear all, this is going to be tough: I have created a game object factory that generates objects of my wish. However, I get memory leaks which I can not fix. Memory leaks are generated by return new ...
0
votes
1answer
425 views

How can I check the validity of a wsdl because i got IllegalAnnotationsException?

I have generated a java package with the wsdl2java CXF command. Now i want to deploy the wsdl to the tomcat server but I got these errors in logs when i start the server I use opebEjb. It looks ...
0
votes
2answers
183 views

How to generate several versions of Java classes generated by JAXB?

I recently generate two versions of Java classes generated by JAXB. So I get two packages : V1_0 and V2_0 I notice that I have only one ObjectFactory generated. The problem is that this ObjectFactory ...
0
votes
1answer
603 views

How to reference Spring.Net's ObjectFactory in the config?

I would like to use prototype interceptors instead of a singleton interceptor so each session would get a new interceptor instance. I looked into the HibernateTransactionManager Class and I think ...