Dkohlert come in please!!!

hi dkohlert, i searched the forum and noticed that you have been solving problems involving collection types in jwsdp 1.0 fcs.
i have a wsdl. but when i try to generate the stubs for it , i will get an invalid entity:Vector(in namespace"http://xml.apache.org/xml-soap") error. What could the problem be? can you send me a config file that solves this problem at [email protected] or please give me some pointers on this. Anyone else please help too thanks alot......really been desperately trying to solve this problem.
here is my wsdl file
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="MissBrowser-service"
targetNamespace="http://www.missbrowser.com/definitions/MissBrowserRemoteInterface"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.missbrowser.com/definitions/MissBrowserRemoteInterface"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsd1="http://www.missbrowser.com/schemas/MissBrowserRemoteInterface" xmlns:xsd2="http://xml.apache.org/xml-soap">
<types>
<schema attributeFormDefault="qualified"
elementFormDefault="qualified"
targetNamespace="http://www.missbrowser.com/schemas/MissBrowserRemoteInterface"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xsd1="http://www.missbrowser.com/schemas/MissBrowserRemoteInterface" xmlns:xsd2="http://xml.apache.org/xml-soap">
<complexType name="MISS.MissLabResult">
<all>
<element name="testDesc" nillable="true" type="string"/>
<element name="abnormal" nillable="true" type="string"/>
<element name="staffName" nillable="true" type="string"/>
<element name="high" nillable="true" type="string"/>
<element name="lastUpdatedDate" nillable="true" type="string"/>
<element name="remark" nillable="true" type="string"/>
<element name="interpretation" nillable="true" type="string"/>
<element name="low" nillable="true" type="string"/>
<element name="testDate" nillable="true" type="string"/>
<element name="result" nillable="true" type="string"/>
</all>
</complexType>
<complexType name="MISS.MissFamilyMedHistory">
<all>
<element name="familyMember" nillable="true" type="string"/>
<element name="diseaseDesc" nillable="true" type="string"/>
</all>
</complexType>
<complexType name="MISS.MissDrugAllergyInfo">
<all>
<element name="drugName" nillable="true" type="string"/>
</all>
</complexType>
<complexType name="MISS.MissMedicalReport">
<all>
<element name="otherMedical" nillable="true" type="string"/>
<element name="lastPeriod" nillable="true" type="string"/>
<element name="smoker" nillable="true" type="string"/>
<element name="nric" nillable="true" type="string"/>
<element name="hearingProblem" nillable="true" type="string"/>
<element name="hospitalName" nillable="true" type="string"/>
<element name="bp2" type="int"/>
<element name="bp1" type="int"/>
<element name="mental_illness" nillable="true" type="string"/>
<element name="onDrug" nillable="true" type="string"/>
<element name="regularMenses" nillable="true" type="string"/>
<element name="familyMedHistory" nillable="true" type="xsd2:Vector"/>
<element name="sex" nillable="true" type="string"/>
<element name="result" nillable="true" type="xsd1:MISS.MissLabResult"/>
<element name="pregnant" nillable="true" type="string"/>
<element name="weight" nillable="true" type="decimal"/>
<element name="height" type="int"/>
<element name="eyeProblem" nillable="true" type="string"/>
<element name="medHis" nillable="true" type="xsd1:MISS.MissFamilyMedHistory"/>
<element name="attempt_suicide" nillable="true" type="string"/>
<element name="drugAllergy" nillable="true" type="xsd2:Vector"/>
<element name="labTestResults" nillable="true" type="xsd2:Vector"/>
<element name="otherSocial" nillable="true" type="string"/>
<element name="homo_sexual" nillable="true" type="string"/>
<element name="drugAllergyInfo" nillable="true" type="xsd1:MISS.MissDrugAllergyInfo"/>
<element name="tattoo" nillable="true" type="string"/>
<element name="name" nillable="true" type="string"/>
</all>
</complexType>
</schema>
</types>
<message name="GetHospitalListsRequest"/>
<message name="GetHospitalListsResponse">
<part name="result" type="xsd2:Vector"/>
</message>
<message name="RetrieveReportFromMissRequest">
<part name="pNric" type="xsd:string"/>
<part name="hospitalName" type="xsd:string"/>
</message>
<message name="RetrieveReportFromMissResponse">
<part name="result" type="xsd1:MISS.MissMedicalReport"/>
</message>
<portType name="MissBrowser">
<operation name="GetHospitalLists">
<input message="tns:GetHospitalListsRequest" name="GetHospitalListsRequest"/>
<output message="tns:GetHospitalListsResponse" name="GetHospitalListsResponse"/>
</operation>
<operation name="RetrieveReportFromMiss" parameterOrder="pNric hospitalName">
<input message="tns:RetrieveReportFromMissRequest" name="RetrieveReportFromMissRequest"/>
<output message="tns:RetrieveReportFromMissResponse" name="RetrieveReportFromMissResponse"/>
</operation>
</portType>
<binding name="MissBrowserBinding" type="tns:MissBrowser">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="GetHospitalLists">
<soap:operation soapAction="" style="rpc"/>
<input name="GetHospitalListsRequest">
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:MissMedicalReportRetrievalService" use="encoded"/>
</input>
<output name="GetHospitalListsResponse">
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:MissMedicalReportRetrievalService" use="encoded"/>
</output>
</operation>
<operation name="RetrieveReportFromMiss">
<soap:operation soapAction="" style="rpc"/>
<input name="RetrieveReportFromMissRequest">
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:MissMedicalReportRetrievalService" use="encoded"/>
</input>
<output name="RetrieveReportFromMissResponse">
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:MissMedicalReportRetrievalService" use="encoded"/>
</output>
</operation>
</binding>
<service name="MissBrowserService">
<port binding="tns:MissBrowserBinding" name="MissBrowserPort">
<soap:address location="http://172.20.134.249/MISSAppWeb/servlet/rpcrouter"/>
</port>
</service>
</definitions>

