paledecay
New Member
I'm currently attempting to read and modify data through our appserver using standard 4GL code that I have compiled into DLL's using the ProxyGen.
I'm not sure if the problem lies within my appserver settings, or something I'm doing in my code.
I can retrieve data just perfectly, however when I attempt to do any sort of update/insert, I receive the following errors:
Program Exception:
4GL STOP condition: The Server application has returned an error. (7243) (7241)
Broker Log:
[12/02/09@11:44:51.204-0500] P-006540 T-C-0001 2 UB Basic ConnectionID= 192.168.1.18::asbroker1::2901::64bfcb70599b1504:-240a771f:13562d2ce90:-7fea. (8096)
[12/02/09@11:44:51.204-0500] P-006540 T-C-0001 2 UB Basic Client connected : . (8533)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic The client requested ASK version= 1.0 capabilities= allowServerASK,denyClientASK. (13769)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic The negotiated ASK version= 1.0 capabilities= denyServerASK,denyClientASK. ASK protocol is disabled for this connection. (15256)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic Client disconnected : . (8534)
[12/02/09@11:44:52.767-0500] P-006540 T-C-0001 2 UB Basic ConnectionID= 192.168.1.18::asbroker1::2901::64bfcb70599b1504:-240a771f:13562d2ce90:-7fe9. (8096)
[12/02/09@11:44:52.767-0500] P-006540 T-C-0001 2 UB Basic Client connected : . (8533)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic The client requested ASK version= 1.0 capabilities= allowServerASK,denyClientASK. (13769)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic The negotiated ASK version= 1.0 capabilities= denyServerASK,denyClientASK. ASK protocol is disabled for this connection. (15256)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic Client disconnected : . (8534)
Server Log:
[12/02/09@11:44:52.829-0500] P-007272 T-005864 1 AS -- (Procedure: 'set_tag_nbr inv_loc_adju.w ' Line:1659) ** "inv/inv_loc_adj.p" was not found. (293)
[12/02/09@11:45:00.673-0500] P-007272 T-005864 1 AS -- Connection failure for host 192.168.1.40 port 53186 transport TCP. (9407)
And here is my quick C# test code that I'm using:
Thanks for any insight.
I'm not sure if the problem lies within my appserver settings, or something I'm doing in my code.
I can retrieve data just perfectly, however when I attempt to do any sort of update/insert, I receive the following errors:
Program Exception:
4GL STOP condition: The Server application has returned an error. (7243) (7241)
Broker Log:
[12/02/09@11:44:51.204-0500] P-006540 T-C-0001 2 UB Basic ConnectionID= 192.168.1.18::asbroker1::2901::64bfcb70599b1504:-240a771f:13562d2ce90:-7fea. (8096)
[12/02/09@11:44:51.204-0500] P-006540 T-C-0001 2 UB Basic Client connected : . (8533)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic The client requested ASK version= 1.0 capabilities= allowServerASK,denyClientASK. (13769)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic The negotiated ASK version= 1.0 capabilities= denyServerASK,denyClientASK. ASK protocol is disabled for this connection. (15256)
[12/02/09@11:44:51.220-0500] P-006540 T-C-0001 2 UB Basic Client disconnected : . (8534)
[12/02/09@11:44:52.767-0500] P-006540 T-C-0001 2 UB Basic ConnectionID= 192.168.1.18::asbroker1::2901::64bfcb70599b1504:-240a771f:13562d2ce90:-7fe9. (8096)
[12/02/09@11:44:52.767-0500] P-006540 T-C-0001 2 UB Basic Client connected : . (8533)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic The client requested ASK version= 1.0 capabilities= allowServerASK,denyClientASK. (13769)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic The negotiated ASK version= 1.0 capabilities= denyServerASK,denyClientASK. ASK protocol is disabled for this connection. (15256)
[12/02/09@11:44:52.798-0500] P-006540 T-C-0001 2 UB Basic Client disconnected : . (8534)
Server Log:
[12/02/09@11:44:52.829-0500] P-007272 T-005864 1 AS -- (Procedure: 'set_tag_nbr inv_loc_adju.w ' Line:1659) ** "inv/inv_loc_adj.p" was not found. (293)
[12/02/09@11:45:00.673-0500] P-007272 T-005864 1 AS -- Connection failure for host 192.168.1.40 port 53186 transport TCP. (9407)
And here is my quick C# test code that I'm using:
Code:
private void button2_Click(object sender, EventArgs e)
{
string err;
Axiom_INVADJ.StrongTypesNS.pt_labelsDataTable lbl_tbl = new Axiom_INVADJ.StrongTypesNS.pt_labelsDataTable();
try
{
using (Connection conn = new Connection("AppServerDC://[servername]:2901", "", "", ""))
{
Axiom_INVADJ.inv_adj inv = new Axiom_INVADJ.inv_adj(conn);
Axiom_INVADJ.inv_loc_adju invloc = new Axiom_INVADJ.inv_loc_adju(inv);
invloc.set_tag_nbr("01", "051832-002", "H", "cwile", "FNPD", "T", "42", out lbl_tbl, out err);
textBox1.Text = err;
inv.Dispose();
invloc.Dispose();
}
}
catch (Exception ex)
{
textBox1.Text = ex.Message;
}
}
Thanks for any insight.