calling a soap service on a https url

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

calling a soap service on a https url

Stefaan Denolf

Hi,

 

I have implemented a soap client (using vw 7.7.0).

This soap client works in my test environment using an http url.

My customer needs to use this soap client using a https url. This does not work.

 

Has anyone an idea in how to solve this.

 

Thanks in advance

STefaan

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: calling a soap service on a https url

Kogan, Tamara
Hi Stefaan,

I am wondering if you could provide more details.
What kind of client are you using? WsdlClient or Opentalk client?

Tamara Kogan
Smalltalk development,
Cincom Systems
 

> -----Original Message-----
> From: [hidden email]
> [mailto:[hidden email]] On Behalf Of Stefaan Denolf
> Sent: Friday, November 19, 2010 10:57 AM
> To: [hidden email]
> Subject: [vwnc] calling a soap service on a https url
>
> Hi,
>
>  
>
> I have implemented a soap client (using vw 7.7.0).
>
> This soap client works in my test environment using an http url.
>
> My customer needs to use this soap client using a https url.
> This does not work.
>
>  
>
> Has anyone an idea in how to solve this.
>
>  
>
> Thanks in advance
>
> STefaan
>
>  
>
>

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: calling a soap service on a https url

T. Edwin King
In reply to this post by Stefaan Denolf
> I have implemented a soap client (using vw 7.7.0).
> This soap client works in my test environment using an http url.
> My customer needs to use this soap client using a https url. This does not work.

You'll need to save a copy of the SSL certificate and then import it
into your image.

Something like:

    | registry cert  |
    registry := Security.X509.X509Registry default.
    cert := Security.X509.Certificate fromFile: 'SiteSsl.cer'.
    registry addTrusted: cert.


HTH,

Todd Edwin King
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: calling a soap service on a https url

Stefaan Denolf
In reply to this post by Kogan, Tamara
Hi,

I am currently using WsdlClient.

As a standard I use WSOpentalkClient for soapclients.
I was suggested to me that I had a better chance for https support if I would use WsdlClient.
So I changed the initial implementation.

Mvg
Stefaan

-----Original Message-----
From: Kogan, Tamara [mailto:[hidden email]]
Sent: vrijdag 19 november 2010 17:06
To: Stefaan Denolf; [hidden email]
Subject: RE: [vwnc] calling a soap service on a https url

Hi Stefaan,

I am wondering if you could provide more details.
What kind of client are you using? WsdlClient or Opentalk client?

Tamara Kogan
Smalltalk development,
Cincom Systems
 

> -----Original Message-----
> From: [hidden email]
> [mailto:[hidden email]] On Behalf Of Stefaan Denolf
> Sent: Friday, November 19, 2010 10:57 AM
> To: [hidden email]
> Subject: [vwnc] calling a soap service on a https url
>
> Hi,
>
>  
>
> I have implemented a soap client (using vw 7.7.0).
>
> This soap client works in my test environment using an http url.
>
> My customer needs to use this soap client using a https url.
> This does not work.
>
>  
>
> Has anyone an idea in how to solve this.
>
>  
>
> Thanks in advance
>
> STefaan
>
>  
>
>

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc