This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.
Any suggestion ?
- Fazal
________________________________
From: Fazal M Feroze <fazalmf@yahoo.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Tuesday, June 21, 2011 9:41 AM
Subject: [MAXIMO List] WSDL Maximo (webServices)
Any suggestion how to query Maximo WSDL connection using Java or perl
Basically I am looking for creating /querying SR using WSDL services.
Fyi I already created the webservice MXSR in maximo
http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
Thanks in advance
Regards
Fazal
Fazal,
Which version of Maximo is this ?
Just any basic web service consumer code can call this webservice and pass
in the service parameter to query Maximo.
If you need any exit configuration customization the derivative should be
extended off psdi.iface.router.WSExit interface extensions that implement -
getServiceName(). Basically all this is exchange is a qualified w3c dom
document.
thanks
Medury.
On Wed, Jun 22, 2011 at 9:43 AM, Fazal M Feroze <fazalmf@yahoo.com> wrote:
> **
>
>
> Any suggestion ?
>
> - Fazal
>
> ________________________________
> From: Fazal M Feroze <fazalmf@yahoo.com>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Tuesday, June 21, 2011 9:41 AM
> Subject: [MAXIMO List] WSDL Maximo (webServices)
>
>
> Any suggestion how to query Maximo WSDL connection using Java or perl
> Basically I am looking for creating /querying SR using WSDL services.
>
> Fyi I already created the webservice MXSR in maximo
> http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
>
> Thanks in advance
>
> Regards
>
> Fazal
>
>
>
>
>
>
>
--
*Thanks & Regards
S.M.M
D.734-975-1313 Extn: 117
M.562-458-6909
*
This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original.
Thanks Madhu
Its Maximo version 7.2 , actually I am trying to invoke maxmio WSDL SR methods (i.e MXSR) from PERL SOAP call, but i couldn't find the right example.
- Fazal
________________________________
From: Madhu Medury <madhu@openboxsolutions.com>
To: MAXIMO@yahoogroups.com
Sent: Wednesday, June 29, 2011 9:31 AM
Subject: Re: [MAXIMO List] WSDL Maximo (webServices)?
Fazal,
Which version of Maximo is this ?
Just any basic web service consumer code can call this webservice and pass
in the service parameter to query Maximo.
If you need any exit configuration customization the derivative should be
extended off psdi.iface.router.WSExit interface extensions that implement -
getServiceName(). Basically all this is exchange is a qualified w3c dom
document.
thanks
Medury.
On Wed, Jun 22, 2011 at 9:43 AM, Fazal M Feroze <fazalmf@yahoo.com> wrote:
> **
>
>
> Any suggestion ?
>
> - Fazal
>
> ________________________________
> From: Fazal M Feroze <fazalmf@yahoo.com>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Tuesday, June 21, 2011 9:41 AM
> Subject: [MAXIMO List] WSDL Maximo (webServices)
>
>
> Any suggestion how to query Maximo WSDL connection using Java or perl
> Basically I am looking for creating /querying SR using WSDL services.
>
> Fyi I already created the webservice MXSR in maximo
> http://www.emrahsogutoglu.com/2010/08/creating-web-service-in-maximo.html
>
> Thanks in advance
>
> Regards
>
> Fazal
>
>
>
>
>
>
>
--
*Thanks & Regards
S.M.M
D.734-975-1313 Extn: 117
M.562-458-6909
*
This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original.
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join : MAXIMO-subscribe@yahoogroups.com
Leave : MAXIMO-unsubscribe@yahoogroups.com
Cry : MAXIMO-owner@yahoogroups.com
Group : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
Hi ALL,
I am looking for simple perl program to communicate to Maximo server (V7x) and query the ServiceRequest thru WSDL. Somehow i able to connect the Maximo server, but couldn't invoke any MXSR methods.. Please find my code below... not sure what I am doing wrong , any little help is appreciable
Fyi- the XML code is working perfectly in SoapUI and Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR
------------- Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;
my $g_hostname = 'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';
sub SOAP::Transport::HTTP::Client::get_basic_credentials {
return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
<soapenv:Header/>
<soapenv:Body>
<max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
<max:MXSRQuery orderby="" operandMode="AND">
<!--Optional:-->
<max:WHERE/>
<!--Optional:-->
<max:SR>
<!--0 to 2 repetitions:-->
<max:TICKETID operator="=">"1001"</max:TICKETID>
<max:CLASS> SR </max:CLASS>
</max:SR>
</max:MXSRQuery>
</max:QueryMXSR>
</soapenv:Body>
</soapenv:Envelope>';
$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
-------------------- END ----------------
Hi ALL,
I am looking for simple perl program to communicate to Maximo server (V7x) and query the ServiceRequest thru WSDL. Somehow i able to connect the Maximo server, but couldn't invoke any MXSR methods.. Please find my code below... not sure what I am doing wrong , any little help is appreciable
Fyi- the XML code is working perfectly in SoapUI and Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR
------------- Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;
my $g_hostname = 'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';
sub SOAP::Transport::HTTP::Client::get_basic_credentials {
return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
<soapenv:Header/>
<soapenv:Body>
<max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
<max:MXSRQuery orderby="" operandMode="AND">
<!--Optional:-->
<max:WHERE/>
<!--Optional:-->
<max:SR>
<!--0 to 2 repetitions:-->
<max:TICKETID operator="=">"1001"</max:TICKETID>
<max:CLASS> SR </max:CLASS>
</max:SR>
</max:MXSRQuery>
</max:QueryMXSR>
</soapenv:Body>
</soapenv:Envelope>';
$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
-------------------- END ----------------
Hi All,
Any one know the function of Recent Lead Time Weight in % on Storeroom application?
I read the help but still not understand. Please help....
Regards,
Warm Regards,
Juniko
-----Original Message-----
From: Fazal M Feroze <fazalmf@yahoo.com>
Sender: MAXIMO@yahoogroups.com
Date: Mon, 11 Jul 2011 11:58:49
To: MAXIMO@yahoogroups.com<MAXIMO@yahoogroups.com>
Reply-To: MAXIMO@yahoogroups.com
Subject: [MAXIMO List] Maximo Perl help - urgent
Hi ALL,
I am looking for simple perl program to communicate to Maximo server (V7x) and query the ServiceRequest thru WSDL. Somehow i able to connect the Maximo server, but couldn't invoke any MXSR methods.. Please find my code below... not sure what I am doing wrong , any little help is appreciable
Fyi- the XML code is working perfectly in SoapUI and Eclipse
-- List of available method(s): UpdateMXSR CreateMXSR DeleteMXSR QueryMXSR SyncMXSR
------------- Perl Code------------
#!/usr/bin/perl
use strict;
use SOAP::Lite;
my $g_hostname = 'http://tsrmmaxdb71.fazal.local/meaweb/wsdl/MXSR.wsdl';
my $UserName = 'maxadmin';
my $Password = 'maxadmin';
sub SOAP::Transport::HTTP::Client::get_basic_credentials {
return $UserName => $Password;
}
my $service = SOAP::Lite->service($g_hostname);
my $XML = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
<soapenv:Header/>
<soapenv:Body>
<max:QueryMXSR creationDateTime="" baseLanguage="" transLanguage="" messageID="" maximoVersion="" uniqueResult="0" maxItems="0" rsStart="0">
<max:MXSRQuery orderby="" operandMode="AND">
<!--Optional:-->
<max:WHERE/>
<!--Optional:-->
<max:SR>
<!--0 to 2 repetitions:-->
<max:TICKETID operator="=">"1001"</max:TICKETID>
<max:CLASS> SR </max:CLASS>
</max:SR>
</max:MXSRQuery>
</max:QueryMXSR>
</soapenv:Body>
</soapenv:Envelope>';
$service ->outputxml('true');
my $result = $service->QueryMXSR($XML);
print $result
-------------------- END ----------------