Search found 5 matches

by jsw
23 Jun 2015, 19:00
Forum: Developers
Topic: Run .Net Web Service from OTRS
Replies: 6
Views: 24297

Re: Run .Net Web Service from OTRS

Thanks for all.
Everything works properly.
Your answer was brilliant.
by jsw
17 Jun 2015, 15:37
Forum: Developers
Topic: Run .Net Web Service from OTRS
Replies: 6
Views: 24297

Re: Run .Net Web Service from OTRS

In the project I've got
using System.Xml.Serialization;
so
XmlElement
means System.Xml.Serialization.XmlElement
by jsw
17 Jun 2015, 14:13
Forum: Developers
Topic: Run .Net Web Service from OTRS
Replies: 6
Views: 24297

Re: Run .Net Web Service from OTRS

I try to add empty namespace into web service class definition public class OTRS : System.Web.Services.WebService { [XmlElement(Namespace="")] ..... But when I call web metod with SOAP biody like this: <s11:Body> <ns1:newOTRSTest xmlns:ns1='http://tempuri.org/'> <TicketID>3</TicketID> </ns...
by jsw
16 Jun 2015, 00:12
Forum: Developers
Topic: Run .Net Web Service from OTRS
Replies: 6
Views: 24297

Re: Run .Net Web Service from OTRS

Ofcourse .Net Web Method couldn't found the parameter value due namespace.
TicketID is null, so the function will not work property at all.
Has anybody any idea for solution?
by jsw
15 Jun 2015, 19:32
Forum: Developers
Topic: Run .Net Web Service from OTRS
Replies: 6
Views: 24297

Run .Net Web Service from OTRS

I try to call VS .Net Web Service on OTRS triger ( e.g. TicketCreate, ArticleCreate ). 1. I've got web function: string newOTRSTest(string TicketID) 2. I've configured Invoker ( TestSimple.pm) for events. 3. In the invoker I've added a key mapping TicketID=>TicketID But when the invoker it's generat...