• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Consume webservice in themes

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have created a new theme for my application in websphere portal server.
Now, I want to comsume a webservice to display some parameter on the screen.
Any idea, how to go for it?


Thanks & Regards,
Chinmay
 
Ranch Hand
Posts: 192
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you please make your question clear ? What do you mean by consume web-services in themes ? Do you want set any parameters in themes with the results of a web-service ?

Thanks
 
author and cow tipper
Posts: 5009
1
Hibernate Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Create a Servlet that wraps the web service and hides all of the nasty details. Then have the result of the Servlet wrapped up on a custom tag. Then, place the custom tag in the theme.

The code becomes easy to manage in the Servlet, complexity is hidden from the custom tag, and the only thing that appears in the theme is the tag itself.

That's a direction. Doesn't need to be a Servlet. Could be just a POJO. But you don't want to pollute a theme any more than a theme is probably already poluted.

Good luck.

-Cameron McKenzie
 
A berm makes a great wind break. And we all like to break wind once in a while. Like this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic