object reference not set to instance of object+axis2 Programming Software Development by amitabhtripathi …().setAction("http://tempuri.org/ICheckInService/CheckIn"); _operationClient.getOptions().setExceptionToBeThrownOnSOAPFault(true); addPropertyToOperationClient(_operationClient,org.apache.axis2.description.WSDL2Constants.ATTR_WHTTP_QUERY_PARAMETER_SEPARATOR,&… generate a combochart of highcharts withjson, php and mysql Programming Web Development by sunita_3 …} }, { // Secondary yAxis title: { text: 'facility rating', style: { color: Highcharts.getOptions().colors[0] } }, labels: { //format: '{value} out of 100', style… passing command line arguements to script Programming Software Development by larryperl … strict; my($OS); $OS = $^O; # need to test @ARGV before GetOptions shifts it if (@ARGV == 0) { print "\nNo options provided…, using defaults (use -h to view options)\n"; } #GetOptions( 'h|help' => \$_help # ,'u|userdata' => \$_userdata # ,'s|systemdata… Doubt regarding Getopt Programming Software Development by anraevlus18 …" : for directories "-f" : for files doubt #1 GetOptions ('d:s' => \@dir, 'f:s' => \@fil); If i… a shot like - `./my_script.pl -d /home /etc` doubt#2 GetOptions ('d:s{,}' => \@dir, 'f:s{,}' => \@fil); This is… Re: Doubt regarding Getopt Programming Software Development by d5e5 … understand doubts number 1 and 2. You say that [iCODE]GetOptions ('d:s{,}' => \@dir, 'f:s{,}' => \@fil);[/iCODE] doesn…); #-- prints usage if there is an unknown parameter usage() if ( ! GetOptions('d:s{,}' => \@dir, 'f:s{,}' => \@fil)); if (@dir… Re: Doubt regarding Getopt Programming Software Development by d5e5 … an unknown # parameter or help option is passed usage() if ( ! GetOptions('help|?' => \$help, 'd:s' => \@dir, 'r:s' =>… Re: Perl question... Programming Software Development by scrappedcola … up on [URL="http://www.perlhowto.com/parsing_command_line_parameters_with_getopt_long"]GetOptions[/URL] (the pkg is actually Getopt::Long and the function… out of that package is GetOptions) like your assignment suggests. You shouldn't have any problems… GetOpt::Long Programming Software Development by Manny7 …, which testing arguments on command line: [CODE] use Getopt::Long; GetOptions( "verbose" => \$verbose, "get" => \$get… Re: GetOpt::Long Programming Software Development by Murtan … = "file.dat"; my $length = 24; my $verbose; $result = GetOptions ("length=i" => \$length, # numeric "file=s… Re: GetOpt::Long Programming Software Development by d5e5 … Getopt::Long qw(:config bundling); my ($verbose, $get, $v, $g); GetOptions( "verbose" => \$verbose, "get" => \$get… Using array of reference variables in perl Programming Software Development by anraevlus18 …> our $opt1,$opt2,$opt3; our @opt = (\$opt1,\$opt2,\$opt3); GetOptions('opt1=i' => \$opt1, 'opt2=i' => \$opt2, 'opt3=i… Re: Using array of reference variables in perl Programming Software Development by d5e5 …::Long; our ($opt1, $opt2, $opt3); our @opt = ( \$opt1, \$opt2, \$opt3 ); GetOptions( 'opt1=i' => \$opt1, 'opt2=i' => \$opt2, 'opt3=i… Re: Using array of reference variables in perl Programming Software Development by d5e5 … our ($opt1, $opt2); our @opt = ( \$opt1, \$opt2 ); #Defining TWO options GetOptions( 'opt1=i' => \$opt1, 'opt2=i' => \$opt2 ); foreach my… modules comparision in parameter wise in text files Programming Software Development by koduruabhinav … = @ARGV; #print "Getting the options"; # my $ok = &GetOptions("args" => sub { &PrintArgs(\@args) }, # "h… modules and instances comparision Programming Software Development by koduruabhinav …; #@args = @ARGV; #print "Getting the options"; #$ok = &GetOptions("args" => sub { &PrintArgs(\@args) }, # "h… limit characters possibility for perl script with parameter Programming Software Development by overlook … $teacher =~ s/[^A-Za-z0-9\-_].//#//g; Getopt::Long::GetOptions("teacher=s" => \$teacher); #how can i show… Re: limit characters possibility for perl script with parameter Programming Software Development by d5e5 … remove characters from $teacher, which comes from [iCODE]Getopt::Long::GetOptions("teacher=s" => \$teacher);[/iCODE] BEFORE the statement… Re: limit characters possibility for perl script with parameter Programming Software Development by overlook … remove characters from $teacher, which comes from [iCODE]Getopt::Long::GetOptions("teacher=s" => \$teacher);[/iCODE] BEFORE the statement… CSS broken after AJAX call Programming Web Development by masocha …('#section').remove(); }); var url = 'index2.php?option=com_custom&task=getOptions'; var section = jQuery(this).val(); url = url+'&section='+section… Perl question... Programming Software Development by chris19750 … me back the result as Kumar. Try out usage of GetOptions in Perl script. How can I manage duplicate data if… Re: Perl question... Programming Software Development by maba001 … me back the result as Kumar. Try out usage of GetOptions in Perl script. How can I manage duplicate data if… Modify SNMP Script to Calculate Free Disk Spce Programming Software Development by magikman …' => '1', 'CRITICAL' => '2', 'UNKNOWN' => '3' ); my $options = GetOptions ("h|help" => \$opt_h, "H|hostname=s… Perl Division Kills Compilation Programming Software Development by magikman …' => '1', 'CRITICAL' => '2', 'UNKNOWN' => '3' ); my $options = GetOptions ("h|help" => \$opt_h, "H|hostname=s… Re: checkboxes Programming Web Development by diafol …fact, you could do something like this... function getOptions($chosenText, $options, $chosen, $compareValues=true)…$fills; } function getSelectedArray($options, $chosen, $compareValues=true) { return getOptions('selected ', $options, $chosen, $compareValues); } function getCheckedArray($options, $chosen… Re: Binding two dropdown list dynamically Programming Web Development by wesley.cheng …B 2', 'B 3'], ['C 1', 'C 2']]; function getOptions(options) { var html = ''; for (index in options) {….selectedIndex; document.getElementById('two').innerHTML = getOptions(two[index]); }); document.getElementById('one').innerHTML = getOptions(one); document.getElementById('two').innerHTML… Re: dynamically populating drop down values Programming Web Development by essential … demonstrational purposes only. */ // Declaring variables var ajax, update, xmlData, getOptions; var obj, select, option; // This is a simple prototype that…;Msxml2.XMLHTTP"); } } if ( xmlData !== null ) { xmlData.onreadystatechange = getOptions; xmlData.open("GET", url, true); xmlData.send( null… Re: insert csv file into mysql through php Programming Web Development by mahe4us …mysql_list_dbs($connection); $database_index = 0; $js_block = "function getOptions(myID) { var e_table = document.form1.table; var optionCount =…name=\"database\" onChange=\"getOptions(this.selectedIndex)\"> <… Re: PHP Dynamic Forms Programming Web Development by diafol … id="myselect" name="myselect" onChange="getOptions();return false;"> <option value = "4"… custom function written in your myAjax.js file: [CODE]function getOptions(){ var sVal = $F('myselect'); var sContainer = 'myselect2'; var pars = "… Re: AJAX dropdown + PHP + MySQL Programming Web Development by _developit … PHP file (in the example below, it's named "getoptions.php"), and it will send the selected value as… PHP as a parameter. // ex: var request = HttpRequest.Create("getoptions.php?selected="+selected.value,{}, function(){ // The request's onComplete… Re: DirectX in Visual C++: Help moving a mesh starting from BasicHLSL Tutorial Programming Software Development by Clawsy …() & D3DFVF_NORMAL ) ) { ID3DXMesh* pTempMesh; V( pMesh->CloneMeshFVF( pMesh->GetOptions(), pMesh->GetFVF() | D3DFVF_NORMAL, pd3dDevice, &pTempMesh ) ); V( D3DXComputeNormals( pTempMesh…