Use our Google Custom Search for best site search results.
Search
-
Using a web service works fine (eventually... after jumping through UDC hoops and centrally managed data connections). So I'll adopt that approach for now.
Thanks,
David.
-
Hi Clay,
I've previously tried using SPSecurity.RunWithElevatedPrivileges, however I'm not actually interacting with SharePoint from within the form so I don't think it'll help me. If I need to have a full trust form, then so be it but I'm just looking for confirmation that this is the case.
I'm going to try the ...
-
I'm just looking to confirm that it is possible to deploy a managed-code form template to InfoPath Forms Services on MOSS 2007 and have it displayed in the browser rather than opening InfoPath when the form makes use of System.DirectoryServices.
As a test, I've followed the steps outlined within ...
-
Sorry for the delay, I'd been dragged onto another project...
I can't debug the session on this PC for some reason. I'm having a nightmare with this dev environment, I'll try to sort that out and get back to you.
-
Hi All,
I'm revisiting an old InfoPath 2003 form I did a while ago and, now that I've got .NET Framework version 2.0 installed, my OnLoad event doesn't seem to get invoked and I receive this exception when ever I change view:
System.Security.VerificationException
Operation could destabilize the runtime.
at ...
-
I have tried the solution offered here:http://forum.k2workflow.com/viewtopic.php?t=946
It sounds nuts but it seems to work.
-
Hi Deb,
I wrote some custom validation for my form in addition to the standard validation offered by the Data Validation options on each control.
The following code is contained within a button control's OnClick method:
// Submit the form.
try
{
// ...validate the form according to any custom criteria
if( true == ValidateForm() )
{ ...
-
Thanks heaps for investigating and proving I'm not alone in experiencing this issue (or insane). :)
I've got a series of enhancements to the existing project to play with so I'll try to claim a little time from them to follow on from your findings in the manifest.xsf
Will post the results when I have them.
-
I wish I was less hasty with my last reply...
I can't seem to get OnSubmitRequest() to be called under any circumstances once I've attached my form to the K2 Workflow.
Users are still prompted to submit a dirty form, and doing so bypasses the validation offered by OnSubmitRequest() or my custom code.
Hmmm. Problem not solved.
-
Thanks for your replies...
The form is K2 enabled, I'm using a button control on the main form to initiate the submission process to K2 and I've disabled the K2 task pane.
Maybe it's just me, but I've found that when submitting data to a web service using a button control on the form, the OnSubmitRequest() method isn't called. Therefore I ...