36
Points
Questions
15
Answers
7
-
I am not using java stub.But i am trying now to use java stub.
When i run in SOAP UI i am getting below response.
<S:Envelope >
<S:Body>
<ns0:Fault >
<faultcode>ns0:Client</faultcode>
<faultstring>Cannot find dispatch method for {}updateObject</faultstring>
</ns0:Fault>
</S:Body>
</S:Envelope>I am using below code to update list value.
<soapenv:Envelope >
<soapenv:Body>
<updateObject>
<request>
<requests>
<classIdentifier>EnvironmentalChangeOrder</classIdentifier>
<objectNumber>EC00097</objectNumber>
<data rowId=”0″>
<changeCategory xsi_type=”AgileListEntryType” attributeId=”1060″>
<selection>
<id/>
<apiName/>
<value>Rework Field</value>
</selection>
</changeCategory>
</data>
</requests>
</request>
</updateObject>
</soapenv:Body>
</soapenv:Envelope>And i checked base id in java client which is same as i given above.
- 3696 views
- 9 answers
- 0 votes
-
Hi Prasaat,
I am not able find jar file to invoke stub object.
I am using “com.oracle.webservices.wls.jaxws-wlswss-client.jar” but when i imported sample codes 9.3.5 of JAX-WS unable to find implementation jar specific to import
“com.agile.ws.schema.common.v1.jaxws.”
Please let me know implementation jar file specific to above package with a downloadable URL.Thanks in Advance……………………….- 3696 views
- 9 answers
- 0 votes
-
- 2735 views
- 4 answers
- 0 votes
-
Hi Prasaath,
Thanks for your quick reply…..
Below is my xml response.
<S:Envelope >
<S:Body>
<ns0:updateObjectResponse >
<response>
<messageId xsi_nil=”true” />
<messageName xsi_nil=”true” />
<statusCode>FAILURE</statusCode>
<exceptions>
<id>0</id>
<exception>
<identifier>
<id>6164786</id>
<name>Part</name>
<displayName>P00001</displayName>
</identifier>
<exceptionId>60086</exceptionId>
<message xsi_nil=”true” />
<cause xsi_nil=”true” />
</exception>
</exceptions>
</response>
</ns0:updateObjectResponse>
</S:Body>
</S:Envelope>Please help me how can i resolve this…
Thanks in Advance…………………………
- 3696 views
- 9 answers
- 0 votes
-
ITable affTable= item.getTable(ItemConstants.TABLE_BOM);
Iterator it1=affTable.iterator();
while(it1.hasNext())
{
IRow row=(IRow) it1.next();
ICell cell = row.getCell(ItemConstants.ATT_BOM_BOM_TEXT01);def v2 = row.getCell(ItemConstants.ATT_BOM_BOM_NUMERIC01).toDouble();
v3 = (v1.multiply(v2)).toString();
cell.setValue(v3);
}In above code when i define
def v2 = obj.getValueByAttId(ItemConstants.ATT_BOM_BOM_NUMERIC01).toDouble();It fetches the value from last bom Table and performing multiplication.
when using def v2 = row.getCell(ItemConstants.ATT_BOM_BOM_NUMERIC01).toDouble();
We are getting bellow exception.
No signature of method: com.agile.api.pc.CellRedlined.toDouble() is applicable for argument types: () values: {}Please help me how can i fix this.
Thanks in Advance……
- 2334 views
- 2 answers
- 0 votes
-
- 2311 views
- 4 answers
- 0 votes
-
Hi Antonio,
I am able to find date but i need a particular time .
For example:
If the change made at same day couple of times.In this we need to find latest change.
How we can able to find that latest change by using latest updated time..In this case i need a particular time to get latest change.
NOTE: In UI it is giving with time stamp along with date,but in database its stored only date is stored.
Regards,
Dinesh.- 2455 views
- 3 answers
- 0 votes