RemoteException: Potential typemapper problem

This is is really just a continuation of my old problem, but I renamed it in the hope that someone might recognise the problem I'm having now:
WSDL:
<?xml version='1.0' encoding='UTF-8' ?>
<!-- Generated 10/31/03 by Microsoft SOAP Toolkit WSDL File Generator, Version 3.00.1325.0 -->
<definitions
     name='DCIS'
     targetNamespace='http://ds_00119/DCIS/wsdl/'
     xmlns:wsdlns='http://ds_00119/DCIS/wsdl/'
     xmlns:typens='http://ds_00119/DCIS/type/'
     xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
     xmlns:xsd='http://www.w3.org/2001/XMLSchema'
     xmlns:stk='http://schemas.microsoft.com/soap-toolkit/wsdl-extension'
     xmlns:dime='http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/'
     xmlns:ref='http://schemas.xmlsoap.org/ws/2002/04/reference/'
     xmlns:content='http://schemas.xmlsoap.org/ws/2002/04/content-type/'
     xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
     xmlns='http://schemas.xmlsoap.org/wsdl/'>
     <types>
          <schema
               targetNamespace='http://ds_00119/DCIS/type/'
               xmlns='http://www.w3.org/2001/XMLSchema'
               xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
               xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
               elementFormDefault='qualified'>
               <import namespace='http://schemas.xmlsoap.org/soap/encoding/'/>
               <import namespace='http://schemas.xmlsoap.org/wsdl/'/>
               <import namespace='http://schemas.xmlsoap.org/ws/2002/04/reference/'/>
               <import namespace='http://schemas.xmlsoap.org/ws/2002/04/content-type/'/>
          </schema>
     </types>
     <message name='DCIS.CTXD'>
          <part name='bstrUser' type='xsd:string'/>
          <part name='bstrPassword' type='xsd:string'/>
          <part name='bstrName' type='xsd:string'/>
          <part name='bstrAddress' type='xsd:string'/>
          <part name='bstrPhone' type='xsd:string'/>
     </message>
     <message name='DCIS.CTXDResponse'>
          <part name='Result' type='xsd:string'/>
     </message>
     <portType name='DCISSoapPort'>
          <operation name='CTXD' parameterOrder='bstrUser bstrPassword bstrName bstrAddress bstrPhone'>
               <input message='wsdlns:DCIS.CTXD'/>
               <output message='wsdlns:DCIS.CTXDResponse'/>
          </operation>
     </portType>
     <binding name='DCISSoapBinding' type='wsdlns:DCISSoapPort' >
          <stk:binding preferredEncoding='UTF-8'/>
          <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
          <operation name='CTXD'>
               <soap:operation soapAction='http://ds_00119/DCIS/action/DCIS.CTXD'/>
               <input>
                    <soap:body
                         use='encoded'
                         namespace='http://ds_00119/DCIS/message/'
                         encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'
                         parts='bstrUser bstrPassword bstrName bstrAddress bstrPhone'/>
               </input>
               <output>
                    <soap:body
                         use='encoded'
                         namespace='http://ds_00119/DCIS/message/'
                         encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'
                         parts='Result'/>
               </output>
          </operation>
     </binding>
     <service name='DCIS' >
          <port name='DCISSoapPort' binding='wsdlns:DCISSoapBinding' >
               <soap:address location='http://ds_00119/DCIS/DCIS.ASP'/>
          </port>
     </service>
