[xfire-user] BeanCreationException

2007-06-19 Thread VincentSoosai
Hello, When building this application, I get the following error. I am working with IBM WAS 6.x. Please help. Cheers! Vincent [6/19/07 13:32:28:136 PDT] 0024 ContextLoader E org.springframework.web.context.ContextLoader initWebApplicationContext Context initialization failed

RE: [xfire-user] IndexOutOfBoundsException thrown in AbstractBinding

2007-06-19 Thread Bill Krueger
Maybe I should simplify my question since I know my readObject method is functioning properly. How many messageParts should there be in the outputMessage for the following tcpmon output: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://ww

[xfire-user] Ws-security UserToken Hashed Password

2007-06-19 Thread Farmah, Kam
Hi, I am new to xfire and I am trying to get ws-sec implemented using the supplied examples as the basis. I have a few questions regarding whether I am along the right lines, and also a few conceptual questions: Here is my config: PatientServiceUTHP http://ctms.perceptive.com/PatientSe

[xfire-user] Unrecognized xbean element mapping with spring/xfire

2007-06-19 Thread Alex Burton
Hi all, I'm trying to get a WS-Secure example going and am getting a funny exception with my xbean configuration. Seems to not like my spring beans Wondering if anyone can help... I did notice it somewhere it said to drop the xmlns=" http://xfire.codehaus.org/config/1.0"; from the for newer

Re: [xfire-user] Unmarshalling with Aegis

2007-06-19 Thread MattJax
[apologies for first unreadable post - I clicked 'Message is in HTML format' by mistake!] This is a posting for information only. I've had loads of trouble trying to unmarshall SOAP responses using commons annotations ( http://www.nabble.com/Unmarshalling-with-Commons-Annotations-tf3871884.html

[xfire-user] Unmarshalling with Aegis

2007-06-19 Thread MattJax
This is a posting for information only. I've had loads of trouble trying to unmarshall SOAP responses using commons annotations ( http://www.nabble.com/Unmarshalling-with-Commons-Annotations-tf3871884.html Unmarshalling-with-Commons-Annotations ) and separately, Aegis. My issue was that I could

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Fausto Lelli
Nope, I just tried once again (I'm using xfire 1.2.4). The *ServiceClient has the following methods: public Object getEndpoint(Endpoint endpoint) public Object getEndpoint(QName name) private void create0() public WSMidwayServicePortType getWSMidwayServicePortTypeLocalEndpoint() public WSMidwaySer

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Tomek Sztelak
so you don't have any get*Soap method on your client ? On 6/19/07, Fausto Lelli <[EMAIL PROTECTED]> wrote: Already seen this, but GeoIPServiceSoap geoIPClient = service.getGeoIPServiceSoap(); An equivalent method on my generated client is nowhere to be found. F. On 6/19/07, Tomek Sztelak <[EMAI

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Fausto Lelli
Already seen this, but GeoIPServiceSoap geoIPClient = service.getGeoIPServiceSoap(); An equivalent method on my generated client is nowhere to be found. F. On 6/19/07, Tomek Sztelak <[EMAIL PROTECTED]> wrote: http://xfire.codehaus.org/Client+and+Server+Stub+Generation+from+WSDL On 6/19/07, Faus

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Tomek Sztelak
http://xfire.codehaus.org/Client+and+Server+Stub+Generation+from+WSDL On 6/19/07, Fausto Lelli <[EMAIL PROTECTED]> wrote: Still not working :( //jaxb generated client WSMidwayServiceClient unsecuredClient = new WSMidwayServiceClient(); //get client instance to install security handlers Client

Re: [xfire-user] get client IP and hostname

2007-06-19 Thread Tomek Sztelak
Sure, HttpServletRequest request = XFireServletController.getRequest(); On 6/19/07, zakaria ghandour <[EMAIL PROTECTED]> wrote: Hi i created webservice in Xfire. to do some statistics , i want to get IP address and hostname of machine who invoke my WebService there is any way to get it in my we

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Fausto Lelli
Still not working :( //jaxb generated client WSMidwayServiceClient unsecuredClient = new WSMidwayServiceClient(); //get client instance to install security handlers Client client = Client.getInstance(unsecuredClient); got exception: IllegalArgumentException : not a proxy class. Thanx, Fausto.

[xfire-user] get client IP and hostname

2007-06-19 Thread zakaria ghandour
Hi i created webservice in Xfire. to do some statistics , i want to get IP address and hostname of machine who invoke my WebService there is any way to get it in my webservice ( java class) or i must create servlet to get it ?? thanks -- View this message in context: http://www.nabble.com/get-

[xfire-user] Re: wsgen generates duplicate parameters

2007-06-19 Thread Christian Seiler
Hallo all, We have quite a similar problem like the one Bob reported back in February: We try to use the wsgen ant task to process a WSDL document in order to create a client. The WSDL document defines headers (including wsse headers like in Bob's case). The resulting code does not only look a

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Tomek Sztelak
Client client = Client.getInstance(GENERATED_CLIENT); client.addOutHandler(...) On 6/19/07, Fausto Lelli <[EMAIL PROTECTED]> wrote: Hi, > "regular" client (check docs or examples folder) can you point to some example ? my problem is that I know how to attach security handler to a dynamic client

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Fausto Lelli
Hi, "regular" client (check docs or examples folder) can you point to some example ? my problem is that I know how to attach security handler to a dynamic client but not to jaxb-bound portType. Any help would be greatly appreciated. Fausto. On 6/19/07, Tomek Sztelak <[EMAIL PROTECTED]> wrote:

Re: [xfire-user] WsGen generating jaxb ws-security enabled client

2007-06-19 Thread Tomek Sztelak
You can configure ws-sec on generated client in the same way as on "regular" client (check docs or examples folder) On 6/18/07, Fausto Lelli <[EMAIL PROTECTED]> wrote: Hi, Is it currently possible to use WsGen to generate jaxb client with ws-security enabled ? If not, is it possible to program