|
POST
|
Hi There, What is the propery name / value that we need to set in JTX_PROPERTIES to use a custom Notifier? Thanks, Fraser
... View more
05-02-2012
08:00 PM
|
0
|
1
|
1614
|
|
POST
|
Hi there, I currently can't rely through our local smtp server for notifications - has anyone got a sample of writing a custom IJTXNotifier that authenticates as the current user? Or another method for notifications? Thanks, Fraser
... View more
05-02-2012
05:48 PM
|
0
|
1
|
1813
|
|
POST
|
OK so I've written a step to populate custom props based on a passed through string, similar to what the create child advanced step does with child properties. Again our good friends IJTXAuxRecordContainer, ExtendedPropertyIdentifier and IJTXAuxRecord were invloved.
... View more
04-30-2012
02:14 PM
|
0
|
0
|
674
|
|
POST
|
Hi There, We have some 1:m related properties that we want to update from running a step to a) hide the props from the workflow users and b) make it more automated. I had thought of using the JTXSteps.ExecuteSQL for this but haven't found any examples on how to use this, or would it be better to create a custom step and do it through the object model? They are mostly dates and who has the job when the step is executed. Has any one got an example of implementing this? Thanks, F
... View more
04-25-2012
07:57 PM
|
0
|
1
|
3349
|
|
POST
|
Found it: You have to get to the JTXAuxRecord. Code snippet example IJTXAuxProperties someProps = pParentJob as IJTXAuxProperties; string[] sExtPropTableNames = someProps.ContainerNames; for(int i = 0;i < sExtPropTableNames.Length;i++) { IJTXAuxRecordContainer ipExtendedPropTable = someProps.GetRecordContainer(sExtPropTableNames); Console.WriteLine(ipExtendedPropTable.TableAlias); IJTXAuxRecordSet ipExtendedPropertyRecords = ipExtendedPropTable.GetRecords(); for(int j = 0;j < ipExtendedPropertyRecords.Count;j++) { // Get each record for this job from the extended property table IJTXAuxRecord2 ipExtendedPropRecord = ipExtendedPropertyRecords.get_Item(j) as IJTXAuxRecord2; for(int k = 0;k < ipExtendedPropRecord.Count;k++) { // Cycles through each of the extended property fields for that record // Only fields that have been marked as visible for the job type will be returned Console.WriteLine(" Field alias: " + ipExtendedPropRecord.get_PropAlias(k)); Console.WriteLine(" Field value: " + ipExtendedPropRecord.get_Data(k).ToString()); } } } I stored the custom props table that had the extended property, and the name of the property and placed it on the create child args dialog. Then in the execute step it looks it up and pulls out how many jobs it needs to create. F
... View more
04-23-2012
06:46 PM
|
0
|
0
|
641
|
|
POST
|
Hi All, I want to change the create child job step to create the amount of jobs as stored against the parent job. Has anyone got a code snippet for doing this? Or just for accessing the parent custom properties? Thanks, Fraser
... View more
04-22-2012
08:14 PM
|
0
|
1
|
1578
|
|
POST
|
Hi There, 3 tier installation ArcGIS 10 Sp4 box 1: Web / SOM / AGS REST box 2: SOC box 3: DB I have an installation of AGS where the web tier and application tier have been split onto 2 machines - the web tier has client apps, the AGS SOM and REST endpoints, while the application tier has the SOC component. Following this the WMX server extension has been installed as follows: box 1 had the SOM component and sample viewer installed, box 2 had the SOC component installed. After this installation we saw that the wmrest REST endpoints for WMX have been installed on the SOC box, which was a little unexpected. This is going to cause issues, as this is a multiple machine deployment (multi SOMs and SOCs) and we need to use the web client. Is this the expected behaviour? Can we move the wmrest location? Cheers, Fraser
... View more
04-17-2012
02:30 PM
|
0
|
2
|
3628
|
|
POST
|
Hi There, Has anyone got a working proxy page for using with windows authentication. If we don't use a proxy page then the server will challenge on the first service hit and pop up a credentials page. I have played around today with a limited degree of success but can't seem to get it to seamlessly connect (I have the proxy in an application using IIS windows integration - it grabs the httpcurrentcontext user correctly). By adding the server to the browser local intranet sites stops the challenge but I would rather funnel through a proxy. Anyone done something like this? Thanks, Fraser
... View more
09-18-2011
10:16 PM
|
0
|
1
|
2986
|
|
POST
|
Hi, Actually forget this - I created an installer as per desktop dev and deployed that to client - custom step executes as expected. Thanks, Fraser
... View more
08-07-2011
03:50 PM
|
0
|
0
|
1195
|
|
POST
|
Hi, Has anyone got a link or instructions on deploying and registering a WFM custom dll to other clients and AGS socs? Is it just a regasm Test1.dll /codebase or a regsvr32? Cheers, Fraser
... View more
08-07-2011
03:07 PM
|
0
|
3
|
3020
|
|
POST
|
Hi Tope, That sample will do nicely - thanks. I'm going to extend it to take multiple extended properties but that looks fairly trivial to do. Thanks for the reply and suggestion - much appreciated. Fraser
... View more
08-07-2011
01:43 PM
|
0
|
0
|
1154
|
|
POST
|
Hi Tope, Thanks for that - I had seen that sample and have looked at the code - I'll take a closer look and see if it will meet my requirements. So does this mean that the overall parent job will need a workflow which creates the required children jobs by calling this custom step? Thanks, Fraser
... View more
08-04-2011
01:43 PM
|
0
|
0
|
1154
|
|
POST
|
Hi There, I'm using WFM 10 SP2 and have the following questions based on the fact that we want to do as much as possible through configuration rather than customisation. We have a massive create job, design and build workflow which is one encompassing workflow with several sub processes within it. 1) I can't see how you can embed a workflow within another, so we are using child jobs to simulate that - is the correct way of doing this? 2) when creating a child job, I need to set certain properties based on values from the parent job - I can't see an easy way of doing that - I have found a execute SQL custom step - but I can't exec SQL against the prop tables as I need to be able to generate an OBJECTID. What's the best way to approach this? Thanks, Fraser
... View more
08-03-2011
08:02 PM
|
0
|
4
|
3413
|
|
POST
|
Hi All, This appears to happen if you haven't installed ArcGIS to the default location - that's my experience anyway. Anyone come up with a work around? Thanks, F
... View more
07-07-2011
07:28 PM
|
0
|
0
|
4716
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-05-2026 01:57 PM | |
| 1 | 05-11-2026 08:21 PM | |
| 2 | 07-11-2024 05:14 PM | |
| 3 | 04-03-2024 01:48 PM | |
| 1 | 08-24-2014 10:51 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-09-2026
03:10 PM
|