Browse by Tags
All Tags » Web Services » BlackPearl (RSS)
-
I am trying to automate the submission of a bunch of InfoPath forms to kick off their respective workflow processes. I figured I'd be able to send the InfoPath xml to the 'SubmitInfoPathData' web service (provided by blackpearl) to do this. However, when I send the InfoPath xml to the service, I always get the error 'The data submitted ...
-
Hello,
is it possible to acces Environments fields values from code? (the items you can see in K2 Object browser)
For example if i want to store my WebService url in the Workflow Web Service(s) fields and assign its value to the Url property of the web service proxy class in the code..
Thank you in advance
-
In a server code event you call the web service just like you would from any .NET code. Declare an instance of the service, set it's credentials and url (if needed), then invoke methods on it.
InvoiceService.Service1 Serv = new InvoiceService.Service1(); Serv.Credentials = System.Net.CredentialCache.DefaultCredentials; //if ...
-
Hello,
I have added a web service URL to the Workflow web service(s). How can i call the web service from code (default server event)?
Actually i was looking for some documentation on blackpearl but could not find any.. There are some labs on the portal to download, but there is nothing about coding..
could you please give me some ...
-
Check out the blackmarket section on this site. One of the examples is a service object that can be used to invoke web services from a SmartObject. I've used it and it works great. The only caveat is it only handles simple data types.
|
|