%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="org.apache.xml.axis.wsdd.WSClient60" %>
<%@ page import="org.apache.xml.axis.wsdd.WSClient60Proxy" %>
<%@ page import="net.sf.json.JSONArray" %>
<%@ page import="net.sf.json.JSONObject" %>
选择部门
<%
String checkUserInfo = (String)session.getAttribute("checkUserInfo");
WSClient60 client = new WSClient60Proxy();
String str_deptArray = client.getDeptArrayForM(checkUserInfo, "");
JSONObject deptArrayObject = JSONObject.fromObject(str_deptArray);
JSONArray deptArray = deptArrayObject.getJSONArray("info");
session.setAttribute("deptArray", deptArray);
%>