I am trying to implement a UDDI server for my Masters
Project and I was trying to use UDDI4j both on
server and client for sending and recieving UDDI
calls. But I guess that is not possible as the
UDDI4j uses vectors and can't receive requests
that look more like arrays on the server.
Please advise.
In a message dated Tue, 24 Jul 2001 1:37:25 PM Eastern Daylight Time, "David Melgar"
<[EMAIL PROTECTED]> writes:
> The server doesnt know anything about vectors it deals with XML messages.
>
> If you want to debug it, capture the outgoing message, and incoming
> response, and the exception generated. What server are you connecting to?
>
> David Melgar
> Web Services Toolkit Development
> Emerging Technologies
> [EMAIL PROTECTED]
>
>
> [EMAIL PROTECTED] on 07/24/2001 12:39:20 PM
>
> Please respond to [EMAIL PROTECTED]
>
> To: <[EMAIL PROTECTED]>
> cc:
> Subject: Re: Urgent SOAP Question
>
>
>
> I now remmeber why the UUDIProxy didn't work for me and may be you would
> know the answer.
>
> For example in SaveTModel When I used UDDIProxy it uses the savetoxml
> method to convert java object to xml it creates the following
>
> <save_tModel>
> <save_tModel>
> <tModel></tModel>
> <tModel></tModel>
> <......
>
> on the server side it complains that it can't match the
> list of tModels in the request with anything because there is vector on
> the other side. I am implementing UDDI as a school project.