Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I haven't read it in detail but from the second link with the documention my approach would be:</p> <blockquote> <p>-Decide which Real Time Posting features to implement by reviewing the "Development Considerations" section of this guide.</p> </blockquote> <p>Read the section and decide what are you going to use</p> <blockquote> <pre><code>Create the XML job posting by using the instructions in this guide and samples located in Monster's webservices toolkit </code></pre> </blockquote> <p>It seems you'll have to create a xml. First thing comes to mind is using a XmlDocument object and adding Nodes to it. But you may want to check other answers as there's different ways to do this. Create the xml in the format specified by Monster, you can check the samples they give to know how to do it</p> <blockquote> <pre><code>Validate XML using the toolkit. </code></pre> <p>(<a href="http://integrations.monster.com/Toolkit" rel="nofollow">http://integrations.monster.com/Toolkit</a>)</p> </blockquote> <p>Go to the toolkit ulr and input the xml you are generating to check is correct</p> <blockquote> <pre><code>Test posting a job from your application (Applicant Tracking System, etc). </code></pre> </blockquote> <p>You do this calling methods from the Web service(e.g.: UpdateJobs) with your generated xml</p> <blockquote> <p>Review the job posting response, make the necessary changes and retest.</p> </blockquote> <p>Check the testing section at the end. It says you can post into the demo board for you test.</p> <blockquote> <pre><code>Once the test cycle is complete, transition to production using the steps outlined in the "Deployment" section of this guide. </code></pre> </blockquote> <p>Once you are happy with the testing in UAT read this to know how to release to production.</p> <p>--</p> <p>EDIT to add more info after question was clarified</p> <p>I understand the problem now. I added a Web service reference to <a href="https://gateway.monster.com:8443/bgwBroker" rel="nofollow">https://gateway.monster.com:8443/bgwBroker</a> and in the object that returns I can see a lot of data structures. However I was able to find a <code>BusinessGatewayInterface</code> that has the needed operations. Check the code below. I am sure it is not what you need but it may give you an idea of what to do. Then it will be an issue of exploring the Web service reference until you find what you need.</p> <p>Also it seems it won't be needed to parse the xml directly but instead there are typed data structures that can be populated. Sorry I didn't realized that the first I looked into it </p> <pre><code> Job job = new Job(); UpdateJobRequest updateJobRequest = new UpdateJobRequest(); //populate job info here updateJobRequest.Job = job; ServiceReference1.BusinessGatewayInterface gateway = new BusinessGatewayInterfaceClient(); gateway.UpdateJob(updateJobRequest); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload