Questions tagged [guidewire]

Guidewire Insurance Suite™ is a set of application frameworks that support main operations of insurance industry, with 3 main area: Policy Center, Claim Center and Billing Center. The aim of these frameworks is to provide a core back-end system for insurance firms, which they can customize according to their needs. The code is mostly written in Gosu, an open-source domain language based on Java.

Questions having this tag

These questions should relate to the Guidewire products, the technologies used by those products or related to problems one might encounter while trying to use or customize them.

Basic Definitions

  • Gosu : the open source programming language used in the Guidewire products
  • GScript : the former name of the Gosu language, which might come up in discussions if the poster has not updated their vocabulary
  • PCF : Page Configuration File - the XML vocabulary for controlling the layout and behavior of a screen within the Guidewire web applications
  • Rules : event handlers written in Gosu that permit the Guidewire application to take action under certain circumstances
  • likely tens of others

Important Links

162 questions
-1
votes
1 answer

How to configure email plugin and send email in guidewire

How do we configure email plugin in guidewire so that email can be sent. I have seen EmailUtil class which have method sendEmailWithBody, but its not sending email and neither giving any exception. Can somebody help me? I have tried configuring…
-1
votes
1 answer

Unable to view/run the integration-gateway tasks after importing a freshly created integration gateway app

I am trying to set up a basic integration gateway project . Below are the steps that I have followed. Create a new integration gateway app from GCC Cloned the project and imported the project as a gradle project in Intellij IDE Unable to run the…
-1
votes
1 answer

How to make policy transactions without billing center server up?

I have tried to change the gosu class from IBillinPlugin to standalone plugin and tried. But am getting error in different classe i have explained and expecting
-1
votes
1 answer

Unable to start guidewire PC server from tomcat

We have been trying to start the policycenter server from tomcat. The server is getting started even though it throws exception with the message "PolicyCenter unable to start" in the logs. Please find the log details below. Caused by:…
MishaMosi
  • 1
  • 2
-1
votes
1 answer

Can we perform Load Test of Guidewire Application using Microfocus Load Runner

We need to Test Performance Load Test for Guidewire Application(version upgrade project). Can any one tell us that Load Runner supports Performance load test of Guidewire Application or not. Pros and cons if possible...
-1
votes
2 answers

How many types of bundle in guidewire policy centre

Explain bundle types like current bundle new bundle. When we will use & how it will act on my transaction. Explain with example please.
Ashish kumar
  • 21
  • 1
  • 4
-1
votes
1 answer

How to connect Guidewire to Oracle database?

I have installed Oracle in my system and wanted to change my local database to Oracle, but making changes in the database-config.xml I am unable to get my server started and getting the following error: java.lang.RuntimeException : No Appropriate…
-2
votes
1 answer

Remote db connection in Flask python

Hi i need to read policy details from Guidewire Software to my Flask application by passing policy number to it. how can I set up it ?
Jayalakshmi
  • 53
  • 3
  • 8
-3
votes
2 answers

Finding Unique values in two ArrayLists

For Example A = [10010,10020,99948] and each element of A List possible values are atmost two values or one element or null. you can take below is B list, 10010 = []. --> expected output is 10010 10020 =[10020,10020] -> expected output is…
Py-Coder
  • 2,024
  • 1
  • 22
  • 28
-3
votes
1 answer

Guidewire Claim Center Ability to Pay Validation

Is it ok if we enable Ability To Pay validation for Reserve creation or is it only for Payment. Any performance or upgrade issues if we invoke Ability To Pay validation for Reserves in Claim Center? In our project ATP validation is done before…
-3
votes
2 answers

What is Public ID in guidewire PC integration

Why we use public ID in guidewire integration. Please explain I am new to guidewire. What is importance of Public ID with example.
Ashish kumar
  • 21
  • 1
  • 4
-4
votes
1 answer

I have this code for gosu but it doesn't compile me for the .6 version of gosu, any ideas please

uses ta.QueryUtil var output: String = "" var personIDs = new String[] {"98", "5"} output += "***** Count the bank accounts per contact \n" for (personID in personIDs) { var person = QueryUtil.findPerson(personID) if (person != null) { output…
1 2 3
10
11