Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sending Wrong xml Request Namespace Format #53

Open
philecom opened this issue Nov 25, 2016 · 1 comment
Open

Sending Wrong xml Request Namespace Format #53

philecom opened this issue Nov 25, 2016 · 1 comment

Comments

@philecom
Copy link

philecom commented Nov 25, 2016

Angularjs SOAP is supppose to send the request xml in this format

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://services.webclient.transflow.dialect.com.gh"> <soapenv:Header/> <soapenv:Body> <ser:getTrans> <ser:dlimit>10</ser:dlimit> <ser:username>xxxx</ser:username> <ser:password>xxxx</ser:password> </ser:getTrans> </soapenv:Body>
But it is rather sending it in this format

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
	<soap:Body>
		<getTrans xmlns="http://services.webclient.transflow.dialect.com.gh">
		<username>xxxx</username>
		<password>xxxx</password>
		<dlimit>10</dlimit>
		</getTrans>
	</soap:Body>
</soap:Envelope>

I wil be glad if anyone can help me resolve this thank you..

@philecom philecom changed the title Sending Wrong Request Format Sending Wrong xml Request Namespace Format Nov 25, 2016
@JanPretzel
Copy link

I forked one of the other forks and added just that feature. You might want to take a look at it: https://github.com/JanPretzel/angular-soap

Hope this helps!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants