チェンジセット 282
- コミット日時:
- 2008/04/17 17:44:52 (14 年前)
- ファイル:
-
- trunk/im-jssp-sample/.settings/org.eclipse.core.resources.prefs (更新) (2 diffs)
- trunk/im-jssp-sample/pom.xml (更新) (1 diff)
- trunk/im-jssp-sample/src/main/resources/conf/jssp-config.xml (更新) (1 diff)
- trunk/im-jssp-sample/src/main/resources/logback.xml (更新) (1 diff)
- trunk/im-jssp-sample/src/main/webapp/sample.html (更新) (1 diff)
- trunk/im-jssp-sample/src/main/webapp/sample/script/soap_client (追加)
- trunk/im-jssp-sample/src/main/webapp/sample/script/soap_client/soap_client_main.js (追加)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/im-jssp-sample/.settings/org.eclipse.core.resources.prefs
r275 r282 1 #T ue Apr 15 22:33:56JST 20081 #Thu Apr 17 16:28:15 JST 2008 2 2 eclipse.preferences.version=1 3 3 encoding//src/main/resources/org/intra_mart/common/aid/jdk/util/charset/iana2jdk.properties=Shift-JIS … … 20 20 encoding//src/main/webapp/sample/script/rhino_global/rhino_global_main.js=UTF-8 21 21 encoding//src/main/webapp/sample/script/session/session_main.html=UTF-8 22 encoding//src/main/webapp/sample/script/soap_client/soap_client_main.js=UTF-8 22 23 encoding//src/main/webapp/sample/script/xml/receive/xml_receive_main.html=UTF-8 23 24 encoding//src/main/webapp/sample/script/xml/send/xml_send_by_content_type_tag.html=UTF-8 trunk/im-jssp-sample/pom.xml
r267 r282 40 40 </dependency> 41 41 <dependency> 42 <groupId>org.intra-mart.common</groupId>43 <artifactId>im-javaee-assist-impl</artifactId>44 <version>0.1.1</version>45 <scope>runtime</scope>46 </dependency>47 <dependency>48 <groupId>org.intra-mart.common</groupId>49 <artifactId>im-javaee-assist</artifactId>50 <version>0.1.1</version>51 <scope>compile</scope>52 </dependency>53 <dependency>54 <groupId>org.intra-mart.common</groupId>55 <artifactId>im-jdk-assist</artifactId>56 <version>0.1.2</version>57 <scope>compile</scope>58 </dependency>59 <dependency>60 <groupId>xmlbeans</groupId>61 <artifactId>xbean</artifactId>62 <version>1.0.4</version>63 <scope>compile</scope>64 </dependency>65 <dependency>66 <groupId>rhino</groupId>67 <artifactId>js</artifactId>68 <version>1.6R7</version>69 <scope>compile</scope>70 </dependency>71 <dependency>72 <groupId>ch.qos.logback</groupId>73 <artifactId>logback-core</artifactId>74 <version>0.9.8</version>75 <scope>runtime</scope>76 </dependency>77 <dependency>78 <groupId>ch.qos.logback</groupId>79 <artifactId>logback-classic</artifactId>80 <version>0.9.8</version>81 <scope>runtime</scope>82 </dependency>83 <dependency>84 <groupId>org.slf4j</groupId>85 <artifactId>slf4j-api</artifactId>86 <version>1.4.3</version>87 <scope>runtime</scope>88 </dependency>89 <dependency>90 42 <groupId>junit</groupId> 91 43 <artifactId>junit</artifactId> trunk/im-jssp-sample/src/main/resources/conf/jssp-config.xml
r275 r282 28 28 <api-class name="org.intra_mart.jssp.script.api.LoggerObject"/> 29 29 <api-class name="org.intra_mart.jssp.script.api.LoggerMDCObject"/> 30 <!--31 30 <api-class name="org.intra_mart.jssp.script.api.SOAPClientObject"> 32 < mode>Once</mode>33 < helper>jssp/script/api/soap_client_helper</helper>34 < work-dir>target/work/jssp/_SOAPClient</work-dir>35 < javac-verbose>false</javac-verbose>31 <!-- <mode>Once</mode> --> 32 <!-- <helper>jssp/script/api/soap_client_helper</helper> --> 33 <!-- <work-dir>WEB-INF/work/jssp/_SOAPClient</work-dir> --> 34 <!-- <javac-verbose>false</javac-verbose> --> 36 35 </api-class> 37 -->38 36 39 37 <api-script name="jssp/script/api/im_json#ImJson"/> trunk/im-jssp-sample/src/main/resources/logback.xml
r147 r282 5 5 class="ch.qos.logback.core.ConsoleAppender"> 6 6 <layout class="ch.qos.logback.classic.PatternLayout"> 7 <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> 7 <!-- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> --> 8 <pattern>[%d{HH:mm:ss.SSS}] [%level] %logger{10} - %msg%n</pattern> 8 9 </layout> 9 10 </appender> trunk/im-jssp-sample/src/main/webapp/sample.html
r163 r282 594 594 </td> 595 595 </tr> 596 <tr> 597 <td align="right"> 598 <IMART type="link" page="sample/script/soap_client/soap_client_main"> 599 SOAP Webサービスの呼び出し 600 </IMART> 601 </td> 602 <td> 603 <ul> 604 <li>SOAPClientオブジェクト</li> 605 </ul> 606 </td> 607 <td> 608 <IMART type="link" page="sample/script/file/file_main" targetDirPath="sample/script/soap_client/"> 609 sample/script/soap_client/ 610 </IMART> 611 </td> 612 </tr> 596 613 </table> 597 614