1 2 Previous Next 20 Replies Latest reply on Dec 11, 2008 10:48 PM by oichris Go to original post
      • 15. Re: Webservice wise

        Dear maeste,

        I tried to modify the wise quickstart to adapt to my web-service call, below is my smooks configuration :

        < resource-config selector="org.ExternalObject">
        < resource>org.milyn.javabean.BeanPopulator
        < param name="beanId">downloadCntRequestT
        < param name="beanClass">it.javalinux.wise.DownloadCntRequestT
        < param name="bindings">
        < binding property="senderId" selector="senderId" />
        < /param>
        < /resource-config>

        But I still failed to append the parameter into the SOAP call (as seen from the logging ). Would you mind giving me some hint if I have missed out something? I got "transformation failed" exception in the console.

        • 16. Re: Webservice wise
          maeste

           

          "oichris" wrote:
          Dear maeste,

          I tried to modify the wise quickstart to adapt to my web-service call, below is my smooks configuration :

          < resource-config selector="org.ExternalObject">

          And this object looks like?



          • 17. Re: Webservice wise

            Here is the ExternalObject definition :

            package org;
            import java.io.Serializable;

            import org.apache.commons.lang.builder.ToStringBuilder;

            public class ExternalObject implements Serializable {



            private String senderId;


            @Override
            public String toString() {
            return ToStringBuilder.reflectionToString(this);
            }

            public String getSenderId(){
            return senderId;
            }

            public void setSenderId(String value){
            this.senderId = value;
            }

            }

            • 18. Re: Webservice wise
              maeste

              I don't forget you. I'm very busy these day, and I haven't gotten time to look into.
              I'll try to have a look tonight or tomorrow.

              • 19. Re: Webservice wise

                Thanks a lot maeste :)
                It's very kind of you.

                • 20. Re: Webservice wise

                  Hopefully it is not forgotten already ?

                  1 2 Previous Next