saravana kumar

Ranch Hand
+ Follow
since Jun 25, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by saravana kumar

Hi All,

I have fixed this issue by setting oCMenu.pagecheck=0 in the coolmenu-config.js (default is set to 1 )
Hope this would helpful for others.

Regards
-Saran
15 years ago
Hi All,

I am using struts coolmenu to display menus in my project. the problem is , sub menu items are always displaying in the top left corner of screen.

does anyone know how to solve this issue ?

(note : i am using coolmenu3.js, coolmenu-config.js, coolmenu.css and gobal.css)

thanks.
15 years ago
Hi all,

I am trying to implement struts coolmenu in my project. the problem is , the sub menu ( item) always displaying on the left most screen. it supposed to be displayed bottom of the main menu. i am using coolmenus3.js and coolmenu-config.
[ August 06, 2008: Message edited by: saravana kumar ]
15 years ago
Hi All,

I would like to send message to MQ . What is the best approach of coding ? should i use jms api or mq api ?

Please advice me.

Thanks
16 years ago
Hi All,

How to integrate MQ with websphere server. i have created BUS on websphere server. after that i don't know how to integrate MQ with websphere. i would like to send messages to MQ where my application running on Websphere.

If anyone know how to do that please let me know.

Thanks a lot.
16 years ago
Hi All,

How can i have application context in business layer ? i need to invoke DAO's from my business service which will be later convert to web service.

i am not able to call DAO's in my business service since its out of application context.

please help me how to solve this issue.
Yes i am using UTF-8. i have solved this issue by generating soap requests using apache rpc.

earlier i created connection's call and parameter using apache axis. since i changed to rpc, all my issues are resolved.
16 years ago
Sorry

its sending as

& lt;data xsi:type="xsd:string"& gt;& lt;![CDATA[& lt;userid& gt;dfs0000& lt;/userid& gt;& lt;spare pnlog=& quot;8060-160& quot;/& gt;]]& gt;& lt;/data& gt;

[ June 28, 2007: Message edited by: saravana kumar ]
[ June 28, 2007: Message edited by: saravana kumar ]
16 years ago
Hi All,

How to send xml data in soap request ?

I would like to send the following data as it is.

{{{
<data xsi:type="xsd:string"><![CDATA[<userid>dfs0000</userid><spare pno="8060-160"/>]]></data>}}}

but it sending as

{{{
<data xsi:type="xsd:string"><![CDATA[<userid>dfs0000</userid><spare pn0="8060-160"/>]]></data>
}}}

Thanks
16 years ago
Hi all,

What is the best MQ series book for the beginner. i am novice to MQ series. i would to know how to configure MQ series like creating queue,session..etc.

Please advice me. even if is there any online material please let me know.

Thanks a lot.
16 years ago
I have solved this issue
17 years ago
Hi All,

I am getting the following error when receiving SOAP response.

WebServicesFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
faultString: org.xml.sax.SAXException: WSWS3140E: Error: Deserializing parameter 'return': could not find deserializer for type {http://websphere.ibm.com/webservices/}Void
faultActor: null
faultDetail:

org.xml.sax.SAXException: WSWS3140E: Error: Deserializing parameter 'return': could not find deserializer for type {http://websphere.ibm.com/webservices/}Void
at com.ibm.ws.webservices.engine.WebServicesFault.makeFault(WebServicesFault.java:179)
at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:490)
at com.ibm.ws.webservices.engine.client.Call.invoke(Call.java:1372)
at com.ibm.ws.webservices.multiprotocol.AgnosticCall.invoke(AgnosticCall.java:169)



please help me how to solve this issue.

i am using websphere 6.0.1

Thanks
17 years ago
Hi All,

i tried to send SOAP request . my java proxy generates the SOAP request as follows

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<p492:getOrderInformation xmlns 492="http://temp.org/DB2WebService/ss/ss-aa-repairs.dadx/WSDL">
<arg0>565656</arg0>
</p492:getOrderInformation>
</soapenv:Body>
</soapenv:Envelope>

instead of

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header/>
<soapenv:Body>
<p492:getOrderInformation xmlns 492="http://temp.org/DB2WebService/ss/ss-repairs.dadx/WSDL">
<WCLSR>565656</WCLSR></p492:getOrderInformation>
</soapenv:Body>
</soapenv:Envelope>

because of this i am getting the follwing error.

Error 400: com.ibm.etools.webservice.rt.dxx.exception.DADXRuntimeException: parameter arg0 out of sequence: WCLSR expected.

here is my client code

Call call = (Call)OrderService.createCall();

call.setTargetEndpointAddress("http://182.130.1.112/www-dev-ws/GcoWebService/ss/ss-repairs.dadx/SOAP");
call.setOperationName(new QName("http://182.130.1.112/www-dev-ws/GcoWebService/ss/ss-warranty-repairs.dadx/WSDL","getOrderInformation"));

return responseReturn = (return) call.invoke(new Object[] {new BigDecimal(claimNumber)} );


Please help me how can let my client code generate the request correctly ?

thanks
17 years ago
Hi All ,

i am getting the following error when binding a bean with another one.

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'XXXXDAO' defined in class path resource [com/xxxxxxxxxxx/xxxx/dataaccess/yyyyyyy/yyyyHibernateAppContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: net/sf/hibernate/SessionFactory
java.lang.NoClassDefFoundError: net/sf/hibernate/SessionFactory
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:1784)
at java.lang.Class.getDeclaredMethods(Class.java:1244)
at java.beans.Introspector$1.run(Introspector.java:1144)
at java.security.AccessController.doPrivileged1(Native Method)
at java.security.AccessController.doPrivileged(AccessController.java:287)
at java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:1142)
at java.beans.Introspector.getTargetMethodInfo(Introspector.java:1007)
at java.beans.Introspector.getBeanInfo(Introspector.java:388)
at java.beans.Introspector.getBeanInfo(Introspector.java:159)
at java.beans.Introspector.getBeanInfo(Introspector.java:220)
at java.beans.Introspector.<init>(Introspector.java:369)
at java.beans.Introspector.getBeanInfo(Introspector.java:159)
at org.springframework.beans.CachedIntrospectionResults.<init>(CachedIntrospectionResults.java:150)
at org.springframework.beans.CachedIntrospectionResults.forClass(CachedIntrospectionResults.java:87)
at org.springframework.beans.BeanWrapperImpl.setIntrospectionClass(BeanWrapperImpl.java:237)
at org.springframework.beans.BeanWrapperImpl.setWrappedInstance(BeanWrapperImpl.java:195)
at org.springframework.beans.BeanWrapperImpl.setWrappedInstance(BeanWrapperImpl.java:179)
at org.springframework.beans.BeanWrapperImpl.<init>(BeanWrapperImpl.java:132)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:487)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:362)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:145)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:283)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:313)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:87)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:72)
at org.springframework.test.AbstractSpringContextTests.loadContextLocations(AbstractSpringContextTests.java:135)
at org.springframework.test.AbstractDependencyInjectionSpringContextTests.loadContextLocations(AbstractDependencyInjectionSpringContextTests.java:224)
at org.springframework.test.AbstractSpringContextTests.getContext(AbstractSpringContextTests.java:115)
at org.springframework.test.AbstractDependencyInjectionSpringContextTests.setUp(AbstractDependencyInjectionSpringContextTests.java:192)
at junit.framework.TestCase.runBare(TestCase.java:125)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:436)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:311)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)


here is the declaration
<bean id="xxxxxxDAO" class="com.xxxxxxxx.xxxx.dataaccess.yyyyyyy.XXXXXDAO">
<property name="sessionFactory"><ref local="sessionFactory"/></property>
</bean>


please guide me how to solve this issue. source and class file are in the same project.
Hi All,

I am getting the following error when i send the request.

Jan 26, 2007 2:13:03 PM com.ibm.ws.webservices.engine.enterprise
INFO: WSWS3243I: Info: Mapping Exception to WebServicesFault.
Jan 26, 2007 2:13:04 PM com.ibm.ws.webservices.engine.enterprise
INFO: MSG_EXCEPTION_LOGGED
java.net.ConnectException: Connection refused: no further information

please help me to solve this problem.

thanks
17 years ago