Search found 23 matches

by jmkdev
23 Feb 2013, 13:52
Forum: Developers
Topic: Create CustomerUSer in OTRS from PHP via RPC
Replies: 1
Views: 1628

Re: Create CustomerUSer in OTRS from PHP via RPC

1. u need to enable soap to use rpc.pl steps are 1. login to ur OTRS deployment 2. Go to Admin -> SysConfig 3. Select Framework and then Core::SOAP 4. put username and password Now you should be able to hit otrs/rpc.pl You can refer to https://github.com/gtudan/OTRS-Client upto some extent Sample re...
by jmkdev
11 Feb 2013, 15:56
Forum: Developers
Topic: How to deactivate a service for a customer using DEV API
Replies: 1
Views: 1174

Re: How to deactivate a service for a customer using DEV API

setting active = 0 worked . but it doesnt return any thing :(
by jmkdev
11 Feb 2013, 15:28
Forum: Developers
Topic: How to deactivate a service for a customer using DEV API
Replies: 1
Views: 1174

How to deactivate a service for a customer using DEV API

The DEV api at dev.otrs.org has a method in Kernel::System::Service called "CustomerUserServiceMemberAdd"

I used this method to add services to customer.

Now i want to deactivate the service from customer. Will it work if i set Active=0 ?
by jmkdev
11 Feb 2013, 14:28
Forum: Developers
Topic: What is UserID while creating customer
Replies: 0
Views: 879

What is UserID while creating customer

In dev API, i see some stuff for creating customer Kernel::System::CustomerUser




1. I need to know what is UserID here. Is it agents userID?
2. What are valid values for Source
by jmkdev
06 Feb 2013, 20:59
Forum: Developers
Topic: Activating a module
Replies: 1
Views: 1789

Activating a module

I created a module in Kernel/GenericInterface/Operation as Customer/CustomerAdd.pm

basically i created the folder Customer and added CustomerAdd.pm there.

How do i activate this module
by jmkdev
06 Feb 2013, 18:35
Forum: Developers
Topic: Creating Service through SOAP
Replies: 3
Views: 2029

Re: Creating Service through SOAP

This only provides creating tickets through WSDL. Not creating services
by jmkdev
01 Feb 2013, 21:32
Forum: Developers
Topic: how to create customers and services via SOAP
Replies: 4
Views: 4163

how to create customers and services via SOAP

How can i create customers and services via SOAP in OTRS It would be great if someone shares the example. I have seen the dev.otrs.org. But i still dont have idea if i should hit rpc.pl or genericInterface Basically we are building an application wher user will perform all operations from that appli...
by jmkdev
29 Jan 2013, 14:05
Forum: Developers
Topic: How to enable multiple article update
Replies: 0
Views: 822

How to enable multiple article update

How to update Multiple Articles in a ticket by using genericInterface:operation:ticket:ticketupdate
by jmkdev
28 Jan 2013, 12:25
Forum: Developers
Topic: Need To change WSDL everytime i add dynamic field
Replies: 0
Views: 824

Need To change WSDL everytime i add dynamic field

I need to change the WSDL file, every time i add dynamic field to OTRS Ticket or Article.

Cant there be a generic way which will store dynamic values as MAP with key value pairs, so that we dont need to change the WSDL everytime
by jmkdev
23 Jan 2013, 07:52
Forum: Developers
Topic: Getting Error while creating session via SOAP using Stubs
Replies: 1
Views: 1615

Re: Getting Error while creating session via SOAP using Stub

I found the solution.

I changed the sessionID type to string. It worked
by jmkdev
23 Jan 2013, 07:43
Forum: Developers
Topic: Getting Error while creating session via SOAP using Stubs
Replies: 1
Views: 1615

Getting Error while creating session via SOAP using Stubs

I used wsdl file and created Stubs/Client for Java Now while creating session, the session created has value like this "10a79e9b27e4f098a80b7cdcd19d97e655". In OTRS_SessionCreateResponse, the session is positiveInteger. But somehow i get Jan 23, 2013 11:09:18 AM org.apache.axis.client.Call...
by jmkdev
22 Jan 2013, 19:05
Forum: Developers
Topic: Stubs created using WSDL causing issues
Replies: 1
Views: 1413

Stubs created using WSDL causing issues

I used the wsdl provided on code.google.com and also the url "http://source.otrs.org/viewvc.cgi/otrs/development/webservices/GenericTicketConnector.wsdl?revision=1.19&view=co" I generated Java stubs using this WSDL through axis. Now I am facing various issues while creating session and...
by jmkdev
21 Jan 2013, 15:03
Forum: Developers
Topic: getting error while hiiting OTRS via SOAP
Replies: 0
Views: 1233

getting error while hiiting OTRS via SOAP

Getting this error in Java AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: org.xml.sax.SAXException: Bad envelope tag: definitions faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: Bad...
by jmkdev
21 Jan 2013, 14:06
Forum: General
Topic: Consuming web services
Replies: 0
Views: 593

Consuming web services

I deployed OTRS.I want to create ticket in OTRS from some other application. Now to create a ticket from some other application, do i need to write webservice or i can use the TicketConnector directly
?
by jmkdev
21 Jan 2013, 12:38
Forum: General
Topic: Where to find WSDL for various operations
Replies: 1
Views: 1314

Where to find WSDL for various operations

I have deployed OTRS. Now where can I fnd the wsdl for GenericTicketConnector I also need WSDL for Adding Customers and Services . When i try to give the wsdl url as 'http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnector' ,it gives WSDL error javax.xml.rpc.ServiceException:...
by jmkdev
18 Jan 2013, 13:17
Forum: Developers
Topic: Creating Service through SOAP
Replies: 3
Views: 2029

Creating Service through SOAP

I want to know if i can create Service in OTRS using SOAP. If so, then where can i get the WSDL file for the same.
by jmkdev
18 Jan 2013, 11:29
Forum: General
Topic: Consuming OTRS Web Service from JAVA Cleint
Replies: 3
Views: 1837

Re: Consuming OTRS Web Service from JAVA Cleint

Can we get a sample code for Java
by jmkdev
18 Jan 2013, 10:52
Forum: Developers
Topic: integrating OTRS with java application
Replies: 1
Views: 1230

integrating OTRS with java application

Has anybody worked with integrating OTRS with JAVA

I have java application which wants to communicate to OTRS. But i can just find one wsdl doc.

Can i get more information whether it supports SOAP,REST, , XML, JSON etc.

I would appreciate if i get sample Java client code to communicate
by jmkdev
18 Jan 2013, 10:12
Forum: Developers
Topic: Ways to communicate to OTRS
Replies: 0
Views: 758

Ways to communicate to OTRS

We have to integrate our application with OTRS. Our application will create tickets in OTRS.

What are different communication protocols that my application can use to communicate to OTRS
by jmkdev
17 Jan 2013, 18:43
Forum: Help
Topic: Integrating with Java
Replies: 2
Views: 1232

Re: Integrating with Java

Hi Jojo, I have deployed otrs helpdesk on my system Now lets say, i want to integrate it with my app which is written in java, then what are the ways I can connect to this OTRS. (e.g. SOAP, REST ,etc). I am less familiar on perl. So most of the changes that i can would be done through the UI interfa...
by jmkdev
17 Jan 2013, 18:36
Forum: Developers
Topic: after deploying otrs installer where can i find the wsdl
Replies: 3
Views: 2096

Re: after deploying otrs installer where can i find the wsdl

thanks jojo for your information. I also found the same info by googling. My question was : lets say i make some modifications to some objects via OTRS ui. So just like we can export YAML file for some of the operations, dont we have any option where OTRS would generate new WSDL file. The main reaso...
by jmkdev
16 Jan 2013, 08:37
Forum: Help
Topic: Integrating with Java
Replies: 2
Views: 1232

Integrating with Java

I have deployed the OTRS 3.1 with ITSM

Now I want to integrate it with Java application. So please guide me where can i find the details
by jmkdev
16 Jan 2013, 08:33
Forum: Developers
Topic: after deploying otrs installer where can i find the wsdl
Replies: 3
Views: 2096

after deploying otrs installer where can i find the wsdl

I installed OTRS Helpdesk 3.1 and ITSM I have few questions on this 1. Can this be integrated with some other system using REST protocol 2. For SOAP protocol, where can i find the WSDL file. I have found a generic file from wiki 3. Lets say i modify some objects like Tickets, etc . Will the wsdl fil...