[JBoss-user] [Installation, Configuration Deployment] - Re: java.io.IOException: No serializer found for class gov.e

2006-01-06 Thread svelidanda
Hi,

  You may need to create the Serializer/Deserializer class using any JBoss 
specific ant task.

 That may help you.

Sriniva.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3916049#3916049

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3916049


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: java.io.IOException: No serializer found for class gov.e

2006-01-06 Thread svelidanda
Sorry, If you have the serializer then you have to register it in your client 
(if it is external) thru some api..


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3916050#3916050

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3916050


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: java.io.IOException: No serializer found for class gov.e

2006-01-06 Thread svelidanda
Post your client code so that I may try to find any bug..

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3916051#3916051

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3916051


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration Deployment] - Re: java.io.IOException: No serializer found for class gov.e

2006-01-06 Thread [EMAIL PROTECTED]
Hi,
   I am pasting my web-service client code:

public static void main(String[] args) {
String urlstr = 
http://acs-fa-1148:8080/quality-control/QualityControlService?wsdl;;
System.out.println(Contacting webservice at  + urlstr);
try{
URL url = new URL(urlstr);
QName qname = new QName(http://webservice.payment.fsa.ed.gov/;, 
QualityControlServiceService);
ServiceFactory factory = ServiceFactory.newInstance();
Service service = factory.createService(url, qname);

QualityControlListingReqEDXDTO qcListByCycleDTO =
new QualityControlListingReqEDXDTO();
RequestPageInfoDTO iRequestPageInfoDTO = new RequestPageInfoDTO();
iRequestPageInfoDTO.setPageSize(10);
qcListByCycleDTO.setRequestPageInfoDTO(iRequestPageInfoDTO);

QualityControlService qcService = (QualityControlService) 
service.getPort(QualityControlService.class);
PageableListDTO oDTO = null;
try {
oDTO = (PageableListDTO)qcService.getQualityControlListing(qcListByCycleDTO);
} catch (java.lang.reflect.UndeclaredThrowableException ioex){
System.out.println( Getting quality control listing: 
+ioex.getUndeclaredThrowable());
} catch (Exception ioex){
System.out.println( Getting quality control listing: +ioex);
}
System.out.println(output: + oDTO);
} catch (Exception ex){
System.out.println( Failed: +ex);
}   
}

Code fails inside last try...catch block. 

Thanks,
Neeraj

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3916141#3916141

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3916141


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user