Source Code Cross Referenced for BeanShellContainer.java in  » ERP-CRM-Financial » SourceTap-CRM » org » ofbiz » base » container » 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 » ERP CRM Financial » SourceTap CRM » org.ofbiz.base.container 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $Id: BeanShellContainer.java,v 1.1 2004/03/13 17:49:46 ajzeneski Exp $
003:         *
004:         * Copyright (c) 2004 The Open For Business Project - www.ofbiz.org
005:         *
006:         * Permission is hereby granted, free of charge, to any person obtaining a
007:         * copy of this software and associated documentation files (the "Software"),
008:         * to deal in the Software without restriction, including without limitation
009:         * the rights to use, copy, modify, merge, publish, distribute, sublicense,
010:         * and/or sell copies of the Software, and to permit persons to whom the
011:         * Software is furnished to do so, subject to the following conditions:
012:         *
013:         * The above copyright notice and this permission notice shall be included
014:         * in all copies or substantial portions of the Software.
015:         *
016:         * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
017:         * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
018:         * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
019:         * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
020:         * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
021:         * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
022:         * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
023:         *
024:         */
025:        package org.ofbiz.base.container;
026:
027:        import bsh.Interpreter;
028:        import bsh.EvalError;
029:
030:        import org.ofbiz.base.util.Debug;
031:
032:        /**
033:         * BeanShellContainer - Container implementation for BeanShell
034:         *
035:         * @author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
036:         *@version    $Revision: 1.1 $
037:         * @since      3.0
038:         */
039:        public class BeanShellContainer implements  Container {
040:
041:            public static final String module = JettyContainer.class.getName();
042:
043:            protected Interpreter bsh = null;
044:            protected String name;
045:            protected int port;
046:
047:            /**
048:             * Start the container
049:             *
050:             * @param configFileLocation Location of master OFBiz configuration file
051:             * @return true if server started
052:             * @throws ContainerException
053:             *
054:             */
055:            public boolean start(String configFileLocation)
056:                    throws ContainerException {
057:                // get the container config
058:                ContainerConfig.Container cfg = ContainerConfig.getContainer(
059:                        "beanshell-container", configFileLocation);
060:
061:                // get the app-name
062:                ContainerConfig.Container.Property appName = cfg
063:                        .getProperty("app-name");
064:                if (appName == null || appName.value == null
065:                        || appName.value.length() == 0) {
066:                    throw new ContainerException(
067:                            "Invalid app-name defined in container configuration");
068:                } else {
069:                    this .name = appName.value;
070:                }
071:
072:                // get the telnet-port
073:                ContainerConfig.Container.Property telnetPort = cfg
074:                        .getProperty("telnet-port");
075:                if (telnetPort == null || telnetPort.value == null
076:                        || telnetPort.value.length() == 0) {
077:                    throw new ContainerException(
078:                            "Invalid telnet-port defined in container configuration");
079:                } else {
080:                    try {
081:                        this .port = Integer.parseInt(telnetPort.value);
082:                    } catch (Exception e) {
083:                        throw new ContainerException(
084:                                "Invalid telnet-port defined in container configuration; not a valid int");
085:                    }
086:                }
087:
088:                // create the interpreter
089:                bsh = new Interpreter();
090:
091:                // configure the interpreter
092:                if (bsh != null) {
093:                    try {
094:                        bsh.set(name, this );
095:                    } catch (EvalError evalError) {
096:                        throw new ContainerException(evalError);
097:                    }
098:                    try {
099:                        bsh.set("portnum", (port - 1));
100:                    } catch (EvalError evalError) {
101:                        throw new ContainerException(evalError);
102:                    }
103:                    try {
104:                        bsh.eval("setAccessibility(true)");
105:                    } catch (EvalError evalError) {
106:                        throw new ContainerException(evalError);
107:                    }
108:
109:                    try {
110:                        bsh.eval("server(portnum)");
111:                    } catch (EvalError evalError) {
112:                        throw new ContainerException(evalError);
113:                    }
114:
115:                    Debug.logInfo("Started BeanShell telnet service on "
116:                            + (port - 1) + ", " + port, module);
117:                    Debug
118:                            .logInfo(
119:                                    "NOTICE: BeanShell service ports are not secure. Please protect the ports",
120:                                    module);
121:                    return true;
122:                } else {
123:                    return false;
124:                }
125:            }
126:
127:            /**
128:             * Stop the container
129:             *
130:             * @throws ContainerException
131:             *
132:             */
133:            public void stop() throws ContainerException {
134:                bsh = null;
135:            }
136:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.