atg

WSDL creation in Siebel

半腔热情 提交于 2019-12-12 03:49:41
问题 We created one webservice to fetch the full product promotion structure which is based on custom version of SWI ISS Promotion IO This webservice is returning 80% of the promotion structure. As the IO don’t have any Integration component associate with Relation Ship Domain it is not returning the records associated with the Relationship domain The Relationship Domain applet is associated with the BC ISS Promotion CP Structure Domain BusComp which is VBC .It don’t have any table association

Working with ATG Rest full API addItemToOrder ERROR

孤街醉人 提交于 2019-12-12 00:55:17
问题 As advised from the question:ATG Rest full API addItemToOrder is not working I have created an organization and added the user in it null pointer exeption got cleared but,Now new error started coming up below are the server error **** debug Fri Jul 22 09:30:45 EDT 2016 1469194245004 /atg/siebel/integration/LogMessageHandler <?xml version="1.0" encoding="UTF-8" standalone="no"?> **** debug Fri Jul 22 09:30:45 EDT 2016 1469194245004 /atg/siebel/integration/LogMessageHandler <S:Envelope xmlns:S=

ATG Rest full API addItemToOrder is not working

孤者浪人 提交于 2019-12-12 00:42:30
问题 I am working on ATG Web-commerce REST Full API, addItemToOrder is not working. This is the Error: { "formError": true, "formExceptions": [ { "localizedMessage": "Unable to process the request currently. Please try again after some time", "errorCode": "atg.droplet.DropletException" } ], "concurrentUpdate": false } http://IP:Port/rest/model/atg/commerce/order/purchase/CartModifierActor/addItemToOrder I have checked the server log file, Null pointer exception is showing. /atg/dynamo/servlet

Is ATG DMS true JMS implementation

此生再无相见时 提交于 2019-12-12 00:22:51
问题 It looks like ATG's implementation of JMS is achieved through scheduler whereby it polls database in specific interval through SqlJmsProvider component. I do agree that ATG's DMS does provide with all JMS feature like Queue, Topic, Durable Subscribers, Retry etc... but isin't using a scheduler to poll the DB to send ATG Order to Fulfillment an overkill ? (too many queries fired) 回答1: From the ATG Documentation it explains that there are two JMS providers available within ATG: SQL JMS Local

Need to Check whether password contains same sequence of characters of UserName in JAVA/ATG

匆匆过客 提交于 2019-12-11 03:52:59
问题 I am working on an ATG project. My requirement is "the password should not contain the same sequence of characters as in UserName". For eg. If the userName is abcdef@123.com. Then pw should not be def@123.com The pw should not include same SEQUENCE of characters. It can have the characters as in userName. But the ordering/sequence of characters shouldnot be the same. How can I check this? Thanks, Treesa 回答1: You can do the following to check if the password contains any sequence of the

How to Mock repository calls ATG

試著忘記壹切 提交于 2019-12-08 09:07:07
问题 Can we use Mockito to write tests for methods which implements repository calls? For example below method is using Named query to get eBooks from a Book Repository - public RepositoryItem[] getEBooks(DynamoHttpServletRequest request) { RepositoryItem[] results = null; Repository rep = (Repository) request.resolveName("/atg/products/BookRepository"); try { RepositoryItemDescriptor desc = rep.getItemDescriptor("Book"); RepositoryView view = desc.getRepositoryView(); if (view instanceof

What does it mean by $scope=global in ATG..?

自闭症网瘾萝莉.ら 提交于 2019-12-04 16:10:28
According to the documentation, Global: Component is shared among all users. Session: Separate instances of the component are provided to each user. Is that means, for global component, there is only one instance for the whole nucleus system.. If this is true, how does it valid for components like ‘/atg/dynamo/transaction/TransactionManager’ and most of the droplets..? Because those components are used by several users at a single moment Edited: I understood the ‘TransactionManager’ behavior. According to the definition there should be single transaction manager, and he should keep transaction

Is it possible to do Hotswapping of ATG classes

半世苍凉 提交于 2019-12-04 15:31:58
The deployment we follow is that we use runAssembler.bat to build an ear file and deploy it in a app server. We are using weblogic and jboss for testing purposes of the modules we built. However for every small change, we need to run runAssembler and build a new ear and deploy it in app server and restart the server. I would like to find out if anyone figured out a way to do Hotswapping of class files which are generated by the code we write in ATG environment in either weblogic or jboss. radimpe By attaching your IDE to your Application server on the Debug port it is generally possible to do

Setting parent jsp variables in child jsp

混江龙づ霸主 提交于 2019-12-04 03:58:39
问题 I have a parent jsp a.jsp which includes another jsp b.jsp. I am calculating some values in b.jsp which needs to be used in parent jsp a.jsp , which will pass this calculated value to another jsp say c.jsp. How can I evaluate value in child jsp and pass it to parent jsp before that page completely loads? 回答1: How are you including the "child" jar inside the parent? static or dynamic import? if you have <%@ include file="myFile.jsp" %> change it by <jsp:include file="myFile.jsp" /> then in the

How do you organise your ATG projects?

萝らか妹 提交于 2019-12-04 03:06:59
If you develop for ATG Dynamo, how do you structure your modules and dependencies? How do you structure the projects? source directories, JARs configs etc. How do you build and deploy? What tools do you use? We have a monolithic architecture with a single ATG module. We originally developed this site with JHTML and have since created a (monolithic) J2EE web app within this ATG module and converted all of our JHTML to JSP. Our project on disk looks like this: root deploy class (compile java to here) config (primary configpath) docroot (JHTML docroot) dev (configpath for dev environment) test