• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Webservice in Weblogic

 
Ranch Hand
Posts: 295
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am exposing an API in my Session Bean as Web Service in Weblogic6.1sp2 as:
public ArrayList getUserList();
Question is:
1. As Weblogic does not support ArrayList object type, how can I capture the object back in one of my web service client?
2. How also can I capture the String return value of the result from my client?
3. Is there any XML file which I need to change to enable this object type to be passed from my Java application and to be understood by the other application?
Thanks a lot.
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can use bea workshop or apache soap to write and deploy your web service. these tools is convinent to use a bean(class) as parameter or return and no need to edit xml yourself
 
reply
    Bookmark Topic Watch Topic
  • New Topic