winky tinky

Greenhorn
+ Follow
since Sep 01, 2008
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 winky tinky

Hello !

i've got web service which receives an attachment from .NET service as DIME , adds this attachment to it's own response and sends back to client which accepts only MIME attachments.
When client receives attachment some data seems to be lost, if original file size were 356 000 bytes , client receives only 208 000 bytes.

would be glad to hear any solutions how to solve this! ^^,

Thanks in advance !

code looks something like that :

MyWebService service = new MyWebServiceLocator();

MyWebServiceSoap port = service.getenotarMyWebServiceSoap(new URL(serviceurl)); // .NET setvice url

org.apache.axis.client.Stub stub = (Stub) port;
stub.setTimeout(1000 * 60);
stub.setUsername(login);
stub.setPassword(pwd);
stub._setProperty(AxisEngine.PROP_DOMULTIREFS, new Boolean("false"));
stub._setProperty(Call.ATTACHMENT_ENCAPSULATION_FO RMAT,Call.ATTACHMENT_ENCAPSULATION_FORMAT_DIME);

DocumentInfo dinf = port.downloadDocument(dokument_id); // gets document from .NET service

Object[] attachments = stub.getAttachments();

MessageContext.getCurrentContext().getResponseMess age().getAttachmentsImpl().setSendType(Attachments .SEND_TYPE_MIME);

try{
AttachmentPart ap = (AttachmentPart)attachments[0]; // always returns only 1 attachment .
MessageContext.getCurrentContext().getResponseMess age().addAttachmentPart(ap);

stub.clearAttachments();
}
catch (AxisFault e){
throw e;
}
15 years ago