Questions tagged [websphere-commerce]

IBM WebSphere Commerce is IBM's e-commerce platform

IBM WebSphere Commerce forms the customer interaction platform within the Smarter Commerce portfolio.

152 questions
11
votes
7 answers

A WebGroup/Virtual Host to handle / has not been defined

I am getting following exception when trying to launch a store using Websphere commerce A WebGroup/Virtual Host to handle / has not been defined SRVE0255E: A WebGroup/Virtual Host to handle localhost:80 has not been defined. I have tried…
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
10
votes
3 answers

Lob is closed. ERRORCODE=-4470, SQLSTATE=null

I am using IBM websphere commerce and db2, have following piece of code Clob clobVar = null; if (result.elementAt(3) != null) clobVar = (Clob) result.elementAt(3); if (clobVar == null) { infoTable.put("EInfo", ""); } else { stringTemp…
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
5
votes
2 answers

EntityBean, SessionBean, databean and accessbean

I have been trying to learn about the Java beans in WebSphere Commerce but I got really confused. Please help me out. I need to know: What is the difference between EntityBean, SessionBean, DataBean and AccessBean and how do they compare? …
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
4
votes
4 answers

Can any Java based templating engine work with Websphere Commerce?

I'm a UX developer at a retail company, we use Websphere Commerce for our e-com sites. The app dev guys are in complete control of the HTML output we have to file bugs with them to get something as simple as an ID changed in HTML. HTML and front end…
belshire
  • 51
  • 4
3
votes
2 answers

What is the simplest way to interact between a SAP OMS and Websphere Commerce?

What is the simplest way to interact between a SAP OMS and Websphere Commerce? Would it be using a Websphere Adaptor for SAP or webmethods or something else? Does something else need to be considered while opting for one of these? The final system…
sarego
  • 2,957
  • 6
  • 28
  • 39
3
votes
2 answers

How to call facade from the command

In IBM WebSphere Commerce How the facade can be called from the command Instead of calling it from jsp. we call it from jsp like
3
votes
2 answers

Do I need to enable DRS to use Dynacache in Websphere Application Server Cluster

We are running a websphere commerce application with several websphere application servers configured in a cluster. We are using dynacache, so each server in the cluster will have its own cached objects in its own JVM. We are using CACHEIVL with…
rabs
  • 1,807
  • 3
  • 18
  • 29
3
votes
1 answer

Websphere Commerce: Sorting results of

Is there a way to get the IBM Websphere Commerce Foundation framework (WCF) sort data? E.g. this snippet from a Websphere Commerce JSP file:
tbsalling
  • 4,477
  • 4
  • 30
  • 51
2
votes
0 answers

Extension of REST in IBM WCS

I have been trying to write a customized REST and extend the defualt IBM REST framework, and I have been succeeded in it but the issue I have been facing is the processing time of data-import Query( written in wc-dataimport-preprocess-XXXXX.xml). It…
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
2
votes
2 answers

How to get Url Parameter in websphere commerce bean?

I am trying to get URL, tried following two methods but got 'null' commandContext. Tried some other also but got null every time. Object req = commandContext.getRequest(); com.ibm.commerce.webcontroller.HttpControllerRequestObject req1 =…
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
2
votes
2 answers

How to use getCommandContext() in handler class in WCS?

I am using the below code to execute a command from handler class which uses command context CheckUserInMemberGroupCmd checkGrpCmd = (CheckUserInMemberGroupCmd) CommandFactory.createCommand( …
Srithar
  • 41
  • 2
  • 7
2
votes
3 answers

websphere commerce - RAD - Data service layer wizard is not working

I am trying to create a new data service layer in RAD. When i select Data service layer in the wizard and on selecting next i get the below exception in the metadata logs !ENTRY org.eclipse.ui 4 0 2015-07-13 16:38:49.199 !MESSAGE Unhandled event…
Giridhar M
  • 21
  • 1
2
votes
1 answer

How to get part description for catalogentryID

I am using IBM WCS 7 aurorab2b store. I want to retrieve the description of a partNumber entered by user. I am getting catentryID = 14726 and langId as -1. I tried the following way and I am getting javax.ejb.DuplicateKeyException when creating…
Narendra Jaggi
  • 1,297
  • 11
  • 33
2
votes
2 answers

OrderItemAddCmd vs OrderItemUpdate command WCS

OrderItemAddCmd can add new items to the cart & order,ortderItems table. But to add items to an existing order Can we use OrderItemAddCmd or OrderItemUpdateCmd has to be used?
Narendra Jaggi
  • 1,297
  • 11
  • 33
2
votes
2 answers

session is getting reset in IBM Websphere Commerce

I am setting a session in the jsp using scriplet in IBM WCS and setting a value here but when reloading the page the session value is getting lost . here is how I am setting session attribute <% session.setAttribute("testMap",…
1
2 3
10 11