Koundinya (Sudhakar Chavali) wrote:

Hello All,

Here is the scenario

I am using Slide project to access MS-Exchange Server mails.

In MS Exchange Server API, the mails will be created with their subjects.If the mail 
subject is
Test#10 for an example it creates Test#10.eml object in ms exchange server.

if i use the following procedure to create the mail object, url is not building 
properly and i am
getting the wrong out put
url = new org.apache.commons.httpclient.HttpURL(username, password,
            hostname, port, strPath);

for an example if this is the URL
http://comp62/exchange/Administrator/Inbox/Test%20#123.EML

This is an absolute HTTP URL ("http://comp62/exchange/Administrator/Inbox/Test%20";) plus a fragment identifier ("#123.EML").


You probably need: "http://comp62/exchange/Administrator/Inbox/Test%20%23123.EML";

> ...

Best regards, Julian

--
<green/>bytes GmbH -- http://www.greenbytes.de -- tel:+492512807760

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to