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.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
Expand all | Collapse all

Web Services generation

  • 1.  Web Services generation

    Posted 05/28/03 03:32 PM

    Hi,

    I am kinda new to web services as such but have worked on webMethods 4.6 for a while now. Is there a quick guide anywhere which explains web services in general and how do we publish a webMethods service as a web service. From what i understand web services usually need UDDI and data goes as SOAP messages. Is there a parallel here ? Or if not, any pointers as to who i can relate both.

    regds
    Radhika


    #soa
    #API-Management
    #webMethods


  • 2.  RE: Web Services generation

    Posted 05/28/03 03:48 PM

    Hi Radhika,

    Please go thru the following guide , which will give you complete understanding of webServices.

    webMethods6\Developer\doc\guides\ISWebServicesGuide.pdf

    If you still need more info to create a webService…please let me know I do give you the steps to create a simple test webService.

    Thanks,
    -GV


    #webMethods
    #API-Management
    #soa


  • 3.  RE: Web Services generation

    Posted 05/28/03 03:57 PM

    Hi GV,

    Thanks for the input. The next problem is that i do not have webMethods 6.0. I have 4.6 which does not have this pdf. Can you send it across to me ?
    I will try and go through this by tomm and if i have any clarifications, i can get back to you.
    Thanks a lot.
    You can directly send me the pdf at radhika.shekar@wipro.com

    regds
    Radhika


    #soa
    #webMethods
    #API-Management


  • 4.  RE: Web Services generation

    Posted 05/28/03 04:05 PM

    Since it isn’t legal to pass around parts of any commercial software product, how about getting the docs from webMethods Advantage?

    Both the WebServices Guide and the Soap Developers Guide can be found at:
    [url=“http://advantage.webmethods.com/cgi-bin/advantage/main.jsp?w=0&s=3231588511&targChanId=-536882844”]http://advantage.webmethods.com/cgi-bin/advantage/main.jsp?w=0&s=3231588511&targChanId=-536882844[/url]


    #webMethods
    #API-Management
    #soa


  • 5.  RE: Web Services generation

    Posted 05/28/03 04:14 PM

    Yes Radhika, what Fred was saying is true.

    Please go thru the advantage site and you will get all the documentation.

    Please let me know, If you have any technical problems.

    Thanks,
    -GV


    #webMethods
    #soa
    #API-Management


  • 6.  RE: Web Services generation

    Posted 05/28/03 04:28 PM

    Thanks a lot guys. I have downloaded the pdf and will go thru it.

    regds
    Radhika


    #API-Management
    #webMethods
    #soa


  • 7.  RE: Web Services generation

    Posted 05/28/03 06:12 PM

    Radhika:

    Regarding webServices realtime info…In the Advantage website browse under Forums/webServices threads section …where you can get a better sketch with FAQs,troubleShootings etc… related to it.

    Regards,


    #API-Management
    #soa
    #webMethods


  • 8.  RE: Web Services generation

    Posted 05/30/03 08:47 PM

    Radhika,

    Here is webServices Generation tutorial…

    [url=“wmusers.com”]wmusers.com

    -GV


    #webMethods
    #API-Management
    #soa


  • 9.  RE: Web Services generation

    Posted 04/29/04 03:41 PM

    Hi, I hope anyone can help.
    A partner of ours is trying to call my webservice, but I only get this error:
    2004-04-29 16:02:53 GMT+02:00 [ISC.0088.0001E] SOAPException: [ISS.0088.9134] Exception occurred while processing the body o
    f the message.

    When I set this debug level of the integration server to 10, I also noticed the follwing entry.
    4-04-29 16:02:53 GMT+02:00 [ISS.0015.0004V4] Service Pre_Campaign_Process.iGrade:receiveCampaignData failed ACL access ch
    ing for user Default

    But I use the Administrator account from the client’s side, so I don’t know how ACL’s can be an issue.
    The client is using my WSDL file and generated code in a .net framework. It seems to me that there is an authorization problem. Where can I get sample code for c-sharp calling a webMethods webservice?
    Thanks


    #webMethods
    #soa
    #API-Management


  • 10.  RE: Web Services generation

    Posted 04/30/04 12:40 AM

    Hmmm. Is the .Net web services client setting the realm to “webMethods”?

    Mark


    #webMethods
    #API-Management
    #soa


  • 11.  RE: Web Services generation

    Posted 08/06/04 11:05 AM

    Dear Mark

    I am also getting a similar error .My client is using .NET .When I set the ACL to anonymous it is working fine ,but when I change the ACL settings it is throwing the error

    [ISC.0088.0001E] SOAPException: [ISS.0088.9134] Exception occurred while processing the body o
    f the message.

    Can you please elaborate where exactly this needs to be the “realm to webMethods” .DO we need to do any changes or customization on webMethods side for authenticating .NET clients


    #API-Management
    #soa
    #webMethods


  • 12.  RE: Web Services generation

    Posted 08/06/04 02:15 PM

    Is your server accepting Basic Authentication? How are your credentials being passed from your webMethods client to your .Net web service? Unless your client can pass NTLM credentials the only option you have is to use Basic Authentication. That is, until both platforms support the new WS-Security model for web services.


    #webMethods
    #soa
    #API-Management


  • 13.  RE: Web Services generation

    Posted 08/06/04 04:14 PM

    Srinivas,

    Changing to Anonymous is a temporary resolution,Actually using the ISAdminConsole webpage look under the Security/ACLs link and here create an ACL for that .Net user that is invoking your service.

    If you are not clear on this settings,then please go thru the ISAdministratorUserguide and search for ACL section.

    HTH,


    #soa
    #API-Management
    #webMethods


  • 14.  RE: Web Services generation

    Posted 08/06/04 05:38 PM

    I don’t have Visual Studio .Net on my workstation, but a few Google searches turned up the following C# code that might give you some help:

    [quote] NetworkCredential* myCred = new NetworkCredential( SecurelyStoredUserName,SecurelyStoredPassword,SecurelyStoredDomain); CredentialCache* myCache = new CredentialCache(); myCache->Add(new Uri(S"[url="http://www.contoso.com"]www.contoso.com[/url]"), S"Basic", myCred); myCache->Add(new Uri(S"app.contoso.com"), S"Basic", myCred); WebRequest* wr = WebRequest::Create(S"[url="http://www.contoso.com"]www.contoso.com[/url]"); wr->Credentials = myCache; [/quote]

    See the online .Net documentation for more details.

    Mark


    #webMethods
    #API-Management
    #soa


  • 15.  RE: Web Services generation

    Posted 08/06/04 08:09 PM

    Oops, the code I posted was for C++ not C#. Here’s the C# equivalent:

    [quote] NetworkCredential myCred = new NetworkCredential( SecurelyStoredUserName,SecurelyStoredPassword,SecurelyStoredDomain);

    CredentialCache myCache = new CredentialCache();

    myCache.Add(new Uri(“www.contoso.com”), “Basic”, myCred);
    myCache.Add(new Uri(“app.contoso.com”), “Basic”, myCred);

    WebRequest wr = WebRequest.Create(“www.contoso.com”);
    wr.Credentials = myCache;
    [/quote]
    -mdc


    #soa
    #webMethods
    #API-Management