9 Pages

web

Course: CS 231, Fall 2009
School: Pittsburgh
Rating:
 
 
 
 
 

Word Count: 2493

Document Preview

version="1.0" <?xml encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>ChronoServerWebService</display-name> <description>Chronobot Bid...

Register Now

Unformatted Document Excerpt

Coursehero >> Pennsylvania >> Pittsburgh >> CS 231

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
version="1.0" <?xml encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>ChronoServerWebService</display-name> <description>Chronobot Bid Manager Web Service</description> <servlet> <servlet-name>SOAPMonitorService</servlet-name> <display-name>SOAP Monitor Service</display-name> <servlet-class>org.apache.axis.monitor.SOAPMonitorService</servlet-class> <init-param> <param-name>SOAPMonitorPort</param-name> <param-value>5001</param-value> </init-param> <load-on-startup>100</load-on-startup> </servlet> <servlet> <servlet-name>AdminServlet</servlet-name> <display-name>Axis Admin Servlet</display-name> <servlet-class>org.apache.axis.transport.http.AdminServlet</servlet-class> <load-on-startup>100</load-on-startup> </servlet> <servlet> <servlet-name>AxisServlet</servlet-name> <display-name>Apache-Axis Servlet</display-name> <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class> </servlet> <servlet> <servlet-name>MappingName1</servlet-name> <servlet-class>tw.org.itri.icl.chronobot.util.TimerStartup</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>SOAPMonitorService</servlet-name> <url-pattern>/SOAPMonitor</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>AdminServlet</servlet-name> <url-pattern>/servlet/AdminServlet</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>AxisServlet</servlet-name> <url-pattern>/servlet/AxisServlet</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>AxisServlet</servlet-name> <url-pattern>*.jws</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>AxisServlet</servlet-name> <url-pattern>/services/*</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>MappingName1</servlet-name> <url-pattern>/TimerStartup</url-pattern> </servlet-mapping> <resource-ref> <description>Chronobot Database Connection Pool</description> <res-ref-name>jdbc/Chronobot</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> <env-entry> <env-entry-name>NegoServer</env-entry-name> <env-entry-value>http://localhost:8080/pittChronobotNegotiation/services/ChronobotNegotiation</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>BidHandleClassList</env-entry-name> <env-entry-value>tw.org.itri.icl.chronobot.bid.ChronobotBidHandle</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>user_login</env-entry-name> <!-- 0:user_id, 1:passwd 2:optionConditionList --> <env-entry-value>SELECT * FROM user_info WHERE disabled = 0 AND user_id = '{0}' AND passwd = '{1}'{2}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>list_bidroom</env-entry-name> <!-- 0:optionConditionList --> <env-entry-value>SELECT bidroom_id BidRoomId, bidroom_name BidRoomName, bidroom_descr BidRoomDescr, (SELECT COUNT(*) FROM bid_entity WHERE bidding_rooms.bidroom_id = bid_entity.bidroom_id AND canceled = 0 AND status = 0) BidNum FROM bidding_rooms WHERE deleted = 0{0}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listBidRoomBids</env-entry-name> <!-- 0:bidroom_id 1:optionConditionList --> <env-entry-value>SELECT * FROM bid_entity WHERE canceled = 0 AND bidroom_id = {0}{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addNewBid.checkBid</env-entry-name> <!-- 0:bidroom_id 1:optionConditionList --> <env-entry-value>SELECT COUNT(*) FROM bid_entity WHERE canceled = 0 AND status = 0 AND bidroom_id = {0}{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addNewBid.addBid</env-entry-name> <!-- 0:userId, 1:bidroom_id, 2:start_time, 3:end_time 4:optionNameList 5:optionValueList --> <env-entry-value>INSERT INTO bid_entity (starter_id, bidroom_id, start_time, end_time{4}) VALUES ('{0}', '{1}', '{2}', '{3}'{5})</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addNewBid.getBidId</env-entry-name> <!-- None --> <env-entry-value>SELECT @@IDENTITY</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>placeBid.checkIfClosed</env-entry-name> <!-- 0:bid_id, 1:bidroom_id --> <env-entry-value>SELECT status FROM bid_entity WHERE canceled = 0 AND bid_id = {0} AND bidroom_id = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>placeBid.checkIfExist</env-entry-name> <!-- 0:bid_id, 1:bidroom_id, 2:user_id --> <env-entry-value>SELECT COUNT(*) FROM bidding_status WHERE retracted = 0 AND bid_id = {0} AND bidroom_id = {1} AND user_id = '{2}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>placeBid.checkSchedule</env-entry-name> <!-- 0:bid_id, 1:bidroom_id, 2:user_id --> <env-entry-value>SELECT user_tasks.description Description, user_tasks.location Location, user_tasks.start_time Start_time, user_tasks.end_time End_time FROM bid_entity, user_tasks WHERE bid_entity.canceled = 0 AND user_tasks.user_id = '{2}' AND bid_entity.bid_id = {0} AND bid_entity.bidroom_id = {1} AND (((user_tasks.start_time &lt; bid_entity.task_start) AND (bid_entity.task_start &lt; user_tasks.end_time)) OR ((user_tasks.start_time &lt; bid_entity.task_end) AND (bid_entity.task_end &lt; user_tasks.end_time)))</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>placeBid.placeBid</env-entry-name> <!-- 0:bid_id, 1:bidroom_id, 2:user_id 3:optionNameList 4:optionValueList --> <env-entry-value>INSERT INTO bidding_status (bid_id, bidroom_id, user_id, place_date, Qob{3}) SELECT {0}, {1}, '{2}', GETDATE(), DATEPART(millisecond, GETDATE()){4} FROM bid_entity, user_info WHERE bid_entity.bid_id = {0} AND bid_entity.bidroom_id = {1} AND user_info.user_id = '{2}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>updateBidderTaskAndInfo.updateTask</env-entry-name> <!-- 0:user_id, 1:bid_id, 2:bidroom_id, 3:start_time, 4:end_time --> <env-entry-value>INSERT INTO user_tasks (user_id, description, start_time, end_time, location) SELECT '{0}', bid_descr, '{3}', '{4}', location FROM bid_entity WHERE bid_id = {1} AND bidroom_id = {2}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>updateBidderTaskAndInfo.updateUserInfo</env-entry-name> <!-- 0:user_id --> <env-entry-value>UPDATE user_info SET num_bids_won = num_bids_won + 1 WHERE user_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getBidders</env-entry-name> <!-- 0:bid_id --> <env-entry-value>SELECT * FROM bidding_status WHERE retracted = 0 AND result = 0 AND bid_id = {0} ORDER BY Qob DESC</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getBiddersByQoB</env-entry-name> <!-- 0:bid_id 1:Qob --> <env-entry-value>SELECT * FROM bidding_status WHERE retracted = 0 AND result = 0 AND bid_id = {0} AND Qob = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listClosingBids</env-entry-name> <!-- None --> <env-entry-value>SELECT * FROM bid_entity WHERE end_time &lt; GETDATE() AND canceled = 0 AND status = 0</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listUserOngoingBids</env-entry-name> <!-- 0:user_id --> <env-entry-value>SELECT * FROM bid_entity WHERE canceled = 0 AND status = 0 AND user_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listBidders</env-entry-name> <!-- 0:bid_id 1:optionConditionList --> <env-entry-value>SELECT * FROM bidding_status WHERE bid_id = {0}{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>queryBid</env-entry-name> <!-- 0:bid_id 1:optionConditionList --> <env-entry-value>SELECT * FROM bid_entity WHERE bid_id = {0}{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getHighestQoB</env-entry-name> <!-- 0:bid_id --> <env-entry-value>SELECT MAX(Qob) FROM bidding_status WHERE retracted = 0 AND result = 0 AND bid_id = {0}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getHoursSumByQoB</env-entry-name> <!-- 0:bid_id 1:Qob --> <env-entry-value>SELECT SUM(place_time) FROM bidding_status WHERE retracted = 0 AND result = 0 AND bid_id = {0} AND Qob = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listUserBids</env-entry-name> <!-- 0:user_id 1:optionConditionList --> <env-entry-value>SELECT bidding_status.*, bid_entity.bid_descr FROM bidding_status, bid_entity WHERE bidding_status.retracted = 0 AND bid_entity.canceled = 0 AND bidding_status.bid_id = bid_entity.bid_id AND bidding_status.user_id = '{0}'{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listFeasibleBids</env-entry-name> <!-- 0:user_id 1:optionConditionList --> <env-entry-value>SELECT bid_entity.* FROM bid_entity, user_tasks WHERE bid_entity.canceled = 0 AND bid_entity.status = 0 AND user_tasks.user_id = '{0}' AND NOT (((user_tasks.start_time &lt; bid_entity.task_start) AND (bid_entity.task_start &lt; user_tasks.end_time)) OR ((user_tasks.start_time &lt; bid_entity.task_end) AND (bid_entity.task_end &lt; user_tasks.end_time))){1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listStartedBids</env-entry-name> 0:user_id <!-- 1:optionConditionList --> <env-entry-value>SELECT * FROM bid_entity WHERE canceled = 0 AND starter_id = '{0}'{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addTask</env-entry-name> <!-- 0:user_id 1:optionNameList 2:optionValueList --> <env-entry-value>INSERT INTO user_tasks (user_id{1}) VALUES ('{0}'{2})</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>deleteTask</env-entry-name> <!-- 0:user_id 1:task_id --> <env-entry-value>DELETE FROM user_tasks WHERE user_id = '{0}' AND task_id = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>updateTask</env-entry-name> <!-- 0:user_id 1:task_id 2:optionValueList --> <env-entry-value>UPDATE user_tasks SET user_id = '{0}'{2} WHERE user_id = '{0}' AND task_id = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>listTasks</env-entry-name> <!-- 0:user_id 1:optionConditionList --> <env-entry-value>SELECT * FROM user_tasks WHERE user_id = '{0}'{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>checkTaskCollision</env-entry-name> <!-- 0:user_id 1:iqnoreTaskId 2:startTime 3:endTime --> <env-entry-value>SELECT COUNT(*) FROM user_tasks WHERE user_id = '{0}' AND ((('{2}' &lt;= start_time) AND (start_time &lt; '{3}')) OR (('{2}' &lt; end_time) AND (end_time &lt;= '{3}'))) AND NOT task_id = {1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>cancelBid</env-entry-name> <!-- 0:starter_id, 1:bid_id, 2:bidroom_id 3:reason 4:optionValueList --> <env-entry-value>UPDATE bid_entity SET canceled = 1, cancel_reason = '{3}'{4} WHERE canceled = 0 AND starter_id = '{0}' AND bid_id = {1} AND bidroom_id = {2}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>retractBid</env-entry-name> <!-- 0:user_id, 1:bid_id, 2:bidRoom_id 3:reason 4:optionValueList --> <env-entry-value>UPDATE bidding_status SET retracted = 1, retract_reason = '{3}'{4} WHERE retracted = 0 AND user_id = '{0}' AND bid_id = {1} AND bidroom_id = {2}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getRolePermission</env-entry-name> <!-- 0:user_id 1:passwd 2:msg --> <env-entry-value>SELECT role_permission.permission FROM role_permission JOIN user_info ON user_info.user_id = '{0}' AND user_info.passwd = '{1}' AND user_info.role = role_permission.role WHERE role_permission.msg = {2}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addUser.checkUserId</env-entry-name> <!-- 0:user_id --> <env-entry-value>SELECT COUNT(*) FROM user_info WHERE user_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addUser.addUser</env-entry-name> <!-- 0:user_id 1:optionNameList 2:optionValueList --> <env-entry-value>INSERT INTO user_info (user_id{1}) VALUES ('{0}'{2})</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>delUser</env-entry-name> <!-- 0:user_id 1:optionUpdateList --> <env-entry-value>UPDATE user_info SET disabled = 1{1} WHERE user_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>getUser</env-entry-name> <!-- 0:user_id 1:optionConditionList --> <env-entry-value>SELECT * FROM user_info WHERE user_id = '{0}'{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>setUser</env-entry-name> <!-- 0:user_id 1:optionUpdateList --> <env-entry-value>UPDATE user_info SET user_id = '{0}'{1} WHERE user_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addBidroom.checkBidRoomName</env-entry-name> <!-- 0:bidroom_name 1:optionConditionList --> <env-entry-value>SELECT COUNT(*) FROM bidding_rooms WHERE deleted = 0 AND bidroom_name = '{0}'{1}</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addBidroom.addBidroom</env-entry-name> <!-- 0:bidroom_name 1:optionNameList 2:optionValueList --> <env-entry-value>INSERT INTO bidding_rooms (bidroom_name{1}) VALUES ('{0}'{2})</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addBidroom.getBidRoomId</env-entry-name> <!-- None --> <env-entry-value>SELECT @@IDENTITY</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>delBidroom</env-entry-name> <!-- 0:bidroom_id 1:optionUpdateList --> <env-entry-value>UPDATE bidding_rooms SET deleted = 1{1} WHERE bidroom_id = '{0}'</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>starterUpdateBid.checkBid</env-entry-name> <!-- 0:starter_id 1:bidroom_id 2:bid_id --> <env-entry-value>SELECT status FROM bid_entity WHERE starter_id = '{0}' AND bidroom_id = {1} AND bid_id = {2} AND canceled = 0</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>starterUpdateBid.updateBid</env-entry-name> <!-- 0:starter_id 1:bidroom_id 2:bid_id 3:optionUpdateList --> <env-entry-value>UPDATE bid_entity SET starter_id = '{0}', bidroom_id = {1}{3} WHERE starter_id = '{0}' AND bidroom_id = {1} AND bid_id = {2} AND canceled = 0</env-entry-value> <env-entry-type>java.lang.String</env-entry-type> </env-entry> <env-entry> <env-entry-name>addCategory.checkCategory</env-entry-name> <!-- 0:bidroom_id 1:cat_parent 2:cat_name 3:cat_link --> <env-entry-value>SELECT c1.cat_id AS PARENT, (c1.id_path + '/' + CAST(c1.cat_id AS VARCHAR)) AS IDPATH, (c1.name_path + '/' + c1.cat_name) AS ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Pittsburgh - CS - 365
Chapter 2 Symbolic Projections2.1 IntroductionWhat are symbolic projections? How can symbolic projections be applied to pictorial information retrieval and spatial reasoning? A simple example will rst be presented to illustrate the concept. Fig. 2.
Pittsburgh - CS - 265
Multi-Sensor Information Fusion by Query RefinementShi-Kuo Chang1 and Erland Jungert21 Department of Computer Science University of Pittsburgh -chang@cs.pitt.edu 2 Swedish Defense Research Agency (FOI) jungert@lin.foi.seAbstract: In recent years
Pittsburgh - SEMINAR - 265
Web 2.0 &amp; Social NetworkingPJ Dillon November 2nd, 2006Outline Web 2.0 Overview Web 2.0 Examples Social Networking Social Networking Software Site Online Dating Mobile What's in Common My ProjectSupporting Web 2.0 Refers to lightweigh
Pittsburgh - SEMINAR - 265
Portable Media DevicesAnd Implications on Database Design and Queries By Mark ZalarSeminar Outline Trends in portable media devices Database implications Stand-alone devices Network of devices Examples Vehicle navigation S-CITI evacuation
Pittsburgh - SEMINAR - 265
Multimedia Database Schema DesignJianguo HuoOutline MMDB Design Issues Multimedia Data Types Features and Similarity Functions M-Dependencies Normalization EvaluationMMDB Design Issues Requirements for the MMDB Representation, storage, i
Pittsburgh - SEMINAR - 265
Visual Tool for Literature ExplorationTingting Jiang November 14, 2006Outline Literature Exploration Visualization Overview Visualization Applications Term ProjectLiterature Exploration Traditional activities in literature exploration: * Co
Pittsburgh - SEMINAR - 265
Job Scheduling and ChronobotOutline What are Chronobots? Job Scheduling Problems Examples Reductions * Hill Climbing * Bin Packing Efficiency Term ProjectWhat are Chronobots? The chronobot is a device for storing and borrowing time in ad
Pittsburgh - C - 163
Structure of Enterprise Java Beans04/19/091IntroductionMain goal of Enterprise Java Bean (EJB) architecture is to free the application developer from having to deal with the system level aspects of an application. This allows the bean de
Pittsburgh - C - 33
Structure of Enterprise Java Beans04/19/091IntroductionMain goal of Enterprise Java Bean (EJB) architecture is to free the application developer from having to deal with the system level aspects of an application. This allows the bean de
Pittsburgh - CS - 163
Discrete Messaging SystemMessage Values:MsgID: 2000Description: Instant Message Sending user of instant message can either openor continue dialogue messagingFromFirstName [note: sender's first name] FromLastName [note: sender's last name ] ToF
Pittsburgh - CS - 153
1Universal Interface for Virtual Classroom (Spring 2008)Mohammed A. MohammedComputer Science Department, University of Pittsburgh, Pittsburgh, PA 15260, USACommunication between the Virtual Classroom client tools (both teacher and student tools)
Pittsburgh - CS - 365
Chapter_No: 0Chapter_Title: IntroductionAuthor_Affiliation: Maresca, Univ. of Naples, ItalyAuthor: paomares@unina.it,1234Chapter_URL: http:/www.cs.pitt.edu/~chang/bookds/00paolo.htmBook_Password: 123Chapter_Password: sem010Teacher: chang@cs.p
Pittsburgh - CS - 231
An Example of BBC.TAOML&lt;TAO&gt;&lt;TAO_NAME&gt; &quot;BBC&quot; &lt;/TAO_NAME&gt;&lt;TAO_TYPE&gt; mixed &lt;/TAO_TYPE&gt;&lt;TAO_TEMPLATE&gt; &quot;bbc.tpl&quot; &lt;/TAO_TEMPLATE&gt;&lt;TAO_IC&gt;flag = newic_type = &quot;BBC&quot;ic_id_list = &quot;message_type = &quot;CREATE_BBC&quot;content = ?&quot;BBC Name (such as yahoo)&quot;cgi
Pittsburgh - CS - 365
An Example of BBC.TAOML&lt;TAO&gt;&lt;TAO_NAME&gt; &quot;BBC&quot; &lt;/TAO_NAME&gt;&lt;TAO_TYPE&gt; mixed &lt;/TAO_TYPE&gt;&lt;TAO_TEMPLATE&gt; &quot;bbc.tpl&quot; &lt;/TAO_TEMPLATE&gt;&lt;TAO_IC&gt;flag = newic_type = &quot;BBC&quot;ic_id_list = &quot;message_type = &quot;CREATE_BBC&quot;content = ?&quot;BBC Name (such as yahoo)&quot;cgi
Pittsburgh - CS - 163
Instruciton to Compile and Run:PreInstalled:JDK 1.4.2Step1: Unzip the file, Go to directory ./src/virtualclassroom/Step2: To Compile:javac -classpath jbcl.jar *.javaStep3 To Run:java -classpath .;jbcl.jar virtualclassroom.AvatarUIUserNa
Pittsburgh - CS - 156
1CS15501101997Fal223322332203222222Blah, blah3CS5001101996Spring325321122133211111asdf4cs15101101996Fall3333333333333333335CS15201101997Fall11111111111111111
Pittsburgh - CS - 231
package edu.ksi.virtualclassroom.axis.client;import java.net.URL;import java.util.ArrayList;import java.util.List;import javax.xml.namespace.QName;import javax.xml.rpc.ParameterMode;import org.apache.axis.client.Call;import org.apache.axi
Pittsburgh - CS - 365
&lt;?xml version=&quot;1.0&quot; standalone=&quot;no&quot;?&gt; &lt;!DOCTYPE svg PUBLIC &quot;-/W3C/DTD SVG 20001102/EN&quot; &quot;http:/www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd&quot;&gt; &lt;svg width=&quot;8cm&quot; height=&quot;3cm&quot; viewBox=&quot;0 0 800 300&quot;&gt;
Pittsburgh - CS - 365
QUERYING MULTIMEDIA DATA SOURCES AND DATABASES* S-K Chang1, G. Costagliola2 and E. Jungert31Department of Computer Science University of Pittsburgh2Dipartimento di Matematica ed Informatica Universit di Salerno Swedish Defense Research Institu
Pittsburgh - CS - 231
/ For compilers that supports precompilation , includes &quot;wx/wx.h&quot;#include &quot;wx/wxprec.h&quot;#ifndef WX_PRECOMP#include &quot;wx/wx.h&quot;#endif#include &quot;HelloWorldApp.h&quot;IMPLEMENT_APP(HelloWorldApp)bool HelloWorldApp:OnInit(){wxFrame *frame = new wxF
Pittsburgh - CS - 1622
This file documents the Bison parser generator. Copyright (C) 1988, 89, 90, 91, 92, 93, 1995 Free SoftwareFoundation, Inc. Permission is granted to make and distribute verbatim copies of thismanual provided the copyright notice and this per
Pittsburgh - CS - 1621
SIMULA CS 1621 Assignment 1 Shyamal Chandra, Roseana Diaz, Pavel Hoppe September 15, 2003SIMULA was the first programming language to introduce object-oriented programming. It utilized data abstraction by the use of classes and objects unlike the o
Pittsburgh - CS - 1621
FORTRAN: Uses, History, Strength, and WeaknessesAssignment #1CS 1621Henry Umansky and Lidiya BerFORTRAN1. HISTORY &amp; USAGEWhen in 1954 IBM came out with IBM 704 computer, it was the first computer to handle floating-point operations and ind
Pittsburgh - CS - 1621
Bortz 1 Russell Bortz and David Allison Mike Bigrigg CS 1621 15 September 2003 The PL/I Programming Language The field of computers is constantly changing and evolving to produce machines that will improve virtually every aspect of daily life. Not on
Pittsburgh - CS - 1621
Computer Science 1621 Structure of Programming Languages Project 1 COBOLKevin Barsotti Joseph Burdis Daniel Devine&lt;kabst127@pitt.edu&gt; &lt;jmb21@pitt.edu&gt; &lt;drd2@pitt.edu&gt;09.15.2003COBOL is a programming language designed with ease of comprehensio
Pittsburgh - CS - 1621
Kevin Kibler, Juliya Litman, Istiaque Ayub CS1621 BASIC 9/14/03BASICHistory BASIC is a family of high level programming languages. Its acronym stands for Beginners All-Purpose Symbolic Instruction Code. It was developed in 1964 by two mathematici
Pittsburgh - CS - 1621
To explain Modula, let us start with a man called Niklaus Wirth. Niklaus designed at least 4 programming languages of note, Modula, Modula 2, Oberon, and the well-known Pascal. Pascal was implemented in 1970 and written as a general usage language (
Pittsburgh - CS - 1621
Ada: History, Uses, and StructureDavid A. Bradley, Leonid Murashkov, &amp; David Reed CS1621 Assignment #1September 15, 2003Ada: History, Uses, and StructurePage 2 of 7IntroductionThe Ada programming language, named after Ada Lovelace who work
Pittsburgh - CS - 1621
Robert Creely Mike Rhoads CS 1652-APL Language Report HISTORY The programming language APL made its debut in 1966 implemented on IBM's System/360. It was developed by such industry giants as IBM, I. P. Sharp, and Sperry UNIVAC. APL, which is an acron
Pittsburgh - CS - 1621
The Prolog Programming Language Prepared for CS 1621, Dr. Bigrigg By Jared Sheehan Richard Wojciechowski Justin Ruffin Assignment Due September 15, 2003The Prolog Programming LanguageProlog HistoryWhat is Prolog? Prolog is a programming language
Pittsburgh - CS - 1621
Christopher Tokarczyk Alen Bahovic Erika HinkleHistory Niklaus Wirth (creator of Modula and Modula 2) Modula (1975) MODUlar LAnguage Small real-time control systems Modula 2 (1977) Institut fur Informatik at the Eidgenossische Technische Ho
Pittsburgh - CS - 1621
PROLOGAuthors: Justin Ruffin, Jared Sheehan, and Rich WojciechowskiHistory Developed by Alan Comeraurer and Phillipe Roussel in 1972. Used for AI, language parsing, and databases, expert systems. Multiplatform friendly. Archetype for LispPro
Pittsburgh - CS - 1621
Ada: History, Uses, and StructureAssignment #1 CS 1621 David A. Bradley, Leonid Murashkov, &amp; David ReedHistorylInitiative of DoD in 1975: Unify Embedded Software Languages Reduce Cost of Maintenancel l l lDesigned Externally by Cii/Honeyw
Pittsburgh - CS - 1621
ALGOLSara Smith Dave StacyHistoryDeveloped in 1958 as the International Algorithmic Language (IAL) ALGOL 58 was used by several groups as the basis for many languages in the US including MAD, NELIAC, and JOVIAL In 1960 ALGOL 60 was created as a r
Pittsburgh - CS - 1622
START-INFO-DIR-ENTRY* Flex: (flex). A fast scanner generator.END-INFO-DIR-ENTRY This file documents Flex. Copyright (c) 1990 The Regents of the University of California. Allrights reserved. This code is derived from software c
CSU Sacramento - IMET - 10
WRITING A LITERATURE REVIEWSource: Language Center, Asian Institute of Technology WHAT IS THE LITERATURE? Although you might think of novels and poetry when you hear the word &quot;literature,&quot; for a piece of research the meaning is more specific. In ter
CSU Sacramento - IMET - 283
WRITING A LITERATURE REVIEWSource: Language Center, Asian Institute of Technology WHAT IS THE LITERATURE? Although you might think of novels and poetry when you hear the word &quot;literature,&quot; for a piece of research the meaning is more specific. In ter
CSU Sacramento - IMET - 281
EndNote User InstructionsNote to user: These instructions are based on my personal experience using EndNote. Therefore, it includes only the parts I consider immediately useful to you in the iMET program. At the end of these instructions, you will f
CSU Sacramento - IMET - 281
Dreamweaver 8 Training for iMetObjectives1. Review the importance of file management 2. Discuss the local and remote site relationship (folders from USB drives should be on your home computer) 3. Managing web files in iMet build one imet site folde
CSU Sacramento - IMET - 250
TYPES OF QUESTIONS AND THE INTERVIEW When developing interview questions, consider what types of question would best give you the information you are seeking. Listed below are different types of interview questions and when each is best used or shoul
CSU Sacramento - IMET - 285
ANIMATION / TIPS1. Wipes, fades, and dissolves are all examples of transitions. 2. Animation is possible because of a biological phenomenon known aspersistence of vision. 3. The speed at which images appear during animation is called the frame rat
CSU Sacramento - IMET - 283
IntroductionTech-Savvy Gals, a member of the iMet 9 master's program in educational technology at the California State University, Sacramento, conducts staff training for educators. The training for this workshop provides K-12 educators and highered
CSU Sacramento - IMET - 283
DRAFT 2 FACILITATOR GUIDE April 26, 2007Hot Air Cows and the Effects of Methane Gas on the EnvironmentRebecca Dougherty, Wanda Hardy, Karen Luke, Valerie Mighettohttp:/imet.csus.edu/imet9/portfolio/mighetto_valerie/282/global_warming.htmAn age
CSU Sacramento - IMET - 286
MUVESMulti-User Virtual EnvironmentsPresented byWanda HardyFebruary 16, 2007 CSUS iMet 9286 Special Topics in Technology Education: Final Project2IntroductionUsing virtual learning environments in education has great potential for promoti
CSU Sacramento - IMET - 286
The River City ProjectA Multi-User Virtual Environment for Learning Scientific Inquiry and 21st Century SkillsOur NSF-sponsored curriculum supports students as they: Learn the principles and concepts of science; Acquire the reasoning and proce
CSU Sacramento - IMET - 286
CTAP Region 3Luci Nunes-DoreEducational Technology ConferenceGranite Bay High School - Roseville, CA January 27, 2007 Session TitleMultimedia MagicPresenter Name(s)Alix E. PeshetteSummary1. Brief description of the session With the use
CSU Sacramento - IMET - 286
1Digital Storytelling Using Microsoft Photo Story 3By Luci Nunes-Dore, Imet 9 February 2007IntroductionPhoto Story is a free multimedia, windows software package from Microsoft that allows you to use digital photos to create a video. In Photo S
CSU Sacramento - IMET - 286
CTAP Region 3Luci Nunes-DoreEducational Technology ConferenceGranite Bay High School - Roseville, CA January 27, 2007 Session TitleDigital Classrooms Engaging Learning EnvironmentsPresenter Name(s)Molly CarboSummary1. Brief description
CSU Sacramento - IMET - 286
CTAP Region 3Luci Nunes-DoreEducational Technology ConferenceGranite Bay High School - Roseville, CA January 27, 2007 Session TitleYou Can Be a Star with YouTubePresenter Name(s)Bob Lyons and Corey CobleSummary1. Brief description of th
CSU Sacramento - IMET - 284
Democracy, Equity, Pluralism: What Do They Mean? &amp; Why Should I Care?Examples Notes Worksheet Your Name: _ Date: _Group Members Names: _ Word: __ Circle One: Positive Example Negative ExampleNotes: _ _ __ _ _ _ __ _ _ __ _ _ _ __ _ _ _ _ _ _ __
CSU Sacramento - IMET - 284
Democracy, Equity, Pluralism: What Do They Mean? &amp; Why Should I Care?Definition Notes Worksheet Your Name: _ Date: _Group Members Names: _ Word: __ Definition Notes: _ _ _ __ _ _ __ _ _ Word: _ Definition Notes: _ __ _ _ __ _ _ _ __ Word: _ Defini
CSU Sacramento - IMET - 282
Are you ready to PLAY.Jeopardy ? ?JEOPARDY!Bessie's the Name Stomach Weather or Not ThisBlow'n in the WindIt's a Hot one!Mooove overFINA J E O P A R D Y100 200 300 400 500100 200 300 400 500100 200 300 400 500100 200 300 400 500
CSU Sacramento - IMET - 282
_
CSU Sacramento - IMET - 282
DairyWasteManagementGuidetowebsitecontentHowdairyfarmersgetridoftonsofcowmanureInordertostayinbusinessandcompetewithothermilkproducers,moderndairies musthavelargeherdsofcows.Differentbreedsofcowsproducedifferentamountsof milkandmayeatdifferentamo
CSU Sacramento - IMET - 507
Usinga3dvirtualworldspacetodeliverProfessionalDevelopment:Canprofessional developmentcontent(learningactivities)bedesignedtoincludeandaccomplishparallel learningfortheprerequisitevirtualworldskills?I. Introduction a. SignificanceofProfessionaldevel
CSU Sacramento - IMET - 281
Lesson Plan Teaching TransitionsLevel: Community College ESL Intermediate Composition Class Objective: Familiarize Ss with transition words and phrases to use in writing Students Will Be Able To: Identify and utilize transitions Activities: (1) Att
CSU Sacramento - IMET - 282
Instructor's ResourcePurpose This website was created to introduce students to the basic features of Chinese characters. As a recommendation, students should have a basic understanding of the forms of Chinese characters in comparison English writing
CSU Sacramento - IMET - 285
Multimedia: CS117Lesson 11 AnimationLesson 11: AnimationThe Power of AnimationAnimation grabs attention Transitions are simple forms of animationWipe Zoom DissolveLesson 11: AnimationPrinciples of AnimationHow animation worksPersistence
CSU Sacramento - IMET - 281
Introduction to Web CreationiMet Tool TrainingBasic Principles Have a plan Focus on the content and communication Make navigation logical and consistent Design for everyone - use alt tags to comply with ADA - design for lower resolutions (800x
CSU Sacramento - IMET - 285
Digital MediaTextparente@csus.eduTextText in HistoryText came into use about 6,000 years agoTextText in HistoryText came into use about 6,000 years ago Johann Gensfleisch zum Gutenbergs printing press revolutionized text in the 15th cent
CSU Sacramento - IMET - 285
Multimedia: CS117Lesson 9 SoundLesson 9: SoundUnderstanding SoundSound travels as waves at 750mph (at sea level) Acoustics is the physics of sound Sound pressure is measured in decibels (dB) Too much sound can be detrimentalLesson 9: Sound