Hi, I am implementing the UDDI std 1.0 for my school project. I have a question about the SOAP interface on the UDDI server. For example when one tries to use save_tModel API..the soap message looks like <soap...header>.... <save_tModel> <authInfo/> <tModel/>...<tModel/> </save_tModel> This is how uddi4j generates it. This would map to a java api of save_tModel( authinfo, tmodel, tmodel ...) which will not work..obviously I am missing something and not able to figure out how to map this soap message to a uddi api...Please help, I know this is soap forun but the problem might be related. I have a soap api on the uddi server that looks as follows save_tModel( authInfo, tModel[] ) but the soap engine throws a no such method exception as it is looking for save_tModel( authinfo, tmodel, tmodel ...) and my understanding is that the soap message should be as <save_tModel> <authInfo/> <tModel/>...<tModel/> </save_tModel> and not as <save_tModel> <authInfo/> <vector> <tModel/>...<tModel/> </vector> </save_tModel> please advise