--
http://groups.google.com/group/Hardhats
To unsubscribe, send email to Hardhats+u...@googlegroups.com
nancy@owl:~$ gtm
GTM>S DUZ=9 D ^XUP
Setting up programmer environment
This is a TEST account.
Terminal Type set to: C-VT100
You have 107 new messages.
Select OPTION NAME: eve
1 EVE Systems Manager Menu
2 EVENT CAPTURE (ECS) EXTRACT AU ECX ECS SOURCE AUDIT Event
Capture
(ECS) Extract Audit
3 EVENT CAPTURE DATA ENTRY ECENTER Event Capture Data Entry
4 EVENT CAPTURE EXTRACT ECXEC Event Capture Extract
5 EVENT CAPTURE MANAGEMENT MENU ECMGR Event Capture Management
Menu
Press <RETURN> to see more, '^' to exit this list, OR
CHOOSE 1-5: 1 EVE Systems Manager Menu
WARNING -- TASK MANAGER DOESN'T SEEM TO BE RUNNING!!!!
Core Applications ...
Device Management ...
Menu Management ...
Programmer Options ...
Operations Management ...
Spool Management ...
Information Security Officer Menu ...
Taskman Management ...
User Management ...
FM VA FileMan ...
Application Utilities ...
Capacity Planning ...
HL7 Main Menu ...
Manage Mailman ...
MAS Parameter Entry/Edit
You've got PRIORITY mail!
Select Systems Manager Menu Option: operations Management
System Status
Introductory text edit
CPU/Service/User/Device Stats
RJD Kill off a users' job
Alert Management ...
Alpha/Beta Test Option Usage Menu ...
Clean old Job Nodes in XUTL
Delete Old (>14 d) Alerts
Foundations Management
Kernel Management Menu ...
Post sign-in Text Edit
RPC Broker Management Menu ...
User Management Menu ...
You've got PRIORITY mail!
Select Operations Management Option: RPC Broker Management Menu
RPC Listener Edit
Start All RPC Broker Listeners
Stop All RPC Broker Listeners
Clear XWB Log Files
Debug Parameter Edit
View XWB Log
You've got PRIORITY mail!
Select RPC Broker Management Menu Option: debug Parameter Edit
----- Setting RPCBroker debug logging for System: BETA.VISTA-OFFICE.ORG -----
Enable Broker Logging: very Verbose// 3 very Verbose
RPC Listener Edit
Start All RPC Broker Listeners
Stop All RPC Broker Listeners
Clear XWB Log Files
Debug Parameter Edit
View XWB Log
You've got PRIORITY mail!
Select RPC Broker Management Menu Option:
--
Nancy Anthracite
Run this option from XUP (it doesn't produce any output) and see if it
fixes your issue.
XU PROC CNT CLUP
Sam
Sam
The relevant code is in XWBTCPM.
S X=$$NEWJOB() D:'X LOG("No New Connects")
I ($P(MSG,U)'="TCPConnect")!('X) D QSND^XWBRW("reject"),LOG("reject: "_MSG) Q
If CPRS works fine, then the problem isn't in the state of VISTA.
Sam
> To unsubscribe, send email to Hardhats+u...@googlegroups.com
>
Maybe the "gat" in this line?
Christopher B. Farley
HIT Consultant
Member: VSA, PMI, HL7, HIMSS, WV
Cell: 703-819-9145
A CLUE!!
return list;
--
A CLUE!!
It is failing when the query to get the list of patients is built in
PatientRepository.java. It was dying with a Null Pointer exception at
the query.getField statements below. For some reason the field list is
not loading. If I comment all of them out, I get to the CCR display
screen and there are 4 patients in the drop-down list, although their
attributes are all null because I commented out the query fields. If I
click on one, the valid CCR appears!! (ignore all the other debugging
code)
So, why can't the web service get the Patient File field list???
public Collection<FMPatient> getAllPatients() throws
OvidDomainException {
Collection<FMPatient> list = new ArrayList<FMPatient>();
RPCConnection connection = null;
try {
connection = ServeruserPool.getInstance().getConnection();
if (connection != null) {
System.out.println("gatAllPatients: Connector not null");
}
ResAdapter adapter = obtainRPCResAdapter();
if (adapter != null) {
System.out.println("gatAllPatients: adapter not null");
}
FMQueryList query = new FMQueryList(adapter,
FMPatient.getFileInfoForClass());
if (query != null) {
System.out.println("gatAllPatients: query not null: " +
ReflectionToStringBuilder.toString(query) );
}
//query.getField("ATTENDING
PHYSICIAN").setInternal(false);
//query.getField("CURRENT ROOM").setInternal(false);
//query.getField("CURRENT MOVEMENT").setInternal(false);
//query.getField("PROVIDER").setInternal(false);
FMResultSet results = query.execute();
if (results != null) {
if (results.getError() != null) {
throw new OvidDomainException(results.getError());
}
while (results.next()) {
list.add(new FMPatient(results));
}
}
} catch (ResException e) {
throw new OvidDomainException(e);
} finally {
ServeruserPool.getInstance().returnToPool(connection);
}
return list;
--