The problem is this WSDL. It utilizes a type xsd2:Vector where
xmlns:xsd2="http://xml.apache.org/xml-soap", however, this WSDL does not
import this namespace so the definition of xsd2:Vector can not be found.

Similar Messages

  • Please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    please i am unable to restore my ipad due to error 3194.The restore process stalls when it gets to the point where the firmwarwe is being updated.error message 3194 comes up.please help me

    http://support.apple.com/kb/TS3694#error3194 
    Unable to contact the iOS software update server gs.apple.com

  • HT201304 Help, everytime i purchase top-up/stockup for games, this msg comes out: "Please contact itune support to complete this transaction"

    Help, everytime i purchase top-up/stockup for games, this msg comes out: "Please contact itune support to complete this transaction"

    Have you contacted iTunes support?

  • HT4623 i updated my iphone 4s to the new ios 6.1.3 after installing it the device displayed itunes with a USB symbol and cannot come up. please any ideas

    i updated my iphone 4s to the new ios 6.1.3 after installing it the device displayed itunes with a USB symbol and cannot come up. please any ideas

    Do as the diagram indicates:  Connect your iPhone to your computer.  Open iTunes on the computer and restore your device.

  • Confusion Reigns - Come On please fix the many forums we now have going!!

    Seriously !!
    I have posted a couple of questions in this forum, and waited and waited and waited. Sometimes no answer after a week, or when I finally got an answer and then replied to the answer, I again have to wait and wait. One of them after a week I bumped it up.
    I wondered what was going on, and where is everybody?
    then I see someone complaining about the Partner forum, so I have just gone and joined that.
    Then while using the new V3 interface for the backend site manager, I found a problem, which I was able to replicate everytime. So I used the feedback on the side, to report it, only to find yet again another forum. Now I realise that the feedback was supposed to be for the new V3 backend, it appears to me to have become another forum for people to ask stuff.
    3 forums, thats at least 1 too many.
    Come on BC - please fix this problem.
    Posted here as I dont have access to the new partnership forums as yet.

    Hey John,
    I have found 2 unanswered questions in your profile and tried to address them today. Please let me know if there are any other questions you are waiting for an answer on.
    As for the forums, hopefully we'll have only one forum soon.
    Cheers,
    -mario

  • Since installing mountain lion i have a problem with mail. when i delete a message close  and open mail the message has come back. please help!

    Since installing Mountain Lion i have a problem with Mail. I delete a number of messages from the same person but keep the newest message in my Inbox. I actually delete them from the Trash. The next time i open Mail the deleted messages are back again. Can anybody please help as this is getting annoying. Thanks in Anticipation.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Triple-click the line below to select it, then copy the selected text to the Clipboard (command-C):
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "41." Please post it in a reply.

  • The save tabs prompt no longer comes up please help!

    Every time I closed Firefox before I updated, a prompt would come up that asked me if I wanted to save my tabs then I updated to Firefox 4.0 and now that doesn't happen I tried fixing it but I cant can somebody tell me what settings to change so this prompt comes up again? Thank you.

    One change in Firefox 4 is to by default stop Firefox displaying the warning message, but it can be turned back on by changing some preferences.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''

  • Running Windows 7, trying to install Itunes 10.6.  Install was good until Error 7 Windows 126 comes up, please help

    Have read so many discussions about how to fix Error 7 Windows 126, but none seem to give a real answer.  I have uninstalled all Apple programs from my computer.  I have scanned for viruses and cleaned out everthing....The install of 10.6 is fine until right at the end when the following message comes up AV Foundation CF.dll then Error 7 Windows 126.
    I need someone to help me - Itunes was working fine until I wanted to upgrade - now I cant plug my ipod into my lap top

    downloaded winrar and extracted that bfile, haha answered my own question,

  • Whenever I try to open the installed Photoshop and After Effects, It keeps giving me the terms and conditions, I click yes and it comes back, please help!

    Somebody please help me I just fixed an issue and now I have another one!

    In that case perform the same step once again.
    1.Then Delete Adobe Application Manger and OOBE folders from C:\Program Files (x86)\Common Files\Adobe.
    You may need to Quit Creative Cloud desktop to Delete OOBE..
    Then reinstall Adobe Application manager from below link
    Adobe - Adobe Application Manager : For Windows : Adobe Application Manager
    2.Also try to give full permission for SLCache folder.
    Right click on SLCache and open properties. Then uncheck Read only and Click on Apply
    Click on security tab and click on edit.
    Then click on user and give full permssion.
    Then launch the products and check.
    If it is not working,
    3.Press Windows + R keys. Then In the Run window type inetcpl.cpl. It will open Internet Options.
    Click on Connections > LAN settings.
    Make sure under proxy servers  there are no boxes checked.
    If it is checked uncheck it and check Automatically detected settings, Click on Ok.
    Then try.

  • Thinkpad W541 User come in please!

    Hi everyone I am considering purchasing a new laptop and I am considering W541 as one of my options. I have few questions however, before I can make a deicision and I will be very thankful if anyone with/without experience with W541 can answer it! Btw i am going to use the laptop primarily under linux + windows for light gaming/office work.
    1) SCREEN. Is the FHD screen REAL matte or it's somehow glossy? I suffer from eye strain/headache from retina/glossy displays or very bright white color. I won't consider any laptop with that kind of screen. Also the FHD seems to be the lowest resolution I can get, do you guys think it is large enough for a person with prescription glass to see? (otherwise T440p seems the only thinkpad left with HD resolution).
    2) CPU/RAM: There are two "low end" option for CPU: i7-4710 MQ and i7-4810 MQ. I know they are pretty similar and I don't need extra 500 mhz. However, from one website, the 4810 seems to support DDR3L 1333/1600 while 4710 only supports DDR3. I am not sure if that's correct because Lenovo let you have 4710 with 1600 MHz ram. Also do you think 2.5 GHz base frequency a huge difference from 2.8 GHz? How about power consumption?
    3) Battery life: I am going to get 9 cell battery if I buy this one. Does anyone have any real-world experience how long it might last with internet/office/pdf work?
    4) RAM replacement: Is there replacement ram out there at 1600 mhz for replacement? I can only find 14900 mhz from crucial. Oh I found 1600 from kingston and 1866 from kingston? Can I even use 1866 for W541?
    5) Fingerprint/color sensor: Pretty cool feature to have. But will those be well supported in Linux, or even in windows? My friend has an old T500 with fingerprint option, and it is hell slow to read/use that function.
    6) microdrive/raid: Will having a raid be beneficial? With ssd?
    7) num pad keyboard: anyone like/dislike it? Does having the num pad make all keys closer and harder to type?
    8) Final thought: pretty dumb but do I need to wait for broadwell quad core or even skylate? It's "almost" Sept .

    This is a known issue with JDev 11.1.1.3
    The [url http://www.oracle.com/technetwork/developer-tools/jdev/knownissues-086971.html#bc2]release notes give you the workaround.
    John

  • My iphon wont come on please help

    my i phone wont come on black screen i dont know what to do

    See Here for  >  Frozen or unresponsive iPhone
    Try this First... No Data will be Lost..
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    More Info here  >  https://discussions.apple.com/message/19521062

  • TS1559 i jus updated from ios 6.1.3 to 6.1.5 on my ipod touch 4G and now my WIFI wont come on PLEASE HELP !!!!, I dont know what 2 do and this is so frustrating

    aNd I'Ve aLrEADy tRIEd d sUGGEstiONs tHT I GOt fRM dIs LiNK
    iOS: Wi-Fi settings grayed out or dim

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    It is not related to a specific iOS update. It just happens occasionally to iOS devices.

  • Buegie can you come here please?

    Thanx a lot. I posted another question after you left. If you didn't get it, here it is:
    The problem is my iTunes isn't opening at all and I'm getting an error message. That's why I needed 2 delete my iTunes and reinstall it. My only fear was all of my songs deleting. Any suggestions?

    yea man.. i did all that... uninstalling..
    reinstalling.. restarting my computer.. installing in
    safe mode. installing with my admin account..
    disabling pop up blockers, but every single time..
    the license agreement pops up and disappears.. grrr i
    tried every possible way. ive had itunes on my
    computer maybe for a little more than a week and it
    hasnt opened yet.
    You most likely have a virus or spyware or malware on your computer. A lot of people have reported this problem, and this has usually been the cause.
    Download EWIDO anti-malware and run it. If it finds malware, remove it. You may need to reboot into safe mode and run EWIDO again to fully remove the malware.

  • Come In Please !

    Now ! I Have a Kingston DDR333 256MB in my computer;
    I want to add one more in order to form Dual Channel; But I don't if I do so ; Will
    this will give my computer higher performance? 3DMark2001 will give more secores? playing games will more ^?

    thank you !  If I can get higher performance in playing games ! for examper ;playing Count-strike1.6 can get more fps?
    Can I change my MEM'S 2.60v to 2.65 V?   kingston  MEM!

  • Im trying to download itunes and it just says thank you and no downlaod comes up please help

    I had to re download itunes and i am on apple website but when i choose download it just says thank you for downloading and no download occurs does anyone know why?

    What worked for me was to clear the browser cache and then try downloading again.  Also, give it some time to download.  I noticed that when the file was finally downloading, I still got the "thank you for having downloaded" page, even though the download was nowhere near complete yet.
    (It didn't help to try downloading on IE instead of Firefox.  Got the same "thank you" message on IE even though nothing was downloaded.  I double-checked my downloads folder and I'm sure nothing was downloaded)

Maybe you are looking for

  • How to Unload application in mxl

    HOW i can Unload two application same time using mxl This is my client requirement First I need to check any active sessions is there (users are logged if so we cannot unload the application & get member info into spool file) 1)HOW TO SET THE FLAG CO

  • Profit Center on line items

    Hi, Is Profit Center mandatory on every balance sheet account? What happens if a line items doesn't a profit center derived. What are the implications on reporting? My question is only for balance sheet line items. I know I can derive profit center a

  • JDev Unexpected Severe error Occurred with EarHcmCompensation.ear file

    Hi, I have installed Jdeveloper 11.1.1.6.3 as per oracle white paper How to Get Started With JDeveloper Customizations for Fusion Applications and then configured Integrated Weblogic server. I also installed Common Resource Library. I added AddVMOpti

  • Unable to install 10.7.3, checksum error/corrupt file

    I am having problems installing 10.7.3, I tried both the combo and software download methods and both result in similar error messages about checksum errors / corrupt file. I have cleared out any previous updates from my update folder, restarted rout

  • How to restore 2008 MacBook Air OS X 10.5 leopard to factory setting?

    How to restore 2008 MacBook Air OS X 10.5 leopard to factory setting? Have DVDs. But no CD drive.