What is the error message you are seeing on the .NET side? Have you captured the network traffic between the .NET client and the Apache SOAP server to see exactly what is and is not being send and received?
Scott Nichol ----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 07, 2002 12:05 PM Subject: Re: PL HELP ME... URGENT HELP REQUIRED > > Dear Scott > Tons of thanx but i still face the same problem seemes to me that xsd > files dot net client does not have any support > any clue about it i am under lot of pressure pl. help ..does .net has > support for xsd or not > thanx > > kind regrds > raky > > JAVA CLASSES ARE LIKE BELOW ( VERy COMPLEX) > > > import com.fits.service.insuranceorganization.persistency.*; > import com.fits.service.insuranceorganization.RAMSEmployeeProfile; > import com.fits.service.customerservice.universalid.UniversalID; > import com.fits.service.account.AccountID; > import com.fits.service.account.ProgramCode; > import com.fits.shared.processdataobjects.common.Address; > import > com.fits.service.insuranceorganization.persistency.DatabaseAccessExcepti on; > import com.ranger.rams.util.SystemException; > import com.ranger.rams.util.UserDataException; > import com.fits.util.BusinessException; > import com.ranger.rams.util.EmployeeIDException; > import java.util.*; > import java.rmi.server.UnicastRemoteObject; > import java.rmi.registry.*; > import java.rmi.RMISecurityManager; > import java.rmi.RemoteException; > import java.rmi.NotBoundException; > > > public class InsuranceOrganizationServiceRMI extends UnicastRemoteObject > implements IInsuranceOrganizationServiceRMI > { > > private IStore store; > //private EmployeeProfile employeeProfile = new EmployeeProfile(); > > private String USER_UNDERWRITER = "underwriter"; > private String USER_RATER = "rater"; > private String USER_ADMIN = "admin"; > private String USER_AGENT = "agent"; > private String role = null; > private String PRODUCER_EXCEPTION_SYS = "Exception during Agent Search"; > > public InsuranceOrganizationServiceRMI()throws RemoteException > { > store = new InsuranceOrganizationStore(); > } > > /* > public EmployeeProfile getEmployeeProfile(UniversalID employeeID) > throws SystemException, EmployeeIDException > { > store = (InsuranceOrganizationStore)new > InsuranceOrganizationStore(); > try > { > employeeProfile = store.getEmployeeProfile(employeeID); > } > catch(DatabaseAccessException dbaExc) > { > throw new SystemException(dbaExc.getMessage()); > } > return employeeProfile; > } > > public ArrayList getAllBranch()throws SystemException, > EmployeeIDException > { > store = (InsuranceOrganizationStore)new > InsuranceOrganizationStore(); > try > { > return store.getAllBranch(); > } > catch(DatabaseAccessException dbaExc) > { > //throw new SystemException(dbaExc.getMessage()); > return null; > } > } > > */ > public EmployeeProfile[] getUnderwriters( > AccountID accountID, > ProducerID producerID, > ProgramCode programCode, > Address address) > throws UserDataException, SystemException, > DatabaseAccessException > { > EmployeeProfile[] underwriters = null; > try > { > underwriters = store.getUnderwriters(accountID, > producerID, programCode, address); > } > catch(Exception exception) > { > exception.printStackTrace(); > throw new DatabaseAccessException(exception.getMessage()); > } > return(underwriters); > } > > > public EmployeeProfile[] getRaters( > AccountID accountID, > ProducerID producerID, > ProgramCode programCode, > Address address) > throws UserDataException, SystemException, > DatabaseAccessException > { > EmployeeProfile[] raters = null; > > try > { > raters = store.getRaters(accountID, producerID, > programCode, address); > } > catch(Exception exception) > { > exception.printStackTrace(); > throw new DatabaseAccessException(exception.getMessage()); > } > return raters; > } > > > public EmployeeProfile[] getRecordClerks( > AccountID accountID, > ProducerID producerID, > ProgramCode programCode, > Address address) > throws UserDataException, SystemException, > DatabaseAccessException > { > EmployeeProfile[] recordClerks = null; > try > { > recordClerks = store.getRecordClerks(accountID, > producerID, programCode, address); > } > catch(Exception exception) > { > exception.printStackTrace(); > throw new DatabaseAccessException(exception.getMessage()); > } > return recordClerks; > } > ;;;;;;;;; > > ;;;;;;;;;;;;;;;;;;;;;;;;; > > > > > > Scott Nichol > <snicholnews@scott To: [EMAIL PROTECTED] > nichol.com> cc: > Subject: Re: PL HELP ME... URGENT HELP REQUIRED > 01/03/2003 12:06 > AM > Please respond to > soap-user > > > > > > > I'm not sure, but I think the relative paths in your imports are a > problem. If the "main" WSDL file is in the same directory as one it > imports, the location attribute on the import element should be a simple > file name. In other words, if InsuranceOrganizationServiceRMI.wsdl is > in c:\bea\wlserver6.1\config\mydomain\applications\soap\kmg\wsdl, and so > is UniversalID.xsd, then the import element in > InsuranceOrganizationServiceRMI.wsdl should look like > > <import location="UniversalID.xsd" namespace="http://kmg.wsdl/"/> > > For the import elements you have, the "main" WSDL should be two > directories levels up, e.g. InsuranceOrganizationServiceRMI.wsdl would > be in c:\bea\wlserver6.1\config\mydomain\applications\soap. > > Scott Nichol > > ----- Original Message ----- > From: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, August 08, 2002 1:18 PM > Subject: Re: PL HELP ME... URGENT HELP REQUIRED > > > > > > Scott > > > > > > GREAT.. THANX FOR QUICK REPLY . > > > > well my question even after configration like below i mean > > > > i have put all .xsd and wsdl under C: > > \bea\wlserver6.1\config\mydomain\applications\soap\kmg\wsdl > > directory of weblogic 6.1 > > > > but still i am not able to RUN the application > > > > I have set the below path ...for xsd > > > > e.g <import location="kmg/wsdl/ProfitCenter.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > > Any help will be appreciated i am connecting this wsdl from dot net > .. > > It is not even getting connection to wsdl ... > > > > any idea where i am going wrong Please > > > > Millions of thanx > > kind regrds > > > > raky > > > > > > > > > > > > > > Scott Nichol > > <snicholnews@scott To: > [EMAIL PROTECTED] > > nichol.com> cc: > > > Subject: Re: PL HELP > ME... URGENT HELP REQUIRED > > 01/02/2003 11:19 > > PM > > Please respond to > > soap-user > > > > > > > > > > > > > > I am not sure what your question is. There are 2 WSDL files where you > > reference all the .xsd for your domain types, so I would think you > would > > reference the .xsd for a Vector from both of those files. You will > need > > to create the .xsd file yourself, I guess. > > > > Scott Nichol > > > > ----- Original Message ----- > > From: <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Thursday, August 08, 2002 12:26 PM > > Subject: Re: PL HELP ME... URGENT HELP REQUIRED > > > > > > > > > > Scott Nichol > > > Thanx for ur help last time also u have helped for parsers.. > > > well > > > > > > i have 4 wsdl for one class i am facing problem where and how to > > mention > > > path for xsd any help will be appreciated > > > > > > TONS of thanx > > > > > > > > > Kind regrds > > > raky > > > > > > > > > i have stored all files wsdl and xsd under > > > " kmg.wsdl" directory > > > > > > below are little part of wsdl .. > > > > > > > > > > > > > > > InsuranceOrganizationServiceRMI > > > > > > <?xml version="1.0" encoding="UTF-8"?> > > > <definitions name="InsuranceOrganizationServiceRMI" > > > > targetNamespace="http://kmg.wsdl/InsuranceOrganizationServiceRMI/" > > > xmlns="http://schemas.xmlsoap.org/wsdl/" > > > xmlns:tns="http://kmg.wsdl/InsuranceOrganizationServiceRMI/" > > > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > > > xmlns:xsd1="http://kmg.wsdl/" > > > xmlns:xsd2="http://xml.apache.org/xml-soap" > > > xmlns:xsd3="http://kmg.wsdl/" > > > xmlns:xsd4="http://kmg.wsdl/" > > > xmlns:xsd5="http://kmg.wsdl/" > > > xmlns:xsd6="http://kmg.wsdl/" > > > xmlns:xsd7="http://kmg.wsdl/" > > > xmlns:xsd8="http://kmg.wsdl/"> > > > <import location="kmg/wsdl/UniversalID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Address.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ZipCode.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/State.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/RemoteRef.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProductID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceOrganizationServiceRMI.xsd" > > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfile.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Branch.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceCompanyID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/IBranchFunction.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchID.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Region.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Producer.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProdUWCntr.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProducerID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProfitCenter.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProfitCenterID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Product.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Department.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/JobTitle.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Role.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/RAMSEmployeeProfile.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfileSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchSearch.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfileSearch.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceCompany.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProducerSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Address.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/AccountID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProgramCode.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <message name="getEMPLFavProducerRequest"> > > > > > > 2. InsuranceOrganizationServiceRMIService > > > <?xml version="1.0" encoding="UTF-8"?> > > > <definitions name="InsuranceOrganizationServiceRMIService" > > > targetNamespace > > > ="http://kmg.wsdl/InsuranceOrganizationServiceRMIService/" > > > xmlns="http://schemas.xmlsoap.org/wsdl/" > > > > > > xmlns:binding="http://kmg.wsdl/InsuranceOrganizationServiceRMIBinding/" > > > xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns > > > ="http://kmg.wsdl/InsuranceOrganizationServiceRMIService/"> > > > <import location="InsuranceOrganizationServiceRMIBinding.wsdl" > > > > namespace="http://kmg.wsdl/InsuranceOrganizationServiceRMIBinding/"/> > > > <service name="InsuranceOrganizationServiceRMIService"> > > > > > > 3. <definitions name="InsuranceOrganizationServiceRMIBinding" > > > targetNamespace > > > ="http://kmg.wsdl/InsuranceOrganizationServiceRMIBinding/" > > > xmlns="http://schemas.xmlsoap.org/wsdl/" > > > > xmlns:interface="http://kmg.wsdl/InsuranceOrganizationServiceRMI/" > > > xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" > > > > > xmlns:tns="http://kmg.wsdl/InsuranceOrganizationServiceRMIBinding/"> > > > <import location="InsuranceOrganizationServiceRMI.wsdl" > namespace > > > ="http://kmg.wsdl/InsuranceOrganizationServiceRMI/"/> > > > <binding name="InsuranceOrganizationServiceRMIBinding" type > > > ="interface:InsuranceOrganizationServiceRMI"> > > > <soap:binding style="rpc" transport > > > ="http://schemas.xmlsoap.org/soap/http"/> > > > <operation name="getEMPLFavProducer"> > > > <soap:operation soapAction="" style="rpc"/> > > > <input name="getEMPLFavProducerRequest"> > > > <soap:body > > > encodingStyle > > > ="http://schemas.xmlsoap.org/soap/encoding/" > > > namespace='urn:InsuranceRMI' > > > parts="empl_id" use="encoded"/> > > > </input> > > > <output name="getEMPLFavProducerResponse"> > > > <soap:body > > > encodingStyle > > > ="http://schemas.xmlsoap.org/soap/encoding/" > > > namespace='urn:InsuranceRMI' use="encoded"/> > > > </output> > > > ...................... > > > > > > > > > > > > > > > 4.. InsuranceOrganizationServiceRMIJava > > > > > > <?xml version="1.0" encoding="UTF-8"?> > > > <definitions name="InsuranceOrganizationServiceRMIJava" > > > > > targetNamespace="http://kmg.wsdl/InsuranceOrganizationServiceRMIJava/" > > > xmlns="http://schemas.xmlsoap.org/wsdl/" > > > xmlns:format="http://schemas.xmlsoap.org/wsdl/formatbinding/" > > > > > xmlns:interface1="http://kmg.wsdl/InsuranceOrganizationServiceRMI/" > > > xmlns:java="http://schemas.xmlsoap.org/wsdl/java/" > > > xmlns:tns="http://kmg.wsdl/InsuranceOrganizationServiceRMIJava/" > > > xmlns:xsd="http://www.w3.org/2001/XMLSchema" > > > xmlns:xsd1="http://kmg.wsdl/" > > > xmlns:xsd2="http://kmg.wsdl/" > > > xmlns:xsd3="http://kmg.wsdl/" > > > xmlns:xsd4="http://kmg.wsdl/" > > > xmlns:xsd5="http://kmg.wsdl/" > > > xmlns:xsd6="http://kmg.wsdl/" > > > xmlns:xsd7="http://xml.apache.org/xml-soap" > > > xmlns:xsd8="http://kmg.wsdl/"> > > > <import location="kmg/wsdl/ProductID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/State.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ZipCode.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Address.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchID.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProfitCenter.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProducerSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Branch.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProfitCenterID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceCompany.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/IBranchFunction.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceCompanyID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProducerID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceOrganizationServiceRMI.xsd" > > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/RAMSEmployeeProfile.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/JobTitle.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Department.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Producer.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Product.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfile.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Role.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Region.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/ProdUWCntr.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfileSummary.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/BranchSearch.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/EmployeeProfileSearch.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/Address.xsd" > > namespace="http://kmg.wsdl/"/> > > > <import namespace="http://xml.apache.org/xml-soap"/> > > > <import location="kmg/wsdl/UniversalID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/InsuranceOrganizationServiceRMI.wsdl" > > > namespace="http://kmg.wsdl/InsuranceOrganizationServiceRMI/"/> > > > <import location="kmg/wsdl/ProgramCode.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/AccountID.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <import location="kmg/wsdl/RemoteRef.xsd" namespace > > > ="http://kmg.wsdl/"/> > > > <binding name="InsuranceOrganizationServiceRMIJavaBinding" type > > > ="interface1:InsuranceOrganizationServiceRMI"> > > > <java:binding/> > > > <format:typeMapping encoding="Java" style="Java"> > > > <format:typeMap > > > formatType="kmg.wsdl.BranchID" > > typeName="xsd1:BranchID"/> > > > <format:typeMap > > > formatType="[Lkmg.wsdl.Product;" typeName > > > ="xsd1:ArrayOfProduct"/> > > > <format:typeMap > > > formatType="kmg.wsdl.ProducerSummary" typeName > > > ="xsd1:ProducerSummary"/> > > > <format:typeMap > > > formatType="[Lkmg.wsdl.IBranchFunction;" typeName > > > ="xsd1:ArrayOfIBranchFunction"/> > > > <format:typeMap > > > ................................. > > > > > > > > > deployement descirptor > > > > > > > > > <?xml version="1.0"?> > > > <isd:service id="urn:InsuranceRMI" xmlns:isd > > > ="http://xml.apache.org/xml-soap/deployment"> > > > <isd:provider type="java" scope="Application" > methods="findProducers > > > getRaters getPLM deleteEmployeeProfile getAllPUC > > findRAMSEmployeeProfiles > > > getDepartments saveEmployeeProfile getUnderWritersForBranch > > > getRAMSEmployeeProfile addFavProducerDuringClearance > > > getLossControlRepresentatives getProducerForGivenNumber getJobTitles > > > getEmployeeProfile addRAMSEmployeeProfile getBrProducer getPUCEmplId > > > authorizeProducers getRecordClerks getProducerForGivenName > > > saveRAMSEmployeeProfile addEmployeeProfile getUnderwriters getBranch > > > getBrRegion addFavProducer getMarketingRepresentatives > > getAllBranchNoExpiry > > > findUnderwritingCompanies getUserRegion findEmployeeProfiles > > > getDefaultUnderWriters deleteRAMSEmployeeProfile getAllBranch > > > getEMPLFavProducer findBranches getSupervisors getRef getPUCProducer > > > getEMPLProducer getAllProducts getPUC getName"> > > > <isd:java class > > > > > > ="com.fits.service.insuranceorganization.InsuranceOrganizationServiceRMI > > " > > > static="false"/> > > > </isd:provider> > > > <isd:mappings> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:RAMSEmployeeProfile" javaType > > > ="kmg.wsdl.RAMSEmployeeProfile" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:EmployeeProfileSummary" javaType > > > ="kmg.wsdl.EmployeeProfileSummary" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:JobTitle" > > javaType="kmg.wsdl.JobTitle" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:EmployeeProfile" javaType > > > ="kmg.wsdl.EmployeeProfile" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:AccountID" javaType > > > ="kmg.wsdl.AccountID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Producer" > > javaType="kmg.wsdl.Producer" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Department" javaType > > > ="kmg.wsdl.Department" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Branch" > javaType="kmg.wsdl.Branch" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProducerID" javaType > > > ="kmg.wsdl.ProducerID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Region" > javaType="kmg.wsdl.Region" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:IBranchFunction" javaType > > > ="kmg.wsdl.IBranchFunction" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:RemoteRef" javaType > > > ="kmg.wsdl.RemoteRef" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProductID" javaType > > > ="kmg.wsdl.ProductID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:InsuranceCompany" javaType > > > ="kmg.wsdl.InsuranceCompany" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:BranchID" > > javaType="kmg.wsdl.BranchID" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Product" > > javaType="kmg.wsdl.Product" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Role" javaType="kmg.wsdl.Role" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:InsuranceCompanyID" javaType > > > ="kmg.wsdl.InsuranceCompanyID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProfitCenter" javaType > > > ="kmg.wsdl.ProfitCenter" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:UniversalID" javaType > > > ="kmg.wsdl.UniversalID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProdUWCntr" javaType > > > ="kmg.wsdl.ProdUWCntr" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Address" > > javaType="kmg.wsdl.Address" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ZipCode" > > javaType="kmg.wsdl.ZipCode" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:BranchSummary" javaType > > > ="kmg.wsdl.BranchSummary" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:EmployeeProfileSearch" javaType > > > ="kmg.wsdl.EmployeeProfileSearch" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:Address" > > javaType="kmg.wsdl.Address" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProducerSummary" javaType > > > ="kmg.wsdl.ProducerSummary" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProfitCenterID" javaType > > > ="kmg.wsdl.ProfitCenterID" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:State" javaType="kmg.wsdl.State" > > > java2XMLClassName="org.apache.soap.encoding.soapenc.BeanSerializer" > > > > xml2JavaClassName="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:BranchSearch" javaType > > > ="kmg.wsdl.BranchSearch" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ProgramCode" javaType > > > ="kmg.wsdl.ProgramCode" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > <isd:map > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > > > xmlns:x="http://kmg.wsdl/" qname="x:ArrayList" javaType > > > ="java.util.ArrayList" java2XMLClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer" xml2JavaClassName > > > ="org.apache.soap.encoding.soapenc.BeanSerializer"/> > > > </isd:mappings> > > > </isd:service> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Scott Nichol > > > <snicholnews@scott To: > > [EMAIL PROTECTED] > > > nichol.com> cc: > > > Subject: Re: PL > > HELP ME... URGENT HELP REQUIRED > > > 01/02/2003 08:58 > > > PM > > > Please respond to > > > soap-user > > > > > > > > > > > > > > > > > > > > > In addition to mappings for XML Schema types, Apache SOAP (and > > possibly > > > Axis, too) provides implicit mappings for some Java types (such as > > > Vector and Hashtable). Unlike the XML Schema types, however, there > is > > > no standard XML type for these Java types, so Apache SOAP uses its > own > > > custom types. In your case, it appears you are using a Java Vector > > for > > > a parameter. Probably no non-Apache SOAP implementation will have a > > > built-in type mapping for this, so errors like the one you get are > > > expected. > > > > > > Since you are using WSDL, the way to resolve this is to add a > > definition > > > for the Vector type in the http://xml.apache.org/xml-soap namespace > in > > a > > > schema in your WSDL. > > > > > > Scott Nichol > > > > > > ----- Original Message ----- > > > From: <[EMAIL PROTECTED]> > > > To: <[EMAIL PROTECTED]> > > > > Sent: Thursday, August 08, 2002 4:37 AM > > > Subject: PL HELP ME... URGENT HELP REQUIRED > > > > > > > > > > Hello ALL > > > > > > > > > > > > I am connecting wsdl ( weblogic6.1) using .net and getting this > > error > > > > ........ > > > > any help will be appreciated ........ > > > > > > > > > > > > > > > > Thanx > > > > > > > > kind regrd > > > > raky > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SoapMapper:The schema definition with a targetnamespace of > > > > http://xml.apache.org/xml-soap for SoapMapper Vector could not be > > > found > > > > HRESULT=0x80004005: Unspecified error - SoapMapper:The SoapMapper > > for > > > > element Vector could not be created HRESULT=0x80004005: > Unspecified > > > error - > > > > WSDLOperation:Initialization of a SoapMapper for operation > > > > getEMPLFavProducer failed HRESULT=0x80004005: Unspecified error - > > > > WSDLOperation:Initializing of the output message failed for > > operation > > > > getEMPLFavProducer HRESULT=0x80004005: Unspecified error - > > WSDLPort:An > > > > operation for port InsuranceOrganizationServiceRMIPort could not > be > > > > initialized HRESULT=0x80004005: Unspecified error - > > WSDLPort:Analyzing > > > the > > > > binding information for port InsuranceOrganizationServiceRMIPort > > > failed > > > > HRESULT=0x80004005: Unspecified error - WSDLService:Initialization > > of > > > the > > > > port for service InsuranceOrganizationServiceRMIService failed > > > > HRESULT=0x80004005: Unspecified error - WSDLReader:Analyzing the > > WSDL > > > file > > > > failed HRESULT=0x80004005: Unspecified error - Client: > > > > One of the parameters supplied is invalid. HRESULT=0x80070057: The > > > > parameter is incorrect > > > > > > > > > > > > > > > > -- > > > > To unsubscribe, e-mail: > > > <mailto:[EMAIL PROTECTED]> > > > > For additional commands, e-mail: > > > <mailto:[EMAIL PROTECTED]> > > > > > > > > > > > > > > > > > -- > > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > > > > > > > > > > > > > > > > > > > -- > > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > > > > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > > > > > > > > > > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>