I am going to commit suicide if i can't solve this!

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>

Doesn't seem worth suicide for. Your life must be pretty crummy eh?

Similar Messages

  • Any time I want to delete anything by dragging it to trash, my computer keeps on asking me for my password. And once I write my password, the document is deleted without actually going first to trash. How can I solve this?

    Hello there
    I need some help from you guys
    Any time I want to delete any thing by dragging to trash, my computer will ask me for my login password and once I write my password, the deleted document/file will not go to trash but it will be deleted instantly. How am I going to change this? Meaning drag documents/files to trash and than empty the trash. Can you help?
    Thanks
    Charles

    Normally, that's caused because of a permissions problem. Have a look at this site > http://www.thexlab.com/faqs/trash.html#Anchor-Files-46919

  • HT1766 Hi, I share an iTunes account with my wife. Sometimes she gets my iMessages and I don't and vice versa. Also if people face time me it goes to her phone. How can I stop this from happening?

    Hi, I share an iTunes account with my wife. Sometimes she gets my iMessages and I don't and vice versa. Also if people face time me it goes to her phone. How can I stop this from happening?

    You can share the same Apple ID in
    Settings > iTunes & App Store > Apple ID: here
    But for all other Apple services like:
    FaceTime, iMessage, iCloud, etc, one of you should use a different Apple ID.

  • A friend is complaining that every time I send him a text to his iphone from mine it goes to his ipad. How can I stop this from occurring ?

    A friend is complaining that every time I send him a text message to his iphone from my iphone it goes to his ipad. How can I stop this from occurring ?

    If he has iMessage on his iPad set to receive at his iPhone's phone number, that is exactly what is supposed to happen.  There's nothiing you can do - he needs to remove his iPhone number from his "you can be reached at" iMessage settings on his iPad.

  • I have updated both my iphone 4G and my husbands 4G with the nAew 5 update but now have his contacts on my phone and everytime he downloads an app it goes on my phone.  How can I change this? Do I have to have two separate Apple ID's

    I have updated both my iphone 4G and my husbands 4G with the nAew 5 update but now have his contacts on my phone and everytime he downloads an app it goes on my phone.  How can I change this? Do I have to have two separate Apple ID's

    Try this
    http://support.apple.com/kb/ht1495
    Hope it helps.

  • I'm receiving but can't send emails. My out going smtp has gone offline. how can i change this to be online?

    i'm receiving but can't send emails. My out going smtp has gone offline. how can i change this to be online?

    What version of Windows, what mail system and which mail client?
    Start there.

  • I read somewhere that the iPhone 4S owners were going to get a free bumper, can anyone verify this?

    Hi, I read a lot of tech news on Engadget and online and I don't really remember where I recently saw that Apple was going to give us iPhone 4S owners a $15.00 gift card or a free bumper because of the signal or antenna issues that the phone has, can anyone verify this?  And if so, can you lead me, or provide with some information please?

    A google search would answer this:
    iPhone 4 antenna lawsuits settled with choice of free Bumper or $15
    As Part Of Antennagate Settlement, iPhone 4 Buyers To Be Given ...
    Settlement reached in iPhone 4 antennagate suit | Apple Talk ...
    The iPhone 4 antenna class-action settlement: What it means for ...
    iPhone 4 Antennagate Class Action Lawsuit Settled: $15 or Bumper

  • All kinds of problems with scripts running and slowing things down. It always has to do with "chrome". I sick of it and am going back to IE if I can't get this resolved this weekend.

    What do you want to know.....it's been going on for months and I can't seem to get it resolved. It's definitely a conflict with FF and why you can't resolve it, I have no idea. I've searched the net and these error messages are everywhere. Don't you think it's time you address this.
    At this point I really don't care if I use FF any more. It's slowing everything down on my machine and if you don't have the experience to correct it, then back to IE I'll go.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • HT4623 I recently switched from an original ipad to the ipad air. Now when people text me, the messages go to my cell phone and to the new ipad. I don't want my text messages going to both devices. How can I change this?

    Is there a way to stop receiving my text messages on both of my devices? I have an ipad air and an iphone. People text my phone number and it goes to my phone and the ipad, but this only started happening when I upgraded from the original ipad to the ipad air.

    If you do not want the text messages to go to the iPad (that is what I assume from your post) go to Settings>Messages>Send and Receive at>You can be reached by iMessages at>uncheck your iPhone number in there. Do this on the iPad.
    You can always just turn messages off as well in Settings>Messages>iMessage>Off.

  • Im restoring my iphone 4s, it has been going 8hours and still not done, can I stop this or does it take forever

    Please help, as this is my business/personal phone, had to restore my iphone 4s as had it unlocked and it has been restoring for 8 hours and is still going, what am i to do and is this normal, need it right by Monday

    http://support.apple.com/kb/HT5014
    this tells you how to process the authorised unlock via the carrier
    the Tesco sim is an genuine  iPhone micro sim from Tesco not a cut down??

  • My Apple iphone 4 does not ring it goes directly in voicemail.  How can I change this?

    I have a Apple i phone 4, lately when someone calls me the call goes directly into voice mail.  I don't hear the phone ring. How can I change my settings to hear a call, before it goes into  voice mail?  Thank You  Beverly Schroeder

    You have not told us which version of iOS you are running.
    If your iPhone is reasonably current with its iOS, you can do Settings > Do Not Disturb = "Off"

  • My bank can not solve this problem, please whats going on?

    Java Plug-in 10.11.2.21
    Using JRE version 1.7.0_11-b21 Java HotSpot(TM) 64-Bit Server VM
    User home directory = /Users/macpro
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    cache: Initialize resource manager: com.sun.deploy.cache.ResourceProviderImpl@6632dd29
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.
    security: property package.definition new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws
    security: property package.definition value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws
    security: property package.definition new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy
    security: property package.definition value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy
    security: property package.definition new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: tap installed
    basic: Creating PluginEmbeddedFrame served by PlaceHolderServerName-324
    basic: Done creating PluginEmbeddedFrame
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@18d6cf4
    basic: Plugin2ClassLoader.addURL parent called for https://aapj.bb.com.br/aapj/gbas/GbAs.jar
    security: Accessing keys and certificate in Mozilla user profile: null
    security: JSS is not configured
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/gbas/GbAs.jar, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/gbas/GbAs.jar with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)
         at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1328)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
         at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1299)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:205)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:71)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:88)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$1000(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.EOFException: SSL peer shut down incorrectly
         at sun.security.ssl.InputRecord.read(InputRecord.java:352)
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:927)
         ... 44 more
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/gbas/GbAs.jar, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/gbas/GbAs.jar with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)
         at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1328)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
         at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1299)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:205)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:71)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:88)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$1000(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.EOFException: SSL peer shut down incorrectly
         at sun.security.ssl.InputRecord.read(InputRecord.java:352)
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:927)
         ... 44 more
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/gbas/GbAs.jar, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/gbas/GbAs.jar with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)
         at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1328)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
         at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1299)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:205)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:71)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:88)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$1000(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.EOFException: SSL peer shut down incorrectly
         at sun.security.ssl.InputRecord.read(InputRecord.java:352)
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:927)
         ... 42 more
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/gbas/GbAs.jar, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/gbas/GbAs.jar with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:946)
         at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1328)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)
         at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339)
         at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1299)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:205)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:71)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:88)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFileInternal(Unknown Source)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$1000(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.EOFException: SSL peer shut down incorrectly
         at sun.security.ssl.InputRecord.read(InputRecord.java:352)
         at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:927)
         ... 42 more
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/, version: null]
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/br/com/gas/mid/GbAs.class, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/br/com/gas/mid/GbAs.class with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    network: Cache entry not found [url: https://aapj.bb.com.br/aapj/br/com/gas/mid/GbAs/class.class, version: null]
    network: Connecting https://aapj.bb.com.br/aapj/br/com/gas/mid/GbAs/class.class with proxy=DIRECT
    network: Connecting http://aapj.bb.com.br:443/ with proxy=DIRECT
    java.lang.ClassNotFoundException: br.com.gas.mid.GbAs.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    basic: load: class br/com/gas/mid/GbAs.class not found.
    java.lang.ClassNotFoundException: br.com.gas.mid.GbAs.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:722)
    Ignored exception: java.lang.ClassNotFoundException: br.com.gas.mid.GbAs.class
    basic: Dialog type is not candidate for embedding

    gimbal2 wrote:
    rukbat wrote:
    The sense I got from your question is that something in the web interfaceapplet, which runs on the client; but close enough.
    your financial institution presents to you is incompatible with your computer and its software.yep: SSLHandshakeException: Remote host closed connection during handshake
    I have the idea that it is due to a missing or outdated certificate, but I'm far from an expert here. The tech support of the bank MUST be able to answer this, if they are in any way capable.
    Javadoc hints at security level discrepancy. Maybe he's using a 128 bit SSL layer on his browser when the server expects 256 bit (for example).
    That can only be resolved by the financial institution. Not here.
    I wish you luck.Indeed, I would take this as a hint that the bank isn't up to snuff. Are they seriously still using an applet?Notice the location of OP... 3rd world country.

  • When I try to download apps it says error 1004 and it goes away. Please tell me how to solve this problem.

    I tried to download an app and it went to download and then it said error 1004 please try again. It does this every time I try to download any app. I really want apps. Please help!

    Try to go to Settings and then Store. Tap to your Apple ID and select View Apple ID. Now choose to check your payment information and when you're done tap Done. I had to rewrite my three digit code of the credit card and now it works.
    Oh, I also activated Genius for Apps but I don't think it makes any difference.

  • I put an audiobook into my itunes and the audiobook setting won't save, it goes back to Music. How can I fix this?

    I put an audiobook into my Itunes and I have selected the setting as Audiobook instead of Music but the change doesn't stick. How can I make this work? I've updated all my software and still I can't get the setting to stay on Audiobook.
    Thanks!

    From King_Penguin in response to an earlier query on this topic:
    You should be able to copy it over by connecting your phone to your computer's iTunes and doing File > Devices > Transfer Purchases - it should copy over to the Books part of your library
    Cheers,
    GB

  • TS4268 Trying to send a message but the name that appears in the destination box is 'emergency' not the contact but the message goes to the contact. How can I rectify this?

    I was sending messages to family but noticed that the names in the contact box were 'emergency' and not the contacts I was writing to.  Can anyone explain this and how to amend it back to contact names, please?

    First just try logging out and back in.  Whatever is holding on to it may not be running after the logout thus freeing it so you can trash it after logging back in.
    You might also try Trash It!
    Lastly, look at the following for suggestions:
    The X Lab: Solving Trash Problems

Maybe you are looking for

  • My 15"MBPr goes dead when I plug in a TV over HDMI

    I have a 2014 15"MBPr. It is the version with the 750M. All firmware and software is up to date, all the cabling has been verified to be working. I use this laptop at a desk my lot. Until recently, my setup was a 24inch AOC display connected through

  • I need  information  about  oops  concept  programming  in abap

    Hi  , I need  information  about  oops  concept  programming  in abap Thanks, Asha

  • Sun ONE Studio 4 CE (Can't seem to edit)

    I can't seem to edit a certain segment of code. More specifically, the initComponents method. Please refer to the picture. http://www.sugarworldinc/JavaOne_question.gif I also right clicked the node, and there doesn't seem to be any option to make it

  • Transferring video to ipad

    Can anyone tell me if it is possible to transfer video from a JVC camcorder directly to an ipad without using a computer? Thanks

  • Accounting entry settings for variance analysis

    Hi all, When we perform variance analysis for a production order, an accounting entry is passed clearing the under or over absorbed portion in production cost centers or in overhead cost centers. Could any one tell me where to make this configuration