Source Code Cross Referenced for MailUtils.java in  » ESB » synapse » org » apache » synapse » transport » mail » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ESB » synapse » org.apache.synapse.transport.mail 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *  Licensed to the Apache Software Foundation (ASF) under one
003:         *  or more contributor license agreements.  See the NOTICE file
004:         *  distributed with this work for additional information
005:         *  regarding copyright ownership.  The ASF licenses this file
006:         *  to you under the Apache License, Version 2.0 (the
007:         *  "License"); you may not use this file except in compliance
008:         *  with the License.  You may obtain a copy of the License at
009:         *
010:         *   http://www.apache.org/licenses/LICENSE-2.0
011:         *
012:         *  Unless required by applicable law or agreed to in writing,
013:         *  software distributed under the License is distributed on an
014:         *   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015:         *  KIND, either express or implied.  See the License for the
016:         *  specific language governing permissions and limitations
017:         *  under the License.
018:         */
019:
020:        package org.apache.synapse.transport.mail;
021:
022:        import org.apache.synapse.transport.base.BaseUtils;
023:        import org.apache.commons.logging.Log;
024:        import org.apache.commons.logging.LogFactory;
025:        import org.apache.axiom.soap.SOAP12Constants;
026:        import org.apache.axiom.soap.SOAP11Constants;
027:
028:        import javax.mail.Message;
029:        import javax.mail.MessagingException;
030:        import javax.mail.Multipart;
031:        import javax.mail.internet.MimeMessage;
032:        import javax.mail.internet.MimeBodyPart;
033:        import java.io.InputStream;
034:        import java.io.IOException;
035:
036:        public class MailUtils extends BaseUtils {
037:
038:            private static final Log log = LogFactory.getLog(MailUtils.class);
039:
040:            private static BaseUtils _instance = new MailUtils();
041:
042:            public static BaseUtils getInstace() {
043:                return _instance;
044:            }
045:
046:            /**
047:             * Get a String property from FileContent message
048:             *
049:             * @param message  the File message
050:             * @param property property name
051:             * @return property value
052:             */
053:            public String getProperty(Object message, String property) {
054:                try {
055:                    Object o = ((Message) message).getHeader(property);
056:                    if (o instanceof  String) {
057:                        return (String) o;
058:                    } else if (o instanceof  String[]
059:                            && ((String[]) o).length > 0) {
060:                        return ((String[]) o)[0];
061:                    }
062:                } catch (MessagingException e) {
063:                }
064:                return null;
065:            }
066:
067:            public InputStream getInputStream(Object message) {
068:                try {
069:                    if (message instanceof  MimeMessage) {
070:                        MimeMessage msg = (MimeMessage) message;
071:                        if (msg.getContent() instanceof  Multipart) {
072:                            MimeBodyPart firstTextPart = null;
073:
074:                            Multipart mp = (Multipart) msg.getContent();
075:                            for (int i = 0; i < mp.getCount(); i++) {
076:                                MimeBodyPart mbp = (MimeBodyPart) mp
077:                                        .getBodyPart(i);
078:                                String contType = mbp.getContentType();
079:
080:                                if (contType != null
081:                                        && (contType
082:                                                .indexOf(SOAP11Constants.SOAP_11_CONTENT_TYPE) != -1 || contType
083:                                                .indexOf(SOAP12Constants.SOAP_12_CONTENT_TYPE) != -1)) {
084:                                    // this part is a SOAP 11 or 12 payload, treat this as the message
085:                                    return mbp.getInputStream();
086:                                } else if (mbp != null
087:                                        && (contType.indexOf("plain/text") != -1 || contType
088:                                                .indexOf("text/plain") != -1)) {
089:                                    firstTextPart = mbp;
090:                                }
091:                            }
092:                            // if a soap 11 or soap12 payload was not found, treat first text part as message
093:                            if (firstTextPart != null) {
094:                                return firstTextPart.getInputStream();
095:                            }
096:
097:                        } else {
098:                            return ((Message) message).getInputStream();
099:                        }
100:                    }
101:                } catch (Exception e) {
102:                    handleException("Error creating an input stream to : "
103:                            + ((Message) message).getMessageNumber(), e);
104:                }
105:
106:                return null;
107:            }
108:
109:            public String getMessageTextPayload(Object message) {
110:                try {
111:                    return new String(getBytesFromInputStream(
112:                            getInputStream(message), ((Message) message)
113:                                    .getSize()));
114:                } catch (Exception e) {
115:                    if (log.isDebugEnabled()) {
116:                        log.debug(
117:                                "Error reading message payload as text for : "
118:                                        + ((Message) message)
119:                                                .getMessageNumber(), e);
120:                    }
121:                }
122:                return null;
123:            }
124:
125:            public byte[] getMessageBinaryPayload(Object message) {
126:                try {
127:                    return getBytesFromInputStream(getInputStream(message),
128:                            ((Message) message).getSize());
129:                } catch (Exception e) {
130:                    handleException(
131:                            "Error reading message payload as a byte[] for : "
132:                                    + ((Message) message).getMessageNumber(), e);
133:                }
134:                return new byte[0];
135:            }
136:
137:            public static byte[] getBytesFromInputStream(InputStream is,
138:                    int length) throws IOException {
139:
140:                byte[] bytes = new byte[length];
141:                int offset = 0;
142:                int numRead = 0;
143:
144:                try {
145:                    while (offset < bytes.length
146:                            && (numRead = is.read(bytes, offset, bytes.length
147:                                    - offset)) >= 0) {
148:                        offset += numRead;
149:                    }
150:
151:                    // Ensure all the bytes have been read in
152:                    if (offset < bytes.length) {
153:                        handleException("Could not completely read the stream to conver to a byte[]");
154:                    }
155:                } finally {
156:                    try {
157:                        is.close();
158:                    } catch (IOException ignore) {
159:                    }
160:                }
161:                return bytes;
162:            }
163:
164:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.