IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.


#TechXchangePresenter
 View Only
Expand all | Collapse all

WebMethods Examples

  • 1.  WebMethods Examples

    Posted Fri January 02, 2004 10:51 AM

    could you please any one can give me any examples of all the services what we can create using webMethods.


    #Integration-Server-and-ESB
    #webMethods
    #webMethods-General
    #webMethods-Architecture


  • 2.  RE: WebMethods Examples

    Posted Sun January 04, 2004 12:30 AM

    Checkout the Tutorials (wMSamples,flat file,web services tutorials)

    Cheers,
    Thota


    #webMethods
    #webMethods-General
    #webMethods-Architecture
    #Integration-Server-and-ESB


  • 3.  RE: WebMethods Examples



  • 4.  RE: WebMethods Examples

    Posted Wed May 13, 2009 11:45 AM

    Following Forum Topic can help you to see the example of webMethods

    [URL]新葡萄官网最新版下载登录「發」

    Thanks
    A Shah


    #Integration-Server-and-ESB
    #webMethods-Architecture
    #webMethods
    #webMethods-General


  • 5.  RE: WebMethods Examples

    Posted Mon April 05, 2010 11:46 AM

    how to write javaservice and how to recomiple that service
    show me one error com.wm.app.b2b.service.ServiceException

    is there need any jar file
    please help me
    thanks advance


    #webMethods-General
    #webMethods
    #webMethods-Architecture
    #Integration-Server-and-ESB


  • 6.  RE: WebMethods Examples

    Posted Mon April 05, 2010 12:46 PM

    There is no additional jar file is needed to create/compile a java service. A java service autometically gets compile as soon as you save it.


    #webMethods
    #webMethods-Architecture
    #Integration-Server-and-ESB
    #webMethods-General


  • 7.  RE: WebMethods Examples

    Posted Mon April 05, 2010 01:38 PM

    package

    First

    Folder

    Javaproblem

    my javaservice

    IDataCursor pc = pipeline.getCursor();
    Values in = Values.use(pipeline);
    Values out=in;
    String S1=in.getString(“S1”);
    String S2=“Hellowwwwww Mr.”;
    String S=" ";
    S=S1;
    out.put(“S”,S);
    System.out.println(S);
    pc.destroy();

    input,output

    s1,s

    imports in shared tab

    com.wm.app.service.*
    com.wm.data
    com.wm.util

    source in shared tab


    public String a(String S){
    return S;
    }

    but showm me error

    follwing error

    Could not run ‘firstjava’.

    com.wm.app.b2b.server.ServiceException: [ISS.0026.9102] Service ‘JavaProblem:firstjava’ is not operational. To run this service, first recompile the Java source.

    please help me step by step process

    thanks advanced


    #webMethods-Architecture
    #webMethods
    #webMethods-General
    #Integration-Server-and-ESB


  • 8.  RE: WebMethods Examples

    Posted Mon April 05, 2010 01:42 PM

    in server show me error

    Failed to read class JavaProblem from input stream


    #Integration-Server-and-ESB
    #webMethods-General
    #webMethods-Architecture
    #webMethods


  • 9.  RE: WebMethods Examples

    Posted Mon April 05, 2010 04:42 PM

    What is the error that is shown when you save the service?

    The imports you have on the shared tab on not necessary.


    #webMethods-General
    #Integration-Server-and-ESB
    #webMethods-Architecture
    #webMethods


  • 10.  RE: WebMethods Examples

    Posted Tue April 06, 2010 07:30 AM

    There are few things that you might like to check in your example:

    The input/output variables are case sensitive. In your code you are referring to input/output variables as “S1” & “S”.

    As Rob has already indicated, above imports are actually not required.

    It could not be the cause of error, however above source is also looks redundant.


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-Architecture
    #webMethods-General


  • 11.  RE: WebMethods Examples

    Posted Fri November 26, 2010 12:13 PM

    This error is shown because your clss is not compiled ,so first set the extended variables in the IS>settings>extended>edit extended settings in that set

    watt.server.compile=C:\webMethods7.1\jvm\win150\bin\javac -classpath {0} -d {1} {2}
    watt.server.compile.unicode=C:\webMethods7.1\jvm\win150\bin\javac -encoding Unicode -classpath {0} -d {1} {2}

    Regards
    Rajesh


    #webMethods-General
    #webMethods-Architecture
    #Integration-Server-and-ESB
    #webMethods