</definitions>
Code:
                    String namespace = "http://ds_00119/DCIS/wsdl/";
                    String endpointURL = "http://ds_00119/DCIS/dcis.asp";
                    String portName = "DCISSoapPort";
                    String functionName = "CTXD";
                    String[] paramNames = {"bstrUser","bstrPassword","bstrName","bstrAddress","bstrPostcode"};
                    String[] paramValues = new String[] {"x","y","a","b","c"};
                    ServiceFactory factory = ServiceFactory.newInstance();
                    Call call = factory.createService(new QName("DCIS")).createCall();
                    call.setTargetEndpointAddress(endpointURL);
                    call.setPortTypeName(new QName(namespace, portName));
                    call.setOperationName(new QName(namespace, functionName));
                    call.setProperty(Call.SOAPACTION_USE_PROPERTY, new Boolean(true));
                    call.setProperty(Call.SOAPACTION_URI_PROPERTY, "http://ds_00119/DCIS/action/DCIS.CTXD");
                    call.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY, "http://schemas.xmlsoap.org/soap/encoding/");
                    call.setProperty(Call.OPERATION_STYLE_PROPERTY, "rpc");
                    for(int i=0; i<5; i++)
                         call.addParameter(paramNames, javax.xml.rpc.encoding.XMLType.XSD_STRING,ParameterMode.IN);
                    call.setReturnType(javax.xml.rpc.encoding.XMLType.XSD_STRING);
                    try
                         String returnValue = (String) call.invoke(paramValues);
                         System.out.println(returnValue);
                    catch(java.rmi.RemoteException ex)
                         ex.printStackTrace();
Received SOAP trace:
<?xml version="1.0" encoding="UTF-8" ?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<env:Body>
<ans1:CTXD xmlns:ans1="http://ds_00119:8080/DCIS/wsdl/">
<bstrUser xsi:type="xsd:string">x</bstrUser>
<bstrPassword xsi:type="xsd:string">y</bstrPassword>
<bstrName xsi:type="xsd:string">a</bstrName>
<bstrAddress xsi:type="xsd:string">b</bstrAddress>
<bstrPhone xsi:type="xsd:string">c</bstrPhone>
</ans1:CTXD>
</env:Body>
</env:Envelope>
Runtime Error:
java.rmi.RemoteException: WSDLReader:None of the matching operations for soapAction http://ds_00119/DCIS/action/DCIS.CTXD could successfully load the incoming request. Potential typemapper problem
at com.sun.xml.rpc.client.dii.BasicCall.invoke(BasicCall.java:369)
at DIIClient.main(DIIClient.java:43)
What am I doing wrong?
Thanks,
Chris

I'm not allowed to publish the address of the live service on a public site, sorry. If there's any way that I could send it to you privately, then that would be ok.
Chris

