Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~98 People Reached
Favorite Forums
Favorite Tags
Member Avatar for tonejaquim

hi, im using webdav, httpclient api, to send email to exchange 2007 with the following code i send a message successfully: String strTempRelativeURI="https://webmail/exchange/user@email.com/Drafts/"; [code] PutMethod pm = new PutMethod ("https://webmail/exchange/user@email.com/Drafts/test5.eml/"); pm.setRequestBody(body); client.executeMethod(pm); move(strTempRelativeURI + "test5.EML", strSubRelativeURI, null); public static void move(String urlOrigem, String urlDest, HttpConnection conn) throws Exception { MoveMethod …

0
98