I have not been able to debug the parsing process. Do you have log4j configured so you can see what's going on during the parsing of the wsdd file? If so can you tell me how you configured this? Also, the names you use in the beanMapping look like the names i'm getting in my .wsdl file when i deploy my service through a wsdd file that doesn't have beanMappings. Is this because you deployed first and then customized the names to match the wsdl or is there a way to figure out how to name the items so that they match the wsdl... i'm thoroughly confused...you say your not using the beanMappings and it's generating anyway... is beanMapping obsolete?
-----Original Message----- From: Kevin Duling [mailto:[EMAIL PROTECTED] Sent: Saturday, November 13, 2004 2:20 PM To: [EMAIL PROTECTED] Subject: RE: typeMapping and Bad Types I've tried both without any effect. At first I was concerned that perhaps Axis wasn't finding my client-config.wsdd, but that's not the case. It's reading the "sendMultiRefs" and CommonsHTTPSender parameters just fine. Here's a snapshot of my current file: <?xml version="1.0" encoding="UTF-8"?> <deployment name="defaultClientConfig" xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <globalConfiguration> <parameter name="sendMultiRefs" value="false"/> </globalConfiguration> <transport name="http" pivot="java:org.apache.axis.transport.http.CommonsHTTPSender" /> <transport name="https" pivot="java:org.apache.axis.transport.http.CommonsHTTPSender"/> <transport name="local" pivot="java:org.apache.axis.transport.local.LocalSender"/> <!-- <beanMapping qname="ns:TResult" xmlns:ns="urn:GlobalSOAPTypes" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TResult"/> <beanMapping qname="ns:TMetadata" xmlns:ns="urn:GlobalSOAPTypes" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TMetadata"/> <beanMapping qname="ns:TCustomer" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TCustomer"/> <beanMapping qname="ns:TCustomerID" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TCustomerID"/> <beanMapping qname="ns:TEquipment" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TEquipment"/> <beanMapping qname="ns:TEquipmentID" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TEquipmentID"/> <beanMapping qname="ns:TService" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TService"/> <beanMapping qname="ns:TServiceID" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TServiceID"/> --> <beanMapping qname="ns:TCustomerFinancial" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TCustomerFinancia l"/> <!-- <beanMapping qname="ns:TCustomerStatus" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TCustomerStatus"/ > <beanMapping qname="ns:TServiceType" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TServiceType"/> <beanMapping qname="ns:TServiceSubType" xmlns:ns="urn:uOBI_Intf" languageSpecificType="java:com.ncube.vod.bps.billing.obi.TServiceSubType"/ > --> <beanMapping xmlns:ns="urn:GlobalSOAPTyes" qname="ns:TMetadataList" type="java:com.ncube.vod.bps.billing.obi.TMetadata[]" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> <!-- <typeMapping qname="ns:TServiceList" xmlns:ns="urn:uOBI_Intf" type="java:com.ncube.vod.bps.billing.obi.TService[]" serializer="org.apache.axis.encoding.ser.ArraySerializerFactory" deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> <typeMapping qname="ns:TMetadataList" xmlns:ns="urn:GlobalSOAPTyes" type="java:com.ncube.vod.bps.billing.obi.TMetadata[]" serializer="org.apache.axis.encoding.ser.ArraySerializerFactory" deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> <typeMapping qname="ns:TEquipmentIDList" xmlns:ns="urn:OBI_Intf" type="java:com.ncube.vod.bps.billing.obi.TEquipmentID[]" serializer="org.apache.axis.encoding.ser.ArraySerializerFactory" deserializer="org.apache.axis.encoding.ser.ArrayDeserializerFactory" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> --> </deployment> >From: "John Menke" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: RE: typeMapping and Bad Types >Date: Sat, 13 Nov 2004 11:06:56 -0500 > >Kevin, > >are you using the beanMapping or typeMapping tags in your wsdd? I don't >see >a reference to them in this email. > >-jm >