Similar Messages

  • Potential Thread Problem with JVM (1.4.2_05)

    This junit test fails on 1.4.2_05 (running on Windows XP), is there a problem with the code or the JVM?
    public class BadJVMTest extends junit.framework.TestCase {
      static byte[] b = new byte[] { -1, 1 };
      public int m2(int offset) {
        while (true) {
          if (b[offset] >= 0)
            return offset + 1;
          offset++;
      class Inner {
        int fOffset = 0;
        public void m1() {
          fOffset = m2(fOffset);
          if (fOffset == 0)
            throw new RuntimeException("Internal Error.");
      private class ReadThread extends Thread {
        int failed = 0;
        public void run() {
          for (int i = 0; i < 100000; i++) {
            try {
              new Inner().m1();
            } catch (Throwable t) {
              failed++;
              System.err.println("Problem on call number " + (i + 1) + " (" + t + ")");
      public void test() throws Exception {
        int numOfThreads = 100;
        ReadThread threads[] = new ReadThread[numOfThreads];
        for (int i = 0; i < numOfThreads; i++) {
          threads[i] = new ReadThread();
          threads.start();
    for (int i = 0; i < numOfThreads; i++) {
    threads[i].join();
    for (int i = 0; i < numOfThreads; i++) {
    assertEquals(0, threads[i].failed);

    Nothing jumps out at me about the code (other than
    its general convolutedness, which I assume you're
    aware of).
    What, exactly, are you observing? I assume it's that
    fOffset is zero after calling m2(), so you're
    throwing the RTE, right?Which does look like a bug to me, however, there are parts of nested class arcania that are beyond my paltry knowledge, so I may be basing that on faulty assumptions.

  • Initial Load Setup...Potential Big Problem

    Hi All,
    I think we have a big problem.  I have posted a similiar question before, but answers are confusing to me.  Let me explain our current situation and please comment.
    1. We are loading billing documents, thus using VDITM.
    2. We have 2 number ranges for billing documents.
    3. On R3 we filled the setup tables with the smaller number of billing documents.  Then in BW ran a full load.
    4. The second billing document number range was kicked off in R3 and setup tables filled.
    5. Now, here is where I think there is a problem.  This second and final load from the setup table was setup and ran as a full load on BW.  Shouldn't this have been the Delta Init?
    Please comment on this:
    I believe this second load should be the delta init.  Then after this was done schedule the RMBWV313 job in R3 to run, for us, hourly.  In BW schedule the daily delta to run at night (for us).  Everything is in sync this way.
    My concern is the second setup table load from BW was setup as a Full Load.  After this load is done can we just schedule RMBWV313 in R/3 to run hourly and then schedule the Daily Delta in BW to run later that night.
    Please comment asap...please.
    Appreciate it,
    Mike

    Hi Mike,
    You may be okay!  You can run the Init Delta InfoPackage in BW <i><b>without</b></i> transferring data, and your delta process would then be set up.  If you have the means, check your data in R/3 and verify in BW after a couple of days (couple of delta extracts) to make sure your billing totals match.
    The setup tables are only good for doing your initial load (or full load). 
    Your other solution would be to delete the second full load in BW, fill your setup table with the second range again (to get the new billing data), and then run the Init Delta InfoPackage in BW <i><b>with</b></i> data transfer, and you should be set to go.
    Let us know if you succeed!

  • Macbook White keyboard issue (potential software problem, please help!)

    Hi there! Before I go into detail I have a Late 2008 Macbook White (Upgraded to 4GB RAM, 320GB HDD) so I would have had it two years this Christmas (2010)
    Over the last few months, on odd occasions the bottom row of keys completely stop working (by bottom row of keys I mean: Z X C V B N M ? and then fn ctrl alt and CMD on the row below. The space bar and right CMD work perfectly as does every other key on the keyboard.
    Now this is where it gets really weird. I always thought this was a hardware issue (Loose ribbon connection etc, I just don't have the hours in the day to sit down and take it apart) until my friend gave me his old aluminium apple wireless bluetooth keyboard (the laptop sized one). The bottom row of my keyboard broke again whilst visiting him so we set up this aluminium keyboard of mine.
    After it connected I started typing on it and realised that the bottom row on the wireless keyboard wasn't working, however when I typed using the laptop keyboard it worked absolutely perfectly. Really nice and responsive (I'm even typing using it now with the Bluetooth keyboard connected!!)
    So basically, without the wireless keyboard connected the bottom row doesn't work on my laptop. However when I connect the wireless keyboard the problem comes off the internal keyboard and onto the wireless one. This has ultimately led me to believe that it's a software fault and not a hardware fault as first thought. We tried the same wireless keyboard on my friends mac and there were no issues what so ever.
    If anyone out there has absolutely any idea what the heck is going on then please reply to this and shed some light on my situation!
    Thank you!

    I have a 2008 Macbook and have the same problem. Have found two other people with the 2008 white Macbook with similar problem of bottom row of keys (only) not typing. Obviously an Apple glitch. Any suggestions how to fix without substituting other keys or attaching another external keyboard (Alternate Microsoft keyboard works fine with keyboard to USB port). Please email [email protected] if you know the solution.

  • Potential network problems?

    Hello,
    If we would have one object, let's say "Message". The message contains a String "Data". This String can become very large, let's say 500MB.
    So, if the Message Object extends UnicastRemoteObject, it's continuesly between the RMI Server and the RMI Client.
    So, it's no problem if the complete Message Object is transferred once over the network. But, what if we call a method on the message object that changes the Data??? Is the Message Object again transferred over the network completely????
    Thank you.

    No I mean this:
    When the Message class contains also a method: convertToUppercase..... when this method is called on the client at a later moment in time (after the data attribute was filled with e.g. 500MB), then:
    - is the Data transformed at the client to uppercases, and hereafter the 500MB is transferred again to the server
    or
    - is the method transferred to the server, so that execution is performed on the object on the server and the client separately?
    Thank you.

  • ISync users beware of potential syncing problem

    I've been pulling my hair out at this for the past couple of hours.
    Trying to sync my K850i and it kept failing to sync. So, I followed the recommended advice and created a group - syncing a ten or so contacts at a time. I got to my girlfriend's contact and it failed.
    She then fessed up to having "edited her address book entry on the iPod Touch", so I took a closer look and she'd added a "nickname" for herself.
    "Nickname" is a valid field on the iPod Touch, and will carry over to Address Book as a custom field. But it will break the sync to a phone such as mine.
    Solution is simple: delete the "nickname" field in Address Book (appears under name and above job title) and resync.
    Hope that saves somebody a little bit of time!

    Interesting point - I know I had not done that in a while on my db before doing that. I will do that the next time I back up my db and try it again just to see if it makes any difference. I got the feeling that by deleting those collections I had somehow "pulled the rug out from underneath" LR. I know that is certainly not a technical explanation :). But I got the feeling that somehow deleting those got rid of related records that tied the images to the folders somehow. Perhaps some sort of relational delete problem. Not sure.
    Anyhow - will see if the integrity check detects any issues.

  • Potential Hardrive Problem...Need help!

    So, my iPod has started to stop playing during certain songs and will begin to make a clicking sound in the back. My assumption is that it is a hardrive problem and that I probably will need to replace it, but I have not received any type of exclamation point or anything like that on the screen. What would you say? All help is greatly appreciated.

    In General it is recommended to leave the Applications on the Internal Drive and to use the External for Backup... Libraries... writing to... etc...
    Use the Help window in Finder to get Information on Moving your various Libraries to New Locations...

  • Potential sp3 problems?

    We are running Zfd32 with no patches. Only using NAL and user policies
    (not using inventory, workstation policies, remote control). Client OSes
    are Win9x and WinXP. We are looking at installing sp3 to fix user policy
    problems. Any issues on upgrading? What about required client versions?
    Thanks,
    Nelda Hanzi

    Nelda,
    It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • New MSI GE70 2PE laptop screen not turning on/potential graphics problem

    Hi all,
    This is very frustrating for me!
    I've just bought a brand new MSI GE70 2PE gaming laptop for my partner and turning on causes the power on light to blink blue and orange - something i'm struggling to find any information online for. The screen remains black with no backlight or turning on. I have tried plugging the laptop through VGA into my monitor and it also says it cannot pick up any signal.
    This is leading me to think it is some sort of graphics related problem. The disc drive is ejecting, I can hear the processor ticking along and all the fans etc are on - so it's not completely dead.
    The fan is actually pumping out fairly warm air too, when left idle which to me seems a little odd too - I wouldn't thought it would be struggling at this point.
    I have no idea what is going on, if the laptop is completely faulty or its something I am overlooking. It's supposedly 'brand new' - well the box was sealed and this problem has occurred from the first time I have tried to boot it.
    I've tried running it on battery, purely on AC and this doesn't seem to make a difference.
    Any ideas people? This is super frustrating and I don't want to have to get in contact with MSI about this for some sort of warantee job.
    Thanks in advance! 

    Hello hybridoriental,
    Since your laptop is still brand new one under the warranty, I'll suggest you send it to the MSI service centers or MSI authorized service points for inspections.
    The power light in orange means the system is accessing the discrete GPU. Looks like your laptop stuck in a loop before it started the BIOS. Just make sure you installed the battery and plugged the AC power before you turn it on. If it still doesn't work, it would be better and time-saving to send it to someone whom can inspect and take care of the laptop rather than figure it out by yourself. 

  • Potential IRQ problem with Big Bang XPower

    Is there anything I can do in the BIOS to change the IRQ for my sound card to something other than 16? 

    I can't really put it in another slot since I have 3 GTX 480's installed but before I got my 3rd 480 I had tried it in another slot and it grabed the same IRQ.  Sounds like I'm stuck with 16 for the sound card.  In regards to having any problems.  I can't say that I am but I really don't like the idea of 3 video cards, USB host controller, and a sound card fighting for the same IRQ.  It would give me peace of mind to seperate the sound card.

  • Potential session problems

    We are having a random error, where after logging into our application and running smoothly for several minutes, at some point we must re-login to our application. We are using Weblogic Server 5.1. We are using IIS v4.0 as our html proxy. We have 2 jdbc connection pools for 2 separate applications. Any suggestions?

    Hi,
    Try to configure the timeout sessions....properly...
    weblogic.httpd.session.enable=true
    weblogic.httpd.session.timeoutSecs=xxx
    weblogic.httpd.session.invalidationIntervalSecs=xxx
    How much time do the users will be hanging on the sessions.??
    "Jim Huffman" <[email protected]> wrote in message
    news:3a2bfd93$[email protected]..
    We are having a random error, where after logging into our application andrunning smoothly for several minutes, at some point we must re-login to our
    application. We are using Weblogic Server 5.1. We are using IIS v4.0 as
    our html proxy. We have 2 jdbc connection pools for 2 separate
    applications. Any suggestions?

  • IPod Touch/iPhone users beware of potential sync problems

    I've been pulling my hair out at this for the past couple of hours.
    Trying to sync my K850i and it kept failing to sync. So, I followed the recommended advice and created a group - syncing a ten or so contacts at a time. I got to my girlfriend's contact and it failed.
    She then fessed up to having "edited her address book entry on the iPod Touch", so I took a closer look and she'd added a "nickname" for herself.
    "Nickname" is a valid field on the iPod Touch, and will carry over to Address Book as a custom field. But it will break the sync to a phone such as mine.
    Solution is simple: delete the "nickname" field in Address Book (appears under name and above job title) and resync.
    Hope that saves somebody a little bit of time!

    We are all ipod users just like you.
    You are not addressing Apple here.
    You can leave feedback for Apple at:
    http://www.apple.com/feedback

  • Potential connection problems with the new 27" Apple displays

    I'm thinking about purchasing the new 27" Apple displays and I would like to be able to run two of them at once with full 2560 x 1440 resolution. I know that the mac mini display port can output the resolution but does the HDMI port output that rate? I thought HDMI is capped out at 1080? So, if it is possible, does anyone manufacture the adapters needed? And lastly, would it be possible to also run an older (see my specs) Mac Pro with two of these screens? What kind of adapters would be needed for that? Has Apple just decided that one monitor is all anyone will ever need and that they are no longer going to support the older DVI connectors? Thanks.

    To steer us back to my original post: I was asking specifically about the mac mini and the new 27" display. If you have any of the older mac models most of them support dual dvi. The newer mac mini only supports one display port and one HDMI port. I believe that the highest resolution that HDMI 1.3 supports is 1980 x 1200. My understanding is (after some research) that there is HDMI 1.4 protocol already developed that supports higher resolution but this has not been widely implemented yet. Also, my other concern was the connectors on the new display. Only the mini display port with a male end. This almost guarantees that you will need some sort of cable/connector to anything except the newer macbooks. Just some observations - that's all.

  • JAX-RPC Client for VB-SoapToolkit3.0 WebService

    I need to develop a JAX-RPC client for a VB6.0 WebService (the WebService being generated through MS SoapToolkit3.0).
    I'm using JWSDP 1.0_01. The WSDL that the JWSDP is using to generate the stubs is the one generated by the MS SoapToolkit. My WebService
    has only one method (Public Test(xpto As String)As String) that receives and returns a string.
    So what's the problem:
    - JAX-RPC client sends a SOAP packet different than what the WebService expects, especially in the namespaces. JAX-RPC generates some strange namespaces, like xmlns:ns0="xpto" (xpto is the name of the argument of the WebService) or xmlns:ns1="Result xpto"
    - Looking at the JAX-RPC generated WebService interface, I see that instead of String, the method test receives a StringHolder (???). What's a string holder, and why isn't a String?
    The resumed message returned by the WebService:
    <mserror:description>WSDLReader:None of the matching operations for soapAction http://tempuri.org/Test/action/WS.Test could successfully load the incoming request. Potential typemapper problem HRESULT=0x80070057: The parameter is incorrect.
    - Server:One of the parameters supplied is invalid. HRESULT=0x80070057: The parameter is incorrect.
    </mserror:description>
    Any help would be apreciated.
    Thanks

    Can you send the WSDL that you used to generate the JAXRPC client?
    Thanks

  • Problem with wpa and hidden ssid

    hi,
    I have a powerbook g4 (1,67ghz). i am having trouble connecting to a netgear router mr814 v3 if i use wpa and hidden ssid, i get a message, that the router would not support wpa!
    there is no problem with wep and hidden ssid or wpa with no hidden ssid.
    is also have no problems with wpa and hidden ssid with an ibook.
    the problems occur only with the powerbook with os x 10.3.9 as well as 10.4.2. even after the recent airport update, no change.
    thanks for the help,
    ben

    I would use WPA and broadcast your SSID.
    It use to be useful, but closing your Airport or wireless network (sometimes referred to as not broadcasting your SSID) is really no longer a real option when it comes to wireless security.
    Unfortunately "Closed" networks, MAC access control lists, and reduction in transmission power are all more "feel good" security rather than real security. All these various approaches are dated and mistakenly lead to overconfidence.
    WPA is your friend if you value wireless security.
    My recommendation is not to worry about broadcasting your SSID but use WPA. This will be more secure than a closed WEP encrypted network. Closing your network makes it very difficult for neighbouring networks to see which channels are free thus causing potential interference problems.
    Another thing to consider is that a closed network is still broadcasting and therefore is detectable (regardless of whether it is broadcasting a SSID). If someone was determined to hack into your network, then not broadcasting your SSID and MAC address access control is not going to stop them.
    WPA is virtually uncrackable (only really vunerable to a dictionary attack if a real word is used as a password) and therefore will stop the casual user and the determined hacker.

Maybe you are looking for

  • SSO to ESS via Portal

    Hi Our szenario is: kerberos from client to Portal Reference System to map SAP User Trust between Portal and HR ESS Backendsystem with auth method SAPLOGONTICKET -> Works all fine. Now the problem is ... We would like to "reduce" the TRUST to enable

  • Elements 10 Organizer does not work anymore

    I received the message "Elements Organizer has stopped working" , after I opened for pictures created a new "Tag". Then PSE 10 plunged. This is done regularly now, when I start the Organizer of PSE 10. The editor works fine. My catalog contains aroun

  • Problem with Alerts

    Hi     I have created alerts for couple of interfaces. I added my user id under fixed recipients, I am getting an Email alert when there is an issue. But I have Business users who should also receive these alerts. I created distribution list in SWBP.

  • How to Maintain table "OIB_USERPARAM"

    Dear All, Can anyone help me to understand, how to maintain the table "OIB_USERPARAM", is there a T Code or SPRO link? There are some entries in these tables which needs correction. Please help. Regards, Anubhav

  • How can i highlight less 10 values in webi 4.0

    How can i select less 10 values in certain column and change there color in webi 4.0